diff --git a/.github/workflows/backend-dev.yml b/.github/workflows/backend-dev.yml deleted file mode 100644 index bec561e00..000000000 --- a/.github/workflows/backend-dev.yml +++ /dev/null @@ -1,72 +0,0 @@ -name: backend-push - -on: - push: - branches: [ "be-dev" ] - -jobs: - build: - runs-on: ubuntu-latest - - defaults: - run: - shell: bash - working-directory: ./server - - permissions: - contents: read - - steps: - - name: CheckOut - uses: actions/checkout@v4 - with: - token: ${{secrets.CONFIG_SUBMODULE_TOKEN}} - submodules: true - - - name: Set up JDK 17 - uses: actions/setup-java@v4 - with: - java-version: '17' - distribution: 'temurin' - - - name: Setup Gradle - uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0 - - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - - name: Test with Gradle Wrapper - run: ./gradlew clean build - - - name: Login to Docker Hub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - - - name: Set up Docker BuildX - uses: docker/setup-buildx-action@v3 - - - name: Build and push - run: | - docker buildx build --platform linux/arm64 -t \ - ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_IMAGE_BE_DEV }} --push . - - deploy: - needs: build - runs-on: [ self-hosted, backend-dev ] - steps: - - name: Docker remove - run: | - CONTAINER_IDS=$(sudo docker ps -qa) - if [ -n "$CONTAINER_IDS" ]; then - sudo docker rm -f $CONTAINER_IDS - else - echo "No running containers found." - fi - - - name: Docker Image pull - run: sudo docker pull ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_IMAGE_BE_DEV }} - - - name: Docker run - run: sudo docker run -d -p 8080:8080 -e SPRING_PROFILES_ACTIVE=dev -v log-volume:/app/logs --name haengdong-backend ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_IMAGE_BE_DEV }} diff --git a/.github/workflows/backend-prod.yml b/.github/workflows/backend-prod.yml deleted file mode 100644 index 85832817d..000000000 --- a/.github/workflows/backend-prod.yml +++ /dev/null @@ -1,78 +0,0 @@ -name: backend-push - -on: - push: - branches: [ "main" ] - paths: - - 'server/**' - - '.github/workflows/**' - -jobs: - build: - runs-on: ubuntu-latest - - defaults: - run: - shell: bash - working-directory: ./server - - permissions: - contents: read - - steps: - - name: CheckOut - uses: actions/checkout@v4 - with: - token: ${{secrets.CONFIG_SUBMODULE_TOKEN}} - submodules: true - - - name: Set up JDK 17 - uses: actions/setup-java@v4 - with: - java-version: '17' - distribution: 'temurin' - - - name: Setup Gradle - uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0 - - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - - name: Test with Gradle Wrapper - run: ./gradlew clean build - - - name: Login to Docker Hub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - - - name: Set up Docker BuildX - uses: docker/setup-buildx-action@v3 - - - name: Build and push - run: | - docker buildx build --platform linux/arm64 -t \ - ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_IMAGE_BE_PROD }} --push . - - deploy: - needs: build - strategy: - matrix: - runner: [ prod-1, prod-2 ] - runs-on: [ self-hosted, '${{ matrix.runner }}' ] - steps: - - name: Docker remove - run: | - CONTAINER_IDS=$(sudo docker ps -qa) - if [ -n "$CONTAINER_IDS" ]; then - sudo docker rm -f $CONTAINER_IDS - else - echo "No running containers found." - fi - - - name: Docker Image pull - run: sudo docker pull ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_IMAGE_BE_PROD }} - - - name: Docker run - run: sudo docker run -d -p 80:8080 -e SPRING_PROFILES_ACTIVE=prod -v log-volume:/app/logs --name haengdong-backend ${{ secrets.DOCKER_USERNAME }}/${{ secrets.DOCKER_IMAGE_BE_PROD }} diff --git a/.github/workflows/backend-pull-request.yml b/.github/workflows/backend-pull-request.yml deleted file mode 100644 index df008fd97..000000000 --- a/.github/workflows/backend-pull-request.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: backend-pull-request - -on: - pull_request: - branches: [ "main", "be-dev" ] - -jobs: - build: - runs-on: [ ubuntu-latest ] - - defaults: - run: - working-directory: ./server - - steps: - - name: CheckOut - uses: actions/checkout@v4 - - - name: Set up JDK 17 - uses: actions/setup-java@v4 - with: - java-version: '17' - distribution: 'temurin' - - - name: Setup Gradle - uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0 - - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - - name: Test with Gradle Wrapper - run: ./gradlew clean build - - - name: publish unit test results - uses: EnricoMi/publish-unit-test-result-action@v2 - if: always() - with: - files: server/build/test-results/test/TEST-*.xml - - - name: add comments to a pull request - uses: mikepenz/action-junit-report@v3 - if: always() - with: - report_paths: server/build/test-results/test/TEST-*.xml diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 358a2b7b2..000000000 --- a/.gitignore +++ /dev/null @@ -1,245 +0,0 @@ -# Created by https://www.toptal.com/developers/gitignore/api/java,intellij,gradle,macos,windows,linux -# Edit at https://www.toptal.com/developers/gitignore?templates=java,intellij,gradle,macos,windows,linux - -### Intellij ### -# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider -# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 - -# User-specific stuff -.idea/** -.idea/**/workspace.xml -.idea/**/tasks.xml -.idea/**/usage.statistics.xml -.idea/**/dictionaries -.idea/**/shelf - -# AWS User-specific -.idea/**/aws.xml - -# Generated files -.idea/**/contentModel.xml - -# Sensitive or high-churn files -.idea/**/dataSources/ -.idea/**/dataSources.ids -.idea/**/dataSources.local.xml -.idea/**/sqlDataSources.xml -.idea/**/dynamic.xml -.idea/**/uiDesigner.xml -.idea/**/dbnavigator.xml - -# Gradle -.idea/**/gradle.xml -.idea/**/libraries - -# Gradle and Maven with auto-import -# When using Gradle or Maven with auto-import, you should exclude module files, -# since they will be recreated, and may cause churn. Uncomment if using -# auto-import. -# .idea/artifacts -# .idea/compiler.xml -# .idea/jarRepositories.xml -# .idea/modules.xml -# .idea/*.iml -# .idea/modules -# *.iml -# *.ipr - -# CMake -cmake-build-*/ - -# Mongo Explorer plugin -.idea/**/mongoSettings.xml - -# File-based project format -*.iws - -# IntelliJ -out/ - -# mpeltonen/sbt-idea plugin -.idea_modules/ - -# JIRA plugin -atlassian-ide-plugin.xml - -# Cursive Clojure plugin -.idea/replstate.xml - -# SonarLint plugin -.idea/sonarlint/ - -# Crashlytics plugin (for Android Studio and IntelliJ) -com_crashlytics_export_strings.xml -crashlytics.properties -crashlytics-build.properties -fabric.properties - -# Editor-based Rest Client -.idea/httpRequests - -# Android studio 3.1+ serialized cache file -.idea/caches/build_file_checksums.ser - -### Intellij Patch ### -# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 - -# *.iml -# modules.xml -# .idea/misc.xml -# *.ipr - -# Sonarlint plugin -# https://plugins.jetbrains.com/plugin/7973-sonarlint -.idea/**/sonarlint/ - -# SonarQube Plugin -# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin -.idea/**/sonarIssues.xml - -# Markdown Navigator plugin -# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced -.idea/**/markdown-navigator.xml -.idea/**/markdown-navigator-enh.xml -.idea/**/markdown-navigator/ - -# Cache file creation bug -# See https://youtrack.jetbrains.com/issue/JBR-2257 -.idea/$CACHE_FILE$ - -# CodeStream plugin -# https://plugins.jetbrains.com/plugin/12206-codestream -.idea/codestream.xml - -# Azure Toolkit for IntelliJ plugin -# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij -.idea/**/azureSettings.xml - -### Java ### -# Compiled class file -*.class - -# Log file -*.log - -# BlueJ files -*.ctxt - -# Mobile Tools for Java (J2ME) -.mtj.tmp/ - -# Package Files # -*.jar -*.war -*.nar -*.ear -*.zip -*.tar.gz -*.rar - -# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml -hs_err_pid* -replay_pid* - -### Linux ### -*~ - -# temporary files which can be created if a process still has a handle open of a deleted file -.fuse_hidden* - -# KDE directory preferences -.directory - -# Linux trash folder which might appear on any partition or disk -.Trash-* - -# .nfs files are created when an open file is removed but is still being accessed -.nfs* - -### macOS ### -# General -.DS_Store -.AppleDouble -.LSOverride - -# Icon must end with two \r -Icon - - -# Thumbnails -._* - -# Files that might appear in the root of a volume -.DocumentRevisions-V100 -.fseventsd -.Spotlight-V100 -.TemporaryItems -.Trashes -.VolumeIcon.icns -.com.apple.timemachine.donotpresent - -# Directories potentially created on remote AFP share -.AppleDB -.AppleDesktop -Network Trash Folder -Temporary Items -.apdisk - -### macOS Patch ### -# iCloud generated files -*.icloud - -### Windows ### -# Windows thumbnail cache files -Thumbs.db -Thumbs.db:encryptable -ehthumbs.db -ehthumbs_vista.db - -# Dump file -*.stackdump - -# Folder config file -[Dd]esktop.ini - -# Recycle Bin used on file shares -$RECYCLE.BIN/ - -# Windows Installer files -*.cab -*.msi -*.msix -*.msm -*.msp - -# Windows shortcuts -*.lnk - -### Gradle ### -server/.gradle -**/build/ -!src/**/build/ - -# Ignore Gradle GUI config -gradle-app.setting - -# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) -!gradle-wrapper.jar - -# Avoid ignore Gradle wrappper properties -!gradle-wrapper.properties - -# Cache of project -.gradletasknamecache - -# Eclipse Gradle plugin generated files -# Eclipse Core -.project -# JDT-specific (Eclipse Java Development Tools) -.classpath - -### Gradle Patch ### -# Java heap dump -*.hprof - -# End of https://www.toptal.com/developers/gitignore/api/java,intellij,gradle,macos,windows,linux diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index be80d0dde..000000000 --- a/.gitmodules +++ /dev/null @@ -1,3 +0,0 @@ -[submodule "server/src/main/resources/config"] - path = server/src/main/resources/config - url = https://github.com/woowacourse-teams/2024-haeng-dong-config diff --git a/.idea/dataSources/a153963e-0410-4afc-ba3b-4e49c756008e.xml b/.idea/dataSources/a153963e-0410-4afc-ba3b-4e49c756008e.xml deleted file mode 100644 index d045b795a..000000000 --- a/.idea/dataSources/a153963e-0410-4afc-ba3b-4e49c756008e.xml +++ /dev/null @@ -1,1362 +0,0 @@ - - - - - exact - InnoDB - InnoDB - |root||root||ALLOW_NONEXISTENT_DEFINER|G -|root||root|localhost|ALLOW_NONEXISTENT_DEFINER|G -|root||root||ALTER|G -|root||root|localhost|ALTER|G -|root||root||ALTER ROUTINE|G -|root||root|localhost|ALTER ROUTINE|G -|root||root||APPLICATION_PASSWORD_ADMIN|G -|root||root|localhost|APPLICATION_PASSWORD_ADMIN|G -|root||mysql.infoschema|localhost|AUDIT_ABORT_EXEMPT|G -|root||mysql.session|localhost|AUDIT_ABORT_EXEMPT|G -|root||mysql.sys|localhost|AUDIT_ABORT_EXEMPT|G -|root||root||AUDIT_ABORT_EXEMPT|G -|root||root|localhost|AUDIT_ABORT_EXEMPT|G -|root||root||AUDIT_ADMIN|G -|root||root|localhost|AUDIT_ADMIN|G -|root||mysql.session|localhost|AUTHENTICATION_POLICY_ADMIN|G -|root||root||AUTHENTICATION_POLICY_ADMIN|G -|root||root|localhost|AUTHENTICATION_POLICY_ADMIN|G -|root||mysql.session|localhost|BACKUP_ADMIN|G -|root||root||BACKUP_ADMIN|G -|root||root|localhost|BACKUP_ADMIN|G -|root||root||BINLOG_ADMIN|G -|root||root|localhost|BINLOG_ADMIN|G -|root||root||BINLOG_ENCRYPTION_ADMIN|G -|root||root|localhost|BINLOG_ENCRYPTION_ADMIN|G -|root||mysql.session|localhost|CLONE_ADMIN|G -|root||root||CLONE_ADMIN|G -|root||root|localhost|CLONE_ADMIN|G -|root||mysql.session|localhost|CONNECTION_ADMIN|G -|root||root||CONNECTION_ADMIN|G -|root||root|localhost|CONNECTION_ADMIN|G -|root||root||CREATE|G -|root||root|localhost|CREATE|G -|root||root||CREATE ROLE|G -|root||root|localhost|CREATE ROLE|G -|root||root||CREATE ROUTINE|G -|root||root|localhost|CREATE ROUTINE|G -|root||root||CREATE TABLESPACE|G -|root||root|localhost|CREATE TABLESPACE|G -|root||root||CREATE TEMPORARY TABLES|G -|root||root|localhost|CREATE TEMPORARY TABLES|G -|root||root||CREATE USER|G -|root||root|localhost|CREATE USER|G -|root||root||CREATE VIEW|G -|root||root|localhost|CREATE VIEW|G -|root||root||DELETE|G -|root||root|localhost|DELETE|G -|root||root||DROP|G -|root||root|localhost|DROP|G -|root||root||DROP ROLE|G -|root||root|localhost|DROP ROLE|G -|root||root||ENCRYPTION_KEY_ADMIN|G -|root||root|localhost|ENCRYPTION_KEY_ADMIN|G -|root||root||EVENT|G -|root||root|localhost|EVENT|G -|root||root||EXECUTE|G -|root||root|localhost|EXECUTE|G -|root||root||FILE|G -|root||root|localhost|FILE|G -|root||mysql.infoschema|localhost|FIREWALL_EXEMPT|G -|root||mysql.session|localhost|FIREWALL_EXEMPT|G -|root||mysql.sys|localhost|FIREWALL_EXEMPT|G -|root||root||FIREWALL_EXEMPT|G -|root||root|localhost|FIREWALL_EXEMPT|G -|root||root||FLUSH_OPTIMIZER_COSTS|G -|root||root|localhost|FLUSH_OPTIMIZER_COSTS|G -|root||root||FLUSH_PRIVILEGES|G -|root||root|localhost|FLUSH_PRIVILEGES|G -|root||root||FLUSH_STATUS|G -|root||root|localhost|FLUSH_STATUS|G -|root||root||FLUSH_TABLES|G -|root||root|localhost|FLUSH_TABLES|G -|root||root||FLUSH_USER_RESOURCES|G -|root||root|localhost|FLUSH_USER_RESOURCES|G -|root||root||GROUP_REPLICATION_ADMIN|G -|root||root|localhost|GROUP_REPLICATION_ADMIN|G -|root||root||GROUP_REPLICATION_STREAM|G -|root||root|localhost|GROUP_REPLICATION_STREAM|G -|root||root||INDEX|G -|root||root|localhost|INDEX|G -|root||root||INNODB_REDO_LOG_ARCHIVE|G -|root||root|localhost|INNODB_REDO_LOG_ARCHIVE|G -|root||root||INNODB_REDO_LOG_ENABLE|G -|root||root|localhost|INNODB_REDO_LOG_ENABLE|G -|root||root||INSERT|G -|root||root|localhost|INSERT|G -|root||root||LOCK TABLES|G -|root||root|localhost|LOCK TABLES|G -|root||root||OPTIMIZE_LOCAL_TABLE|G -|root||root|localhost|OPTIMIZE_LOCAL_TABLE|G -|root||root||PASSWORDLESS_USER_ADMIN|G -|root||root|localhost|PASSWORDLESS_USER_ADMIN|G -|root||mysql.session|localhost|PERSIST_RO_VARIABLES_ADMIN|G -|root||root||PERSIST_RO_VARIABLES_ADMIN|G -|root||root|localhost|PERSIST_RO_VARIABLES_ADMIN|G -|root||root||PROCESS|G -|root||root|localhost|PROCESS|G -|root||root||REFERENCES|G -|root||root|localhost|REFERENCES|G -|root||root||RELOAD|G -|root||root|localhost|RELOAD|G -|root||root||REPLICATION CLIENT|G -|root||root|localhost|REPLICATION CLIENT|G -|root||root||REPLICATION SLAVE|G -|root||root|localhost|REPLICATION SLAVE|G -|root||root||REPLICATION_APPLIER|G -|root||root|localhost|REPLICATION_APPLIER|G -|root||root||REPLICATION_SLAVE_ADMIN|G -|root||root|localhost|REPLICATION_SLAVE_ADMIN|G -|root||root||RESOURCE_GROUP_ADMIN|G -|root||root|localhost|RESOURCE_GROUP_ADMIN|G -|root||root||RESOURCE_GROUP_USER|G -|root||root|localhost|RESOURCE_GROUP_USER|G -|root||root||ROLE_ADMIN|G -|root||root|localhost|ROLE_ADMIN|G -|root||mysql.infoschema|localhost|SELECT|G -|root||root||SELECT|G -|root||root|localhost|SELECT|G -|root||root||SENSITIVE_VARIABLES_OBSERVER|G -|root||root|localhost|SENSITIVE_VARIABLES_OBSERVER|G -|root||root||SERVICE_CONNECTION_ADMIN|G -|root||root|localhost|SERVICE_CONNECTION_ADMIN|G -|root||mysql.session|localhost|SESSION_VARIABLES_ADMIN|G -|root||root||SESSION_VARIABLES_ADMIN|G -|root||root|localhost|SESSION_VARIABLES_ADMIN|G -|root||root||SET_ANY_DEFINER|G -|root||root|localhost|SET_ANY_DEFINER|G -|root||root||SHOW DATABASES|G -|root||root|localhost|SHOW DATABASES|G -|root||root||SHOW VIEW|G -|root||root|localhost|SHOW VIEW|G -|root||root||SHOW_ROUTINE|G -|root||root|localhost|SHOW_ROUTINE|G -|root||mysql.session|localhost|SHUTDOWN|G -|root||root||SHUTDOWN|G -|root||root|localhost|SHUTDOWN|G -|root||mysql.session|localhost|SUPER|G -|root||root||SUPER|G -|root||root|localhost|SUPER|G -|root||mysql.infoschema|localhost|SYSTEM_USER|G -|root||mysql.session|localhost|SYSTEM_USER|G -|root||mysql.sys|localhost|SYSTEM_USER|G -|root||root||SYSTEM_USER|G -|root||root|localhost|SYSTEM_USER|G -|root||mysql.session|localhost|SYSTEM_VARIABLES_ADMIN|G -|root||root||SYSTEM_VARIABLES_ADMIN|G -|root||root|localhost|SYSTEM_VARIABLES_ADMIN|G -|root||root||TABLE_ENCRYPTION_ADMIN|G -|root||root|localhost|TABLE_ENCRYPTION_ADMIN|G -|root||root||TELEMETRY_LOG_ADMIN|G -|root||root|localhost|TELEMETRY_LOG_ADMIN|G -|root||root||TRANSACTION_GTID_TAG|G -|root||root|localhost|TRANSACTION_GTID_TAG|G -|root||root||TRIGGER|G -|root||root|localhost|TRIGGER|G -|root||root||UPDATE|G -|root||root|localhost|UPDATE|G -|root||root||XA_RECOVER_ADMIN|G -|root||root|localhost|XA_RECOVER_ADMIN|G -|root||root||grant option|G -|root||root|localhost|grant option|G -performance_schema|schema||mysql.session|localhost|SELECT|G -sys|schema||mysql.sys|localhost|TRIGGER|G - 9.0.0 - - - armscii8 - - - armscii8 - 1 - - - ascii - - - ascii - 1 - - - big5 - - - big5 - 1 - - - binary - 1 - - - cp1250 - - - cp1250 - - - cp1250 - - - cp1250 - 1 - - - cp1250 - - - cp1251 - - - cp1251 - - - cp1251 - 1 - - - cp1251 - - - cp1251 - - - cp1256 - - - cp1256 - 1 - - - cp1257 - - - cp1257 - 1 - - - cp1257 - - - cp850 - - - cp850 - 1 - - - cp852 - - - cp852 - 1 - - - cp866 - - - cp866 - 1 - - - cp932 - - - cp932 - 1 - - - dec8 - - - dec8 - 1 - - - eucjpms - - - eucjpms - 1 - - - euckr - - - euckr - 1 - - - gb18030 - - - gb18030 - 1 - - - gb18030 - - - gb2312 - - - gb2312 - 1 - - - gbk - - - gbk - 1 - - - geostd8 - - - geostd8 - 1 - - - greek - - - greek - 1 - - - hebrew - - - hebrew - 1 - - - hp8 - - - hp8 - 1 - - - keybcs2 - - - keybcs2 - 1 - - - koi8r - - - koi8r - 1 - - - koi8u - - - koi8u - 1 - - - latin1 - - - latin1 - - - latin1 - - - latin1 - - - latin1 - - - latin1 - - - latin1 - - - latin1 - 1 - - - latin2 - - - latin2 - - - latin2 - - - latin2 - 1 - - - latin2 - - - latin5 - - - latin5 - 1 - - - latin7 - - - latin7 - - - latin7 - 1 - - - latin7 - - - macce - - - macce - 1 - - - macroman - - - macroman - 1 - - - sjis - - - sjis - 1 - - - swe7 - - - swe7 - 1 - - - tis620 - - - tis620 - 1 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - 1 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ucs2 - - - ujis - - - ujis - 1 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - 1 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16 - - - utf16le - - - utf16le - 1 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - 1 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf32 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - 1 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb3 - - - utf8mb4 - 1 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - utf8mb4 - - - 2024-09-23.05:36:30 - utf8mb4_0900_ai_ci - - - utf8mb3_general_ci - - - utf8mb4_0900_ai_ci - - - utf8mb4_0900_ai_ci - - - utf8mb4_0900_ai_ci - - - 0 - localhost - caching_sha2_password - - - 0 - localhost - caching_sha2_password - - - 0 - localhost - caching_sha2_password - - - caching_sha2_password - - - localhost - caching_sha2_password - - - InnoDB - utf8mb4_0900_ai_ci -
- - InnoDB - utf8mb4_0900_ai_ci -
- - InnoDB - utf8mb4_0900_ai_ci -
- - InnoDB - utf8mb4_0900_ai_ci -
- - InnoDB - utf8mb4_0900_ai_ci -
- - InnoDB - utf8mb4_0900_ai_ci -
- - 1 - bigint|0s - - - 1071 - 1 - 2 - bigint|0s - - - 3 - bigint|0s - - - event_id - id - event - - - id - btree - 1 - - - event_id - btree - - - 1 - 1 - PRIMARY - - - 1 - bigint|0s - - - 323 - 1 - 2 - bigint|0s - - - 3 - bigint|0s - - - 4 - varchar(30)|0s - - - action_id - id - action - - - action_id - btree - 1 - - - id - btree - 1 - - - 1 - 1 - PRIMARY - - - action_id - - - 1836 - 1 - 1 - bigint|0s - - - 2 - bigint|0s - - - 3 - bigint|0s - - - 4 - varchar(255)|0s - - - 1 - 5 - tinyint(1)|0s - - - bill_action_id - id - bill_action - - - id - btree - 1 - - - bill_action_id - btree - - - 1 - 1 - PRIMARY - - - 173 - 1 - 1 - bigint|0s - - - 2 - varchar(255)|0s - - - 3 - varchar(255)|0s - - - 1 - 4 - varchar(255)|0s - - - id - btree - 1 - - - 1 - 1 - PRIMARY - - - 1 - bigint|0s - - - 1 - 1 - 2 - bigint|0s - - - 3 - bigint|0s - - - 4 - varchar(255)|0s - - - event_id - id - event - - - id - btree - 1 - - - event_id - btree - - - 1 - 1 - PRIMARY - - - 1 - bigint|0s - - - 749 - 1 - 2 - bigint|0s - - - 3 - bigint|0s - - - 4 - varchar(255)|0s - - - 5 - enum('IN', 'OUT')|0e - - - action_id - id - action - - - action_id - btree - 1 - - - id - btree - 1 - - - 1 - 1 - PRIMARY - - - action_id - -
-
\ No newline at end of file diff --git a/.idea/dataSources/a153963e-0410-4afc-ba3b-4e49c756008e/storage_v2/_src_/schema/haengdong.SSaEOA.meta b/.idea/dataSources/a153963e-0410-4afc-ba3b-4e49c756008e/storage_v2/_src_/schema/haengdong.SSaEOA.meta deleted file mode 100644 index 86ed037c9..000000000 --- a/.idea/dataSources/a153963e-0410-4afc-ba3b-4e49c756008e/storage_v2/_src_/schema/haengdong.SSaEOA.meta +++ /dev/null @@ -1,2 +0,0 @@ -#n:haengdong -! [0, 0, null, null, -2147483648, -2147483648] diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml deleted file mode 100644 index fdc392fe8..000000000 --- a/.idea/jarRepositories.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules/haengdong.main.iml b/.idea/modules/haengdong.main.iml deleted file mode 100644 index 0c8f1ab49..000000000 --- a/.idea/modules/haengdong.main.iml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/client/index.html b/client/index.html index 5252bb218..7f96b23c5 100644 --- a/client/index.html +++ b/client/index.html @@ -2,35 +2,41 @@ - - - - - + + 행동대장 - 쉽고 빠른 모임 정산 및 송금 서비스 + + + + + + + - + + + + + + + + + + - - - - - 행동대장
diff --git a/client/package-lock.json b/client/package-lock.json index 018acf6d8..9f54768f4 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -9,6 +9,7 @@ "version": "1.0.0", "license": "ISC", "dependencies": { + "@amplitude/analytics-browser": "^2.11.7", "@emotion/react": "^11.11.4", "@sentry/react": "^8.25.0", "@tanstack/react-query": "^5.51.23", @@ -95,6 +96,120 @@ "integrity": "sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==", "dev": true }, + "node_modules/@amplitude/analytics-browser": { + "version": "2.11.7", + "resolved": "https://registry.npmjs.org/@amplitude/analytics-browser/-/analytics-browser-2.11.7.tgz", + "integrity": "sha512-tbBeMA2n1JQJlHGEa1LQ7XrSGPM4YKrNdFKV+gDCzqOixx4wBwwYCxN33lVwCpJvCPAjtYonkAO2dq9d78U7Pw==", + "dependencies": { + "@amplitude/analytics-client-common": "^2.3.3", + "@amplitude/analytics-core": "^2.5.2", + "@amplitude/analytics-remote-config": "^0.4.0", + "@amplitude/analytics-types": "^2.8.2", + "@amplitude/plugin-autocapture-browser": "^1.0.2", + "@amplitude/plugin-page-view-tracking-browser": "^2.3.3", + "tslib": "^2.4.1" + } + }, + "node_modules/@amplitude/analytics-browser/node_modules/@amplitude/analytics-core": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@amplitude/analytics-core/-/analytics-core-2.5.2.tgz", + "integrity": "sha512-4ojYUL7LA+qrlaz1n1nxpsbpgS1k6DOrQ3fBiQOuDJE8Av0aZfylDksFPnZvD1+MMdIm/ONkVAYfEaW3x/uH3Q==", + "dependencies": { + "@amplitude/analytics-types": "^2.8.2", + "tslib": "^2.4.1" + } + }, + "node_modules/@amplitude/analytics-browser/node_modules/@amplitude/analytics-types": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/@amplitude/analytics-types/-/analytics-types-2.8.2.tgz", + "integrity": "sha512-SWFXIMxhFm1/k3PUvxvYLY1iwzS28yd9A6pa5pEnrbaAZwM+E/24ucxs59VGp1N5qlIsvF0aVGSoKzN4ydh4eA==" + }, + "node_modules/@amplitude/analytics-client-common": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/@amplitude/analytics-client-common/-/analytics-client-common-2.3.3.tgz", + "integrity": "sha512-HOvD2A8DH0y2LATrQ0AhFSOCk6yZayebu4+UsEBT76Q7EEYtnc59WMCRRIi5Zv6OqHpOvABumF7g3HmL6ehTYA==", + "dependencies": { + "@amplitude/analytics-connector": "^1.4.8", + "@amplitude/analytics-core": "^2.5.2", + "@amplitude/analytics-types": "^2.8.2", + "tslib": "^2.4.1" + } + }, + "node_modules/@amplitude/analytics-client-common/node_modules/@amplitude/analytics-core": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/@amplitude/analytics-core/-/analytics-core-2.5.2.tgz", + "integrity": "sha512-4ojYUL7LA+qrlaz1n1nxpsbpgS1k6DOrQ3fBiQOuDJE8Av0aZfylDksFPnZvD1+MMdIm/ONkVAYfEaW3x/uH3Q==", + "dependencies": { + "@amplitude/analytics-types": "^2.8.2", + "tslib": "^2.4.1" + } + }, + "node_modules/@amplitude/analytics-client-common/node_modules/@amplitude/analytics-types": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/@amplitude/analytics-types/-/analytics-types-2.8.2.tgz", + "integrity": "sha512-SWFXIMxhFm1/k3PUvxvYLY1iwzS28yd9A6pa5pEnrbaAZwM+E/24ucxs59VGp1N5qlIsvF0aVGSoKzN4ydh4eA==" + }, + "node_modules/@amplitude/analytics-connector": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@amplitude/analytics-connector/-/analytics-connector-1.5.0.tgz", + "integrity": "sha512-T8mOYzB9RRxckzhL0NTHwdge9xuFxXEOplC8B1Y3UX3NHa3BLh7DlBUZlCOwQgMc2nxDfnSweDL5S3bhC+W90g==" + }, + "node_modules/@amplitude/analytics-core": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@amplitude/analytics-core/-/analytics-core-1.2.5.tgz", + "integrity": "sha512-V7CVlHVN+1diKiOpdp2bCPZ0mbS4CmUYF+v+eXDwVfJL3M/t3sVcT1apXnmVYGYi14cGu9hQOD11rD6qKbUOsw==", + "dependencies": { + "@amplitude/analytics-types": "^1.3.4", + "tslib": "^2.4.1" + } + }, + "node_modules/@amplitude/analytics-remote-config": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@amplitude/analytics-remote-config/-/analytics-remote-config-0.4.1.tgz", + "integrity": "sha512-BYl6kQ9qjztrCACsugpxO+foLaQIC0aSEzoXEAb/gwOzInmqkyyI+Ub+aWTBih4xgB/lhWlOcidWHAmNiTJTNw==", + "dependencies": { + "@amplitude/analytics-client-common": ">=1 <3", + "@amplitude/analytics-core": ">=1 <3", + "@amplitude/analytics-types": ">=1 <3", + "tslib": "^2.4.1" + } + }, + "node_modules/@amplitude/analytics-types": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/@amplitude/analytics-types/-/analytics-types-1.3.4.tgz", + "integrity": "sha512-tR70gzqFkEzX9QpxvWYMfLCledT7vMhgd3d4/bkp3nnGXTOORaVUOCcSgOyxyuFdSx84T61aP/eZPKIcZcaP+A==" + }, + "node_modules/@amplitude/plugin-autocapture-browser": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@amplitude/plugin-autocapture-browser/-/plugin-autocapture-browser-1.0.3.tgz", + "integrity": "sha512-XUQWUAw9VqtJPlmOyWjnhsEspyVakd9LuSjVNtLjhwlWv+f/yZM1AAQVUdq/Os1+b5OptSgJQ2pPfRJJHZDXTw==", + "dependencies": { + "@amplitude/analytics-client-common": ">=1 <3", + "@amplitude/analytics-types": "^2.8.2", + "rxjs": "^7.8.1", + "tslib": "^2.4.1" + } + }, + "node_modules/@amplitude/plugin-autocapture-browser/node_modules/@amplitude/analytics-types": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/@amplitude/analytics-types/-/analytics-types-2.8.2.tgz", + "integrity": "sha512-SWFXIMxhFm1/k3PUvxvYLY1iwzS28yd9A6pa5pEnrbaAZwM+E/24ucxs59VGp1N5qlIsvF0aVGSoKzN4ydh4eA==" + }, + "node_modules/@amplitude/plugin-page-view-tracking-browser": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/@amplitude/plugin-page-view-tracking-browser/-/plugin-page-view-tracking-browser-2.3.3.tgz", + "integrity": "sha512-tGDt7aU/okGHH38sxZvBckRXBw2btkw+wJz/PmIFIQdD7/7EMVnTtXgZJTokE+fqfxCx79F2ojEHp37xgVSxpg==", + "dependencies": { + "@amplitude/analytics-client-common": "^2.3.3", + "@amplitude/analytics-types": "^2.8.2", + "tslib": "^2.4.1" + } + }, + "node_modules/@amplitude/plugin-page-view-tracking-browser/node_modules/@amplitude/analytics-types": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/@amplitude/analytics-types/-/analytics-types-2.8.2.tgz", + "integrity": "sha512-SWFXIMxhFm1/k3PUvxvYLY1iwzS28yd9A6pa5pEnrbaAZwM+E/24ucxs59VGp1N5qlIsvF0aVGSoKzN4ydh4eA==" + }, "node_modules/@ampproject/remapping": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", @@ -20197,7 +20312,6 @@ "version": "7.8.1", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", - "dev": true, "dependencies": { "tslib": "^2.1.0" } @@ -22187,8 +22301,7 @@ "node_modules/tslib": { "version": "2.6.3", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==", - "dev": true + "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==" }, "node_modules/tunnel-agent": { "version": "0.6.0", diff --git a/client/package.json b/client/package.json index 932e4e911..b10b7b9d0 100644 --- a/client/package.json +++ b/client/package.json @@ -85,6 +85,7 @@ "webpack-merge": "^6.0.1" }, "dependencies": { + "@amplitude/analytics-browser": "^2.11.7", "@emotion/react": "^11.11.4", "@sentry/react": "^8.25.0", "@tanstack/react-query": "^5.51.23", diff --git a/client/src/App.tsx b/client/src/App.tsx index 33ea71b6c..99e09da87 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -6,6 +6,7 @@ import QueryClientBoundary from '@components/QueryClientBoundary/QueryClientBoun import ErrorCatcher from '@components/AppErrorBoundary/ErrorCatcher'; import ToastContainer from '@components/Toast/ToastContainer'; import KakaoInitializer from '@components/KakaoInitializer/KakaoInitializer'; +import AmplitudeInitializer from '@components/AmplitudeInitializer/AmplitudeInitializer'; import {HDesignProvider} from '@HDesign/index'; @@ -24,9 +25,11 @@ const App: React.FC = () => { - - - + + + + + diff --git a/client/src/GlobalStyle.ts b/client/src/GlobalStyle.ts index b25bb94d1..b2eca3474 100644 --- a/client/src/GlobalStyle.ts +++ b/client/src/GlobalStyle.ts @@ -145,4 +145,10 @@ export const GlobalStyle = css` max-width: 768px; margin: 0 auto; } + + scrollbar-width: none; /* Firefox */ + -ms-overflow-style: none; /* IE and Edge */ + &::-webkit-scrollbar { + display: none; /* Chrome, Safari, Opera */ + } `; diff --git a/client/src/apis/baseUrl.ts b/client/src/apis/baseUrl.ts index 37fc00a94..c425dc40f 100644 --- a/client/src/apis/baseUrl.ts +++ b/client/src/apis/baseUrl.ts @@ -1,3 +1,4 @@ export const BASE_URL = { HD: process.env.API_BASE_URL, + S3: process.env.S3_URL, }; diff --git a/client/src/apis/fetcher.ts b/client/src/apis/fetcher.ts index a1c205739..35671b167 100644 --- a/client/src/apis/fetcher.ts +++ b/client/src/apis/fetcher.ts @@ -21,7 +21,7 @@ type RequestInitWithMethod = Omit & {method: Method}; type HeadersType = [string, string][] | Record | Headers; -export type Body = BodyInit | object | null; +export type Body = BodyInit | object | null; //init안에 FormDATA있음. type RequestProps = { baseUrl?: string; @@ -32,6 +32,12 @@ type RequestProps = { method: Method; }; +type CreateRequestInitProps = { + body?: Body; + method: Method; + headers?: HeadersType; +}; + type RequestMethodProps = Omit; type FetchType = { @@ -85,17 +91,26 @@ const prepareRequest = ({baseUrl = API_BASE_URL, method, endpoint, headers, body if (queryParams) url += `?${objectToQueryString(queryParams)}`; + const requestInit = createRequestInit({method, headers, body}); + + return {url, requestInit}; +}; + +const createRequestInit = ({method, headers, body}: CreateRequestInitProps) => { const requestInit: RequestInitWithMethod = { credentials: 'include', - headers: { - 'Content-Type': 'application/json', - ...headers, - }, method, - body: body ? JSON.stringify(body) : null, }; - return {url, requestInit}; + if (body instanceof FormData) { + return {...requestInit, body}; + } else { + return { + ...requestInit, + headers: {...headers, 'Content-Type': 'application/json'}, + body: body ? JSON.stringify(body) : null, + }; + } }; const executeRequest = async ({url, requestInit, errorHandlingStrategy}: WithErrorHandlingStrategy) => { @@ -114,7 +129,7 @@ const executeRequest = async ({url, requestInit, errorHandlingStrategy}: WithErr return response; } catch (error) { if (error instanceof Error) { - throw error; // 그대로 RequestError 또는 Error 인스턴스를 던집니다. + throw error; } throw error; diff --git a/client/src/apis/request/images.ts b/client/src/apis/request/images.ts new file mode 100644 index 000000000..e17061c3c --- /dev/null +++ b/client/src/apis/request/images.ts @@ -0,0 +1,32 @@ +import {EventId, Images} from 'types/serviceType'; + +import {BASE_URL} from '@apis/baseUrl'; +import {ADMIN_API_PREFIX, USER_API_PREFIX} from '@apis/endpointPrefix'; +import {requestDelete, requestGet, requestPostWithoutResponse} from '@apis/fetcher'; +import {WithEventId} from '@apis/withId.type'; + +export interface RequestPostImages { + formData: FormData; +} + +export const requestPostImages = async ({eventId, formData}: WithEventId) => { + await requestPostWithoutResponse({endpoint: `${ADMIN_API_PREFIX}/${eventId}/images`, body: formData}); +}; + +export const requestGetImages = async ({eventId}: WithEventId) => { + return await requestGet({ + baseUrl: BASE_URL.HD, + endpoint: `${USER_API_PREFIX}/${eventId}/images`, + }); +}; + +export interface RequestDeleteImage { + imageId: number; +} + +export const requestDeleteImage = async ({eventId, imageId}: WithEventId) => { + return await requestDelete({ + baseUrl: BASE_URL.HD, + endpoint: `${ADMIN_API_PREFIX}/${eventId}/images/${imageId}`, + }); +}; diff --git a/client/src/assets/image/photoButton.svg b/client/src/assets/image/photoButton.svg new file mode 100644 index 000000000..5db0eb482 --- /dev/null +++ b/client/src/assets/image/photoButton.svg @@ -0,0 +1,4 @@ + + + + diff --git a/client/src/components/AmplitudeInitializer/AmplitudeInitializer.tsx b/client/src/components/AmplitudeInitializer/AmplitudeInitializer.tsx new file mode 100644 index 000000000..bd3ac2627 --- /dev/null +++ b/client/src/components/AmplitudeInitializer/AmplitudeInitializer.tsx @@ -0,0 +1,17 @@ +import {useEffect} from 'react'; + +import {useAmplitudeStore} from '@store/amplitudeStore'; + +const AmplitudeInitializer = ({children}: React.PropsWithChildren) => { + const {amplitude} = useAmplitudeStore(); + + useEffect(() => { + amplitude.init(process.env.AMPLITUDE_KEY, undefined, { + defaultTracking: true, + }); + }, []); + + return children; +}; + +export default AmplitudeInitializer; diff --git a/client/src/components/Design/components/BankSelect/BankSelect.tsx b/client/src/components/Design/components/BankSelect/BankSelect.tsx index 5fdc6f2df..94b08b54c 100644 --- a/client/src/components/Design/components/BankSelect/BankSelect.tsx +++ b/client/src/components/Design/components/BankSelect/BankSelect.tsx @@ -13,12 +13,12 @@ type BankSelectProps = { const BankSelect = ({onSelect}: BankSelectProps) => { return (
- {BANKS.map(({name, iconPosition}) => ( + {BANKS.map(({name, displayName, iconPosition}) => ( diff --git a/client/src/components/Design/components/BankSendButton/BankSendButton.style.ts b/client/src/components/Design/components/BankSendButton/BankSendButton.style.ts deleted file mode 100644 index bb6bbffb7..000000000 --- a/client/src/components/Design/components/BankSendButton/BankSendButton.style.ts +++ /dev/null @@ -1,23 +0,0 @@ -import {css} from '@emotion/react'; - -import {Theme} from '@components/Design/theme/theme.type'; - -export const bankButtonStyle = (theme: Theme) => - css({ - width: '3.25rem', - height: '1.5rem', - - backgroundColor: theme.colors.tertiary, - - borderRadius: '0.5rem', - }); - -export const isDepositedStyle = (theme: Theme) => - css({ - width: '3.25rem', - height: '1.5rem', - - backgroundColor: theme.colors.grayContainer, - - borderRadius: '0.5rem', - }); diff --git a/client/src/components/Design/components/BankSendButton/BankSendButton.tsx b/client/src/components/Design/components/BankSendButton/BankSendButton.tsx deleted file mode 100644 index 893b7cf3d..000000000 --- a/client/src/components/Design/components/BankSendButton/BankSendButton.tsx +++ /dev/null @@ -1,38 +0,0 @@ -/** @jsxImportSource @emotion/react */ -import {useTheme} from '@components/Design/theme/HDesignProvider'; - -import Icon from '../Icon/Icon'; -import Text from '../Text/Text'; -import Flex from '../Flex/Flex'; - -import {bankButtonStyle, isDepositedStyle} from './BankSendButton.style'; - -type BankSendButtonProps = React.HTMLAttributes & { - onBankButtonClick: () => void; - isDeposited?: boolean; -}; - -const BankSendButton = ({onBankButtonClick, isDeposited = false, ...buttonProps}: BankSendButtonProps) => { - const {theme} = useTheme(); - - return isDeposited ? ( - - ) : ( - - ); -}; - -export default BankSendButton; diff --git a/client/src/components/Design/components/Banner/Banner.stories.tsx b/client/src/components/Design/components/Banner/Banner.stories.tsx new file mode 100644 index 000000000..fc726df10 --- /dev/null +++ b/client/src/components/Design/components/Banner/Banner.stories.tsx @@ -0,0 +1,26 @@ +/** @jsxImportSource @emotion/react */ +import type {Meta, StoryObj} from '@storybook/react'; + +import Banner from './Banner'; + +const meta = { + title: 'Components/Banner', + component: Banner, + tags: ['autodocs'], + parameters: { + // layout: 'centered', + }, + argTypes: {}, + args: { + onDelete: () => console.log(''), + title: '계좌번호가 등록되지 않았어요', + description: '계좌번호를 입력해야 참여자가 편하게 송금할 수 있어요', + buttonText: '등록하기', + }, +} satisfies Meta; + +export default meta; + +type Story = StoryObj; + +export const Playground: Story = {}; diff --git a/client/src/components/Design/components/Banner/Banner.tsx b/client/src/components/Design/components/Banner/Banner.tsx new file mode 100644 index 000000000..a7ac43c59 --- /dev/null +++ b/client/src/components/Design/components/Banner/Banner.tsx @@ -0,0 +1,43 @@ +/** @jsxImportSource @emotion/react */ +import type {BannerProps} from './Banner.type'; + +import Flex from '../Flex/Flex'; +import Icon from '../Icon/Icon'; +import IconButton from '../IconButton/IconButton'; +import Text from '../Text/Text'; +import Button from '../Button/Button'; + +const Banner = ({title, description, buttonText, onDelete, ...buttonProps}: BannerProps) => { + return ( + + + + + +
+ + {title} + + {description && ( + + {description} + + )} +
+
+ +
+ ); +}; + +export default Banner; diff --git a/client/src/components/Design/components/Banner/Banner.type.ts b/client/src/components/Design/components/Banner/Banner.type.ts new file mode 100644 index 000000000..3dcdbc0f4 --- /dev/null +++ b/client/src/components/Design/components/Banner/Banner.type.ts @@ -0,0 +1,6 @@ +export type BannerProps = React.HTMLAttributes & { + onDelete: () => void; + title: string; + description?: string; + buttonText: string; +}; diff --git a/client/src/components/Design/components/Banner/index.ts b/client/src/components/Design/components/Banner/index.ts new file mode 100644 index 000000000..f7e7e8f2d --- /dev/null +++ b/client/src/components/Design/components/Banner/index.ts @@ -0,0 +1 @@ +export {default as Banner} from './Banner'; diff --git a/client/src/components/Design/components/Button/Button.style.ts b/client/src/components/Design/components/Button/Button.style.ts index 0d274f116..e17c9db92 100644 --- a/client/src/components/Design/components/Button/Button.style.ts +++ b/client/src/components/Design/components/Button/Button.style.ts @@ -17,6 +17,7 @@ const getButtonDefaultStyle = (theme: Theme) => css({ display: 'flex', justifyContent: 'center', + alignItems: 'center', lineHeight: '1', transition: '0.2s', transitionTimingFunction: 'cubic-bezier(0.7, 0.62, 0.62, 1.16)', @@ -57,6 +58,14 @@ const getButtonSizeStyle = (size: ButtonSize) => { fontSize: '1rem', fontWeight: '700', }), + semiLarge: css({ + padding: '0.75rem 1rem', + borderRadius: '1rem', + fontFamily: 'Pretendard', + fontSize: '1rem', + fontWeight: '700', + height: '3rem', + }), large: css({ padding: '1rem 1.5rem', borderRadius: '1rem', diff --git a/client/src/components/Design/components/Button/Button.type.ts b/client/src/components/Design/components/Button/Button.type.ts index a0402b1dc..512e81105 100644 --- a/client/src/components/Design/components/Button/Button.type.ts +++ b/client/src/components/Design/components/Button/Button.type.ts @@ -1,6 +1,6 @@ import {Theme} from '@theme/theme.type'; -export type ButtonSize = 'small' | 'medium' | 'large'; +export type ButtonSize = 'small' | 'medium' | 'semiLarge' | 'large'; export type ButtonVariants = 'primary' | 'secondary' | 'tertiary' | 'destructive' | 'loading'; export interface ButtonStyleProps { diff --git a/client/src/components/Design/components/Carousel/Carousel.stories.tsx b/client/src/components/Design/components/Carousel/Carousel.stories.tsx new file mode 100644 index 000000000..0a8b19930 --- /dev/null +++ b/client/src/components/Design/components/Carousel/Carousel.stories.tsx @@ -0,0 +1,27 @@ +import type {Meta, StoryObj} from '@storybook/react'; + +import Carousel from './Carousel'; + +const meta = { + title: 'Components/Carousel', + component: Carousel, + tags: ['autodocs'], + parameters: { + layout: 'centered', + width: 430, + }, + argTypes: {}, + args: { + urls: [ + 'https://wooteco-crew-wiki.s3.ap-northeast-2.amazonaws.com/%EC%BF%A0%ED%82%A4(6%EA%B8%B0)/image.png', + 'https://wooteco-crew-wiki.s3.ap-northeast-2.amazonaws.com/%EC%BF%A0%ED%82%A4%286%EA%B8%B0%29/4tyq1x19rsn.jpg', + 'https://img.danawa.com/images/descFiles/5/896/4895281_1_16376712347542321.gif', + ], + }, +} satisfies Meta; + +export default meta; + +type Story = StoryObj; + +export const Playground: Story = {}; diff --git a/client/src/components/Design/components/Carousel/Carousel.style.ts b/client/src/components/Design/components/Carousel/Carousel.style.ts new file mode 100644 index 000000000..addc2926b --- /dev/null +++ b/client/src/components/Design/components/Carousel/Carousel.style.ts @@ -0,0 +1,94 @@ +import {css} from '@emotion/react'; + +import {Theme} from '@components/Design/theme/theme.type'; + +export const carouselWrapperStyle = css` + position: relative; + overflow: hidden; + display: flex; +`; + +interface ImageCardContainerStyleProps { + currentIndex: number; + length: number; + translateX: number; + isDragging: boolean; +} + +export const imageCardContainerStyle = ({ + currentIndex, + length, + translateX, + isDragging, +}: ImageCardContainerStyleProps) => css` + display: flex; + gap: 1rem; + margin-inline: 2rem; + transform: translateX( + calc( + (100vw - 3rem) * ${-currentIndex} + + ${(currentIndex === 0 && translateX > 0) || (currentIndex === length - 1 && translateX < 0) ? 0 : translateX}px + ) + ); + transition: ${isDragging ? 'none' : '0.2s'}; + transition-timing-function: cubic-bezier(0.7, 0.62, 0.62, 1.16); +`; + +interface ImageCardStyleProps { + theme: Theme; +} + +export const imageCardStyle = ({theme}: ImageCardStyleProps) => css` + position: relative; + display: flex; + justify-content: center; + align-items: center; + clip-path: inset(0 round 1rem); + background-color: ${theme.colors.gray}; +`; + +export const imageStyle = css` + width: calc(100vw - 4rem); + aspect-ratio: 3/4; + object-fit: contain; +`; + +export const deleteButtonStyle = css` + position: absolute; + top: 1rem; + right: 1rem; + padding: 0.5rem; + opacity: 0.48; + background-color: rgba(0, 0, 0, 0.5); + border-radius: 50%; + display: flex; + justify-content: center; + align-items: center; +`; + +export const indicatorContainerStyle = css` + position: absolute; + left: 50%; + bottom: 1rem; + transform: translateX(-50%); + display: flex; + gap: 0.25rem; + width: 8rem; +`; + +interface IndicatorStyleProps { + index: number; + currentIndex: number; + theme: Theme; +} + +export const indicatorStyle = ({index, currentIndex, theme}: IndicatorStyleProps) => css` + width: 100%; + height: 0.125rem; + border-radius: 0.0625rem; + opacity: ${index !== currentIndex ? 0.48 : 1}; + background-color: ${index !== currentIndex ? theme.colors.lightGrayContainer : theme.colors.primary}; + transition: 0.2s; + transition-timing-function: cubic-bezier(0.7, 0.62, 0.62, 1.16); + content: ' '; +`; diff --git a/client/src/components/Design/components/Carousel/Carousel.tsx b/client/src/components/Design/components/Carousel/Carousel.tsx new file mode 100644 index 000000000..9b7b00bad --- /dev/null +++ b/client/src/components/Design/components/Carousel/Carousel.tsx @@ -0,0 +1,36 @@ +/** @jsxImportSource @emotion/react */ +import {CarouselProps} from './Carousel.type'; +import CarouselIndicator from './CarouselIndicator'; +import CarouselDeleteButton from './CarouselDeleteButton'; +import {carouselWrapperStyle, imageCardContainerStyle, imageCardStyle, imageStyle} from './Carousel.style'; +import useCarousel from './useCarousel'; + +const Carousel = ({urls, onClickDelete}: CarouselProps) => { + const {handleDragStart, handleDrag, handleDragEnd, theme, currentIndex, translateX, isDragging, handleClickDelete} = + useCarousel({urls, onClickDelete}); + + return ( +
+
+ {urls && + urls.map((url, index) => ( +
+ {`업로드된 + {onClickDelete && handleClickDelete(index)} />} +
+ ))} +
+ {urls.length !== 1 && } +
+ ); +}; + +export default Carousel; diff --git a/client/src/components/Design/components/Carousel/Carousel.type.ts b/client/src/components/Design/components/Carousel/Carousel.type.ts new file mode 100644 index 000000000..746ace1f2 --- /dev/null +++ b/client/src/components/Design/components/Carousel/Carousel.type.ts @@ -0,0 +1,4 @@ +export interface CarouselProps { + urls: string[]; + onClickDelete?: (index: number) => void; +} diff --git a/client/src/components/Design/components/Carousel/CarouselDeleteButton.tsx b/client/src/components/Design/components/Carousel/CarouselDeleteButton.tsx new file mode 100644 index 000000000..9f7154395 --- /dev/null +++ b/client/src/components/Design/components/Carousel/CarouselDeleteButton.tsx @@ -0,0 +1,17 @@ +import Icon from '../Icon/Icon'; + +import {deleteButtonStyle} from './Carousel.style'; + +interface Props { + onClick: () => void; +} + +const CarouselDeleteButton = ({onClick}: Props) => { + return ( + + ); +}; + +export default CarouselDeleteButton; diff --git a/client/src/components/Design/components/Carousel/CarouselIndicator.tsx b/client/src/components/Design/components/Carousel/CarouselIndicator.tsx new file mode 100644 index 000000000..971fa7d3e --- /dev/null +++ b/client/src/components/Design/components/Carousel/CarouselIndicator.tsx @@ -0,0 +1,22 @@ +import {useTheme} from '@components/Design/theme/HDesignProvider'; + +import {indicatorContainerStyle, indicatorStyle} from './Carousel.style'; + +interface Props { + length: number; + currentIndex: number; +} + +const CarouselIndicator = ({length, currentIndex}: Props) => { + const {theme} = useTheme(); + + return ( +
+ {Array.from({length}).map((_, index) => ( +
+ ))} +
+ ); +}; + +export default CarouselIndicator; diff --git a/client/src/components/Design/components/Carousel/useCarousel.tsx b/client/src/components/Design/components/Carousel/useCarousel.tsx new file mode 100644 index 000000000..73cb1d0f6 --- /dev/null +++ b/client/src/components/Design/components/Carousel/useCarousel.tsx @@ -0,0 +1,48 @@ +import {useRef, useState} from 'react'; + +import {useTheme} from '@components/Design/theme/HDesignProvider'; + +import {CarouselProps} from './Carousel.type'; + +const useCarousel = ({urls, onClickDelete}: CarouselProps) => { + const startX = useRef(0); + const [translateX, setTranslateX] = useState(0); + const [isDragging, setIsDragging] = useState(false); + const [currentIndex, setCurrentIndex] = useState(0); + const {theme} = useTheme(); + + const handleDragStart = (e: React.TouchEvent | React.MouseEvent) => { + setIsDragging(true); + startX.current = 'touches' in e ? e.touches[0].clientX : e.clientX; + }; + + const handleDrag = (e: React.TouchEvent | React.MouseEvent) => { + if (!isDragging) return; + const currentX = 'touches' in e ? e.touches[0].clientX : e.clientX; + const deltaX = currentX - startX.current; + setTranslateX(deltaX); + }; + + const threshold = window.screen.width / 10; + + const handleDragEnd = () => { + setIsDragging(false); + if (-translateX > threshold) { + setCurrentIndex(prev => (prev !== urls.length - 1 ? prev + 1 : prev)); + } + if (+translateX > threshold) { + setCurrentIndex(prev => (prev !== 0 ? prev - 1 : prev)); + } + setTranslateX(0); + }; + + const handleClickDelete = (index: number) => { + if (!onClickDelete) return; + onClickDelete(index); + if (urls.length !== 1 && index === urls.length - 1) setCurrentIndex(prev => prev - 1); + }; + + return {handleDragStart, handleDrag, handleDragEnd, theme, currentIndex, translateX, isDragging, handleClickDelete}; +}; + +export default useCarousel; diff --git a/client/src/components/Design/components/Chevron/Chevron.style.ts b/client/src/components/Design/components/Chevron/Chevron.style.ts new file mode 100644 index 000000000..14b67e80e --- /dev/null +++ b/client/src/components/Design/components/Chevron/Chevron.style.ts @@ -0,0 +1,9 @@ +import {css} from '@emotion/react'; + +export const chevronStyle = css({ + transition: 'transform 0.3s ease', +}); + +export const activeChevronStyle = css({ + transform: 'rotate(180deg)', +}); diff --git a/client/src/components/Design/components/Chevron/Chevron.tsx b/client/src/components/Design/components/Chevron/Chevron.tsx new file mode 100644 index 000000000..9e5ac4947 --- /dev/null +++ b/client/src/components/Design/components/Chevron/Chevron.tsx @@ -0,0 +1,25 @@ +/** @jsxImportSource @emotion/react */ +import {chevronStyle, activeChevronStyle} from './Chevron.style'; + +type ChevronProps = { + isActive: boolean; +}; + +const Chevron = ({isActive}: ChevronProps) => { + return ( +
+ + + +
+ ); +}; + +export default Chevron; diff --git a/client/src/components/Design/components/ClickOutsideDetector/index.tsx b/client/src/components/Design/components/ClickOutsideDetector/index.tsx new file mode 100644 index 000000000..8eaf4da5b --- /dev/null +++ b/client/src/components/Design/components/ClickOutsideDetector/index.tsx @@ -0,0 +1,32 @@ +import {useEffect} from 'react'; + +type ClickOutsideDetectorProps = React.PropsWithChildren & { + targetRef: React.RefObject; + onClickOutside: () => void; +}; + +const ClickOutsideDetector = ({ + targetRef, + onClickOutside, + children, +}: ClickOutsideDetectorProps) => { + useEffect(() => { + const handleClickOutside = (event: MouseEvent) => { + const targetNode = event.target as Node; + + if (targetRef.current && !targetRef.current.contains(targetNode)) { + onClickOutside(); + } + }; + + document.addEventListener('mousedown', handleClickOutside); + + return () => { + document.removeEventListener('mousedown', handleClickOutside); + }; + }, [targetRef]); + + return children; +}; + +export default ClickOutsideDetector; diff --git a/client/src/components/Design/components/Dropdown/ButtonBase.tsx b/client/src/components/Design/components/Dropdown/ButtonBase.tsx new file mode 100644 index 000000000..8c1c553d0 --- /dev/null +++ b/client/src/components/Design/components/Dropdown/ButtonBase.tsx @@ -0,0 +1,38 @@ +/** @jsxImportSource @emotion/react */ +import {useTheme} from '@components/Design/theme/HDesignProvider'; + +import Button from '../Button/Button'; +import Flex from '../Flex/Flex'; + +import {dropdownButtonBaseStyle} from './Dropdown.style'; +import {DropdownProps} from './Dropdown.type'; +import DropdownButton from './DropdownButton'; + +type ButtonBaseProps = DropdownProps & { + isOpen: boolean; + setIsOpen: React.Dispatch>; + dropdownRef: React.RefObject; +}; + +const ButtonBase = ({isOpen, setIsOpen, dropdownRef, baseButtonText, children}: ButtonBaseProps) => { + const {theme} = useTheme(); + + return ( + <> + + {isOpen && ( +
+ + {children.map((button, index) => ( + + ))} + +
+ )} + + ); +}; + +export default ButtonBase; diff --git a/client/src/components/Design/components/Dropdown/Dropdown.stories.tsx b/client/src/components/Design/components/Dropdown/Dropdown.stories.tsx index 2504ecae7..bf324f8f7 100644 --- a/client/src/components/Design/components/Dropdown/Dropdown.stories.tsx +++ b/client/src/components/Design/components/Dropdown/Dropdown.stories.tsx @@ -19,7 +19,15 @@ const meta = {
), ], + argTypes: { + base: { + description: '', + control: {type: 'select'}, + options: ['meatballs', 'button'], + }, + }, args: { + baseButtonText: '정산 초대하기', children: [ alert('전체 참여자 관리 클릭')} />, alert('계좌번호 입력하기 클릭')} />, diff --git a/client/src/components/Design/components/Dropdown/Dropdown.style.ts b/client/src/components/Design/components/Dropdown/Dropdown.style.ts index 8b4fc91df..e26863620 100644 --- a/client/src/components/Design/components/Dropdown/Dropdown.style.ts +++ b/client/src/components/Design/components/Dropdown/Dropdown.style.ts @@ -4,21 +4,50 @@ import {Theme} from '@components/Design/theme/theme.type'; import {FlexProps} from '../Flex/Flex.type'; -export const dropdownStyle: FlexProps = { - flexDirection: 'column', - width: '12.5rem', - padding: '0.5rem', - paddingInline: '0.5rem', - gap: '0.25rem', - backgroundColor: 'white', - - otherStyle: { - position: 'absolute', - top: '2rem', - right: '-1rem', - borderRadius: '0.75rem', - boxShadow: '2px 4px 16px 0 rgba(0, 0, 0, 0.08)', - }, +export const dropdownBaseStyle = css({ + position: 'relative', + + WebkitTapHighlightColor: 'transparent', +}); + +export const dropdownStyle = (theme: Theme): FlexProps => { + return { + flexDirection: 'column', + width: '12.5rem', + padding: '0.5rem', + paddingInline: '0.5rem', + gap: '0.25rem', + backgroundColor: 'white', + + cssProp: { + position: 'absolute', + top: '2rem', + right: '-1rem', + borderRadius: '0.75rem', + boxShadow: '2px 4px 16px 0 rgba(0, 0, 0, 0.08)', + zIndex: theme.zIndex.dropdownList, + }, + }; +}; + +export const dropdownButtonBaseStyle = (theme: Theme): FlexProps => { + return { + flexDirection: 'column', + width: '12.5rem', + padding: '0.5rem', + paddingInline: '0.5rem', + gap: '0.25rem', + backgroundColor: 'white', + + cssProp: { + position: 'absolute', + top: '2.5rem', + right: '-0.5rem', + borderRadius: '0.75rem', + boxShadow: '2px 4px 16px 0 rgba(0, 0, 0, 0.08)', + zIndex: theme.zIndex.dropdownList, + }, + }; }; export const dropdownButtonStyle = (theme: Theme) => diff --git a/client/src/components/Design/components/Dropdown/Dropdown.tsx b/client/src/components/Design/components/Dropdown/Dropdown.tsx index 63045dd56..ab5fe23e4 100644 --- a/client/src/components/Design/components/Dropdown/Dropdown.tsx +++ b/client/src/components/Design/components/Dropdown/Dropdown.tsx @@ -1,35 +1,33 @@ /** @jsxImportSource @emotion/react */ -import Icon from '../Icon/Icon'; -import IconButton from '../IconButton/IconButton'; -import Flex from '../Flex/Flex'; +import ClickOutsideDetector from '../ClickOutsideDetector'; import useDropdown from './useDropdown'; import {DropdownProps} from './Dropdown.type'; -import DropdownButton from './DropdownButton'; -import {dropdownStyle} from './Dropdown.style'; +import MeatballBase from './MeatballBase'; +import ButtonBase from './ButtonBase'; +import {dropdownBaseStyle} from './Dropdown.style'; -const Dropdown = ({children}: DropdownProps) => { - const {isOpen, openDropdown, meetBallsRef, dropdownRef} = useDropdown(); - const isDropdownOpen = isOpen && meetBallsRef.current; +const Dropdown = ({base = 'meatballs', baseButtonText, children}: DropdownProps) => { + const {isOpen, setIsOpen, baseRef, dropdownRef} = useDropdown(); + const isDropdownOpen = isOpen && !!baseRef.current; return ( - - - {isDropdownOpen && ( -
- - {children.map(button => ( - - ))} - -
- )} -
+ setIsOpen(false)}> +
+ {base === 'meatballs' && ( + + )} + {base === 'button' && ( + + )} +
+
); }; diff --git a/client/src/components/Design/components/Dropdown/Dropdown.type.ts b/client/src/components/Design/components/Dropdown/Dropdown.type.ts index 1b67bbc33..5d8c3855f 100644 --- a/client/src/components/Design/components/Dropdown/Dropdown.type.ts +++ b/client/src/components/Design/components/Dropdown/Dropdown.type.ts @@ -1,7 +1,12 @@ +export type DropdownBase = 'meatballs' | 'button'; + export type DropdownButtonProps = React.HTMLAttributes & { text: string; + setIsOpen?: React.Dispatch>; // 내부에서 사용하기 위한 props 외부에서 넣어주지 말 것 }; export type DropdownProps = { + base?: DropdownBase; + baseButtonText?: string; children: React.ReactElement[]; }; diff --git a/client/src/components/Design/components/Dropdown/DropdownButton.tsx b/client/src/components/Design/components/Dropdown/DropdownButton.tsx index 005a6042a..8e3981654 100644 --- a/client/src/components/Design/components/Dropdown/DropdownButton.tsx +++ b/client/src/components/Design/components/Dropdown/DropdownButton.tsx @@ -7,10 +7,19 @@ import Text from '../Text/Text'; import {dropdownButtonStyle} from './Dropdown.style'; import {DropdownButtonProps} from './Dropdown.type'; -const DropdownButton = ({text, ...buttonProps}: DropdownButtonProps) => { +const DropdownButton = ({text, onClick, setIsOpen, ...buttonProps}: DropdownButtonProps) => { const {theme} = useTheme(); + return ( - + + ))} + + + )} + + + ); +}; + +export default Select; diff --git a/client/src/components/Design/components/Select/Select.type.ts b/client/src/components/Design/components/Select/Select.type.ts new file mode 100644 index 000000000..6f0f23d35 --- /dev/null +++ b/client/src/components/Design/components/Select/Select.type.ts @@ -0,0 +1,12 @@ +export type SelectInputProps = Omit, 'onSelect'> & { + labelText?: string; + placeholder?: string; + hasFocus?: boolean; + setHasFocus?: React.Dispatch>; +}; + +export type SelectProps = SelectInputProps & { + defaultValue?: T; + options: T[]; + onSelect: (option: T) => void; +}; diff --git a/client/src/components/Design/components/Select/SelectInput.style.ts b/client/src/components/Design/components/Select/SelectInput.style.ts new file mode 100644 index 000000000..589a7a5c4 --- /dev/null +++ b/client/src/components/Design/components/Select/SelectInput.style.ts @@ -0,0 +1,69 @@ +import {css} from '@emotion/react'; + +import {Theme} from '@theme/theme.type'; + +const getBorderStyle = (isFocus: boolean, theme: Theme) => + isFocus ? `0 0 0 1px ${theme.colors.primary} inset` : 'none'; + +export const labelTextStyle = (theme: Theme, hasFocus: boolean, hasValue: boolean) => + css([ + { + height: '1.125rem', + color: theme.colors.gray, + }, + labelTextAnimationStyle(hasFocus, hasValue), + ]); + +export const labelTextAnimationStyle = (hasFocus: boolean, hasValue: boolean) => + css({ + opacity: hasFocus || hasValue ? '1' : '0', + + transition: '0.2s', + transitionTimingFunction: 'cubic-bezier(0.7, 0.62, 0.62, 1.16)', + }); + +export const errorTextStyle = (theme: Theme, isError: boolean) => + css({ + height: '1.125rem', + color: theme.colors.onErrorContainer, + + opacity: isError ? '1' : '0', + + transition: '0.2s', + transitionTimingFunction: 'cubic-bezier(0.7, 0.62, 0.62, 1.16)', + }); + +export const inputBoxStyle = (theme: Theme, isFocus: boolean) => + css([ + { + display: 'flex', + justifyContent: 'space-between', + gap: '1rem', + padding: '0.75rem 1rem', + borderRadius: '1rem', + backgroundColor: theme.colors.lightGrayContainer, + boxSizing: 'border-box', + boxShadow: getBorderStyle(isFocus, theme), + }, + inputBoxAnimationStyle(), + ]); + +export const inputBoxAnimationStyle = () => + css({ + transition: '0.2s', + transitionTimingFunction: 'cubic-bezier(0.7, 0.62, 0.62, 1.16)', + }); + +export const inputStyle = (theme: Theme) => + css( + { + display: 'flex', + width: '100%', + color: theme.colors.black, + + '&:placeholder': { + color: theme.colors.gray, + }, + }, + theme.typography.body, + ); diff --git a/client/src/components/Design/components/Select/SelectInput.tsx b/client/src/components/Design/components/Select/SelectInput.tsx new file mode 100644 index 000000000..b2b4228ee --- /dev/null +++ b/client/src/components/Design/components/Select/SelectInput.tsx @@ -0,0 +1,59 @@ +/** @jsxImportSource @emotion/react */ +import {useState} from 'react'; + +import {useTheme} from '@components/Design/theme/HDesignProvider'; + +import Flex from '../Flex/Flex'; +import Text from '../Text/Text'; +import IconButton from '../IconButton/IconButton'; +import Chevron from '../Chevron/Chevron'; + +import {SelectInputProps} from './Select.type'; +import {inputBoxStyle, inputStyle, labelTextStyle} from './SelectInput.style'; + +const SelectInput = ({ + labelText, + placeholder, + value, + hasFocus = false, + setHasFocus, + onChange, + ...inputProps +}: SelectInputProps) => { + const {theme} = useTheme(); + const hasValue = !!value; + + const onFocusChange = () => { + if (setHasFocus) setHasFocus(prev => !prev); + }; + + return ( + + {labelText && ( + + {labelText && ( + + {labelText} + + )} + + )} + +
+ + + + +
+
+
+ ); +}; + +export default SelectInput; diff --git a/client/src/components/Design/components/Select/index.ts b/client/src/components/Design/components/Select/index.ts new file mode 100644 index 000000000..acde7daa3 --- /dev/null +++ b/client/src/components/Design/components/Select/index.ts @@ -0,0 +1 @@ +export {default as Select} from './Select'; diff --git a/client/src/components/Design/components/Select/useSelect.ts b/client/src/components/Design/components/Select/useSelect.ts new file mode 100644 index 000000000..886a1460e --- /dev/null +++ b/client/src/components/Design/components/Select/useSelect.ts @@ -0,0 +1,29 @@ +import {useRef, useState} from 'react'; + +type UseSelectProps = { + defaultValue?: T; + onSelect: (option: T) => void; +}; + +const useSelect = ({defaultValue, onSelect}: UseSelectProps) => { + const [isOpen, setIsOpen] = useState(false); + const [value, setValue] = useState(defaultValue); + + const selectRef = useRef(null); + + const handleSelect = (option: T) => { + setValue(option); + onSelect(option); + setIsOpen(false); + }; + + return { + selectRef, + isOpen, + value, + handleSelect, + setIsOpen, + }; +}; + +export default useSelect; diff --git a/client/src/components/Design/components/BankSendButton/BankSend.stories.tsx b/client/src/components/Design/components/SendButton/SendButton.stories.tsx similarity index 64% rename from client/src/components/Design/components/BankSendButton/BankSend.stories.tsx rename to client/src/components/Design/components/SendButton/SendButton.stories.tsx index 153f890d0..c2fb8c0c3 100644 --- a/client/src/components/Design/components/BankSendButton/BankSend.stories.tsx +++ b/client/src/components/Design/components/SendButton/SendButton.stories.tsx @@ -1,11 +1,11 @@ /** @jsxImportSource @emotion/react */ import type {Meta, StoryObj} from '@storybook/react'; -import BankSendButton from './BankSendButton'; +import SendButton from './SendButton'; const meta = { - title: 'Components/BankSendButton', - component: BankSendButton, + title: 'Components/SendButton', + component: SendButton, tags: ['autodocs'], parameters: { // layout: 'centered', @@ -17,9 +17,11 @@ const meta = { }, }, args: { - onBankButtonClick: () => console.log('안녕'), + isDeposited: false, + canSend: true, + onClick: () => console.log('안녕'), }, -} satisfies Meta; +} satisfies Meta; export default meta; diff --git a/client/src/components/Design/components/SendButton/SendButton.style.ts b/client/src/components/Design/components/SendButton/SendButton.style.ts new file mode 100644 index 000000000..128346893 --- /dev/null +++ b/client/src/components/Design/components/SendButton/SendButton.style.ts @@ -0,0 +1,13 @@ +import {css} from '@emotion/react'; + +import {Theme} from '@components/Design/theme/theme.type'; + +export const sendButtonStyle = (theme: Theme, disabled: boolean) => + css({ + width: '3.25rem', + height: '1.5rem', + + backgroundColor: disabled ? theme.colors.grayContainer : theme.colors.tertiary, + + borderRadius: '0.5rem', + }); diff --git a/client/src/components/Design/components/SendButton/SendButton.tsx b/client/src/components/Design/components/SendButton/SendButton.tsx new file mode 100644 index 000000000..d94b93658 --- /dev/null +++ b/client/src/components/Design/components/SendButton/SendButton.tsx @@ -0,0 +1,28 @@ +/** @jsxImportSource @emotion/react */ +import {useTheme} from '@components/Design/theme/HDesignProvider'; + +import Text from '../Text/Text'; +import Flex from '../Flex/Flex'; + +import {sendButtonStyle} from './SendButton.style'; + +type BankSendButtonProps = React.HTMLAttributes & { + isDeposited: boolean; + canSend: boolean; +}; + +const SendButton = ({isDeposited = false, canSend = true, ...buttonProps}: BankSendButtonProps) => { + const {theme} = useTheme(); + + return ( + + ); +}; + +export default SendButton; diff --git a/client/src/components/Design/components/Title/Title.style.ts b/client/src/components/Design/components/Title/Title.style.ts index bd19002d1..b5ce8a257 100644 --- a/client/src/components/Design/components/Title/Title.style.ts +++ b/client/src/components/Design/components/Title/Title.style.ts @@ -13,11 +13,13 @@ export const titleStyle = (theme: Theme) => borderRadius: '0.75rem', }); -export const titleContainerStyle = css({ - display: 'flex', - justifyContent: 'space-between', - paddingLeft: '0.5rem', -}); +export const titleContainerStyle = (hasDropdown: boolean) => + css({ + display: 'flex', + justifyContent: 'space-between', + paddingLeft: '0.5rem', + paddingRight: hasDropdown ? '0' : '0.5rem', + }); export const amountContainerStyle = css({ display: 'flex', diff --git a/client/src/components/Design/components/Title/Title.tsx b/client/src/components/Design/components/Title/Title.tsx index deab3ec4a..ebab52e56 100644 --- a/client/src/components/Design/components/Title/Title.tsx +++ b/client/src/components/Design/components/Title/Title.tsx @@ -6,12 +6,13 @@ import {useTheme} from '@theme/HDesignProvider'; import Amount from '../Amount/Amount'; -export const Title: React.FC = ({title, amount, dropdown}: TitleProps) => { +export const Title: React.FC = ({title, amount, icon, dropdown}: TitleProps) => { const {theme} = useTheme(); return (
-
+
{title} + {icon} {dropdown}
diff --git a/client/src/components/Design/components/Title/Title.type.ts b/client/src/components/Design/components/Title/Title.type.ts index cb28743f4..1e07610d2 100644 --- a/client/src/components/Design/components/Title/Title.type.ts +++ b/client/src/components/Design/components/Title/Title.type.ts @@ -3,6 +3,7 @@ export interface TitleStyleProps {} export interface TitleCustomProps { title: string; amount?: number; + icon?: React.ReactNode; dropdown?: React.ReactNode; } diff --git a/client/src/components/Design/index.tsx b/client/src/components/Design/index.tsx index 756f63b65..4440029b8 100644 --- a/client/src/components/Design/index.tsx +++ b/client/src/components/Design/index.tsx @@ -26,6 +26,7 @@ import DepositToggle from './components/DepositToggle/DepositToggle'; import Amount from './components/Amount/Amount'; import Dropdown from './components/Dropdown/Dropdown'; import DropdownButton from './components/Dropdown/DropdownButton'; +import {Select} from './components/Select'; export { HDesignProvider, @@ -57,4 +58,5 @@ export { Dropdown, DropdownButton, useTheme, + Select, }; diff --git a/client/src/components/Design/token/zIndex.ts b/client/src/components/Design/token/zIndex.ts index 60ec5a6cd..fc32d97bc 100644 --- a/client/src/components/Design/token/zIndex.ts +++ b/client/src/components/Design/token/zIndex.ts @@ -12,6 +12,8 @@ const NUMBER_KEYBOARD_BOTTOM_SHEET = FIXED_BUTTON + ABOVE; const BOTTOM_SHEET_DIMMED_LAYER = NUMBER_KEYBOARD_BOTTOM_SHEET + ABOVE; const BOTTOM_SHEET_CONTAINER = BOTTOM_SHEET_DIMMED_LAYER + ABOVE; const TOAST = BOTTOM_SHEET_CONTAINER + ABOVE; +const SELECT_OPTION = ABOVE; +const DROPDOWN_LIST = BASE + ABOVE; export const ZINDEX = { bottomSheetDimmedLayer: BOTTOM_SHEET_DIMMED_LAYER, @@ -23,6 +25,8 @@ export const ZINDEX = { tabIndicator: TAB_INDICATOR, tabText: TAB_TEXT, toast: TOAST, + selectOption: SELECT_OPTION, + dropdownList: DROPDOWN_LIST, } as const; type ZIndexKeys = @@ -34,6 +38,8 @@ type ZIndexKeys = | 'navBackgroundColor' | 'tabText' | 'tabIndicator' - | 'toast'; + | 'toast' + | 'selectOption' + | 'dropdownList'; export type ZIndexTokens = Record; diff --git a/client/src/components/Footer/Footer.style.ts b/client/src/components/Footer/Footer.style.ts new file mode 100644 index 000000000..fa67ded51 --- /dev/null +++ b/client/src/components/Footer/Footer.style.ts @@ -0,0 +1,26 @@ +import {css} from '@emotion/react'; + +import {Theme} from '@components/Design/theme/theme.type'; +import TYPOGRAPHY from '@components/Design/token/typography'; + +export const footerStyle = (theme: Theme) => + css({ + display: 'flex', + flexDirection: 'column', + alignItems: 'center', + gap: '0.625rem', + marginTop: 'auto', + marginBottom: '1.25rem', + color: theme.colors.gray, + + '.footer-link-bundle': { + display: 'flex', + flexDirection: 'row', + gap: '0.625rem', + }, + + a: { + borderBottom: `1px solid ${theme.colors.gray}`, + ...TYPOGRAPHY.tiny, + }, + }); diff --git a/client/src/components/Footer/Footer.tsx b/client/src/components/Footer/Footer.tsx new file mode 100644 index 000000000..b75be7ed9 --- /dev/null +++ b/client/src/components/Footer/Footer.tsx @@ -0,0 +1,29 @@ +import {Link} from 'react-router-dom'; + +import {useTheme, Text} from '@components/Design'; + +import {footerStyle} from './Footer.style'; +import {FooterProps} from './Footer.type'; + +const Footer: React.FC = () => { + const {theme} = useTheme(); + const year = new Date().getFullYear(); + + return ( +
+
+ + 행동대장 소개 + + {/* TODO: (@soha) 문의 페이지 링크로 꼭!! 추후 수정 */} + 문의하기 + 이메일 +
+ + © {year} Copyright 행동대장 + +
+ ); +}; + +export default Footer; diff --git a/client/src/components/Footer/Footer.type.ts b/client/src/components/Footer/Footer.type.ts new file mode 100644 index 000000000..91f32e7f3 --- /dev/null +++ b/client/src/components/Footer/Footer.type.ts @@ -0,0 +1,7 @@ +export interface FooterStyleProps {} + +export interface FooterCustomProps {} + +export type FooterOptionProps = FooterStyleProps & FooterCustomProps; + +export type FooterProps = React.ComponentProps<'footer'> & FooterOptionProps; diff --git a/client/src/components/Footer/index.ts b/client/src/components/Footer/index.ts new file mode 100644 index 000000000..6a5d76c69 --- /dev/null +++ b/client/src/components/Footer/index.ts @@ -0,0 +1 @@ +export {default as Footer} from './Footer'; diff --git a/client/src/components/Loader/EventLoader.tsx b/client/src/components/Loader/EventLoader.tsx index c79337319..f4ef9fd07 100644 --- a/client/src/components/Loader/EventLoader.tsx +++ b/client/src/components/Loader/EventLoader.tsx @@ -1,9 +1,13 @@ import {useQueries} from '@tanstack/react-query'; +import {useEffect} from 'react'; import {requestGetEvent} from '@apis/request/event'; import {requestGetReports} from '@apis/request/report'; import {requestGetSteps} from '@apis/request/step'; import {WithErrorHandlingStrategy} from '@errors/RequestGetError'; +import {requestGetAllMembers} from '@apis/request/member'; + +import {useTotalExpenseAmountStore} from '@store/totalExpenseAmountStore'; import getEventIdByUrl from '@utils/getEventIdByUrl'; @@ -23,9 +27,23 @@ const EventLoader = ({children, ...props}: React.PropsWithChildren requestGetSteps({eventId, ...props}), }, + { + queryKey: [QUERY_KEYS.allMembers], + queryFn: () => requestGetAllMembers({eventId, ...props}), + }, ], }); + const {updateTotalExpenseAmount} = useTotalExpenseAmountStore(); + + const stepsData = queries[2]; + + useEffect(() => { + if (stepsData.isSuccess && stepsData.data) { + updateTotalExpenseAmount(stepsData.data); + } + }, [stepsData.data, stepsData.isSuccess, updateTotalExpenseAmount]); + const isLoading = queries.some(query => query.isLoading === true); return !isLoading && children; diff --git a/client/src/components/ShareEventButton/DesktopShareEventButton.tsx b/client/src/components/ShareEventButton/DesktopShareEventButton.tsx new file mode 100644 index 000000000..cf7408ad3 --- /dev/null +++ b/client/src/components/ShareEventButton/DesktopShareEventButton.tsx @@ -0,0 +1,25 @@ +import toast from '@hooks/useToast/toast'; + +import {Button} from '@components/Design'; + +type DesktopShareEventButtonProps = React.PropsWithChildren> & { + onCopy: () => Promise; +}; + +const DesktopShareEventButton = ({onCopy, children, ...buttonProps}: DesktopShareEventButtonProps) => { + const copyAndToast = async () => { + await onCopy(); + toast.confirm('링크가 복사되었어요 :) \n참여자들에게 링크를 공유해 주세요!', { + showingTime: 3000, + position: 'bottom', + }); + }; + + return ( + + ); +}; + +export default DesktopShareEventButton; diff --git a/client/src/components/ShareEventButton/MobileShareEventButton.tsx b/client/src/components/ShareEventButton/MobileShareEventButton.tsx new file mode 100644 index 000000000..368dd611a --- /dev/null +++ b/client/src/components/ShareEventButton/MobileShareEventButton.tsx @@ -0,0 +1,29 @@ +import toast from '@hooks/useToast/toast'; + +import {Dropdown, DropdownButton} from '@components/Design'; + +type MobileShareEventButtonProps = { + copyShare: () => Promise; + kakaoShare: () => void; +}; + +const MobileShareEventButton = ({copyShare, kakaoShare}: MobileShareEventButtonProps) => { + const copyAndToast = async () => { + await copyShare(); + toast.confirm('링크가 복사되었어요 :) \n참여자들에게 링크를 공유해 주세요!', { + showingTime: 3000, + position: 'bottom', + }); + }; + + return ( +
+ + + + +
+ ); +}; + +export default MobileShareEventButton; diff --git a/client/src/components/ShareEventButton/ShareEventButton.tsx b/client/src/components/ShareEventButton/ShareEventButton.tsx deleted file mode 100644 index 015200be4..000000000 --- a/client/src/components/ShareEventButton/ShareEventButton.tsx +++ /dev/null @@ -1,62 +0,0 @@ -import CopyToClipboard from 'react-copy-to-clipboard'; -import {useNavigate} from 'react-router-dom'; - -import toast from '@hooks/useToast/toast'; -import {Event} from 'types/serviceType'; - -import useShareEvent from '@hooks/useShareEvent'; - -import {Button} from '@components/Design'; - -import {isMobileDevice} from '@utils/detectDevice'; -import getDeletedLastPath from '@utils/getDeletedLastPath'; - -type ShareEventButtonProps = { - eventOutline: Event; -}; - -const ShareEventButton = ({eventOutline}: ShareEventButtonProps) => { - const {eventName, bankName, accountNumber} = eventOutline; - const navigate = useNavigate(); - - const isMobile = isMobileDevice(); - const {shareText, onShareButtonClick} = useShareEvent(eventName, isMobile); - - const induceBankInfoBeforeShare = () => { - if (bankName === '' || accountNumber === '') { - toast.confirm('잠깐! 정산을 초대하기 전에\n계좌를 등록해주세요', { - showingTime: 3000, - position: 'bottom', - }); - - const navigatePath = `${getDeletedLastPath(location.pathname)}/admin/edit`; - - navigate(navigatePath); - return; - } - - onShareButtonClick(); - }; - - return isMobile ? ( - - ) : ( - - toast.confirm('링크가 복사되었어요 :) \n참여자들에게 링크를 공유해 주세요!', { - showingTime: 3000, - position: 'bottom', - }) - } - > - - - ); -}; - -export default ShareEventButton; diff --git a/client/src/components/ShareEventButton/index.ts b/client/src/components/ShareEventButton/index.ts index 27b5883aa..efadc061c 100644 --- a/client/src/components/ShareEventButton/index.ts +++ b/client/src/components/ShareEventButton/index.ts @@ -1 +1,2 @@ -export {default as ShareEventButton} from './ShareEventButton'; +export {default as DesktopShareEventButton} from './DesktopShareEventButton'; +export {default as MobileShareEventButton} from './MobileShareEventButton'; diff --git a/client/src/components/StepList/Step.tsx b/client/src/components/StepList/Step.tsx index 997cf03c7..aead2f37c 100644 --- a/client/src/components/StepList/Step.tsx +++ b/client/src/components/StepList/Step.tsx @@ -20,7 +20,7 @@ const Step = ({step, isAdmin}: Prop) => { const navigate = useNavigate(); const eventId = getEventIdByUrl(); const handleClickStep = (bill: Bill) => { - if (isAdmin) navigate(`/event/${eventId}/edit-bill`, {state: {bill}}); + if (isAdmin) navigate(`/event/${eventId}/admin/edit-bill`, {state: {bill}}); }; return ( diff --git a/client/src/constants/bank.ts b/client/src/constants/bank.ts index b730adb44..1024a1249 100644 --- a/client/src/constants/bank.ts +++ b/client/src/constants/bank.ts @@ -1,32 +1,33 @@ type Bank = { name: string; + displayName: string; iconPosition: string; }; const BANKS: Bank[] = [ - {name: '우리은행', iconPosition: '-10px -10px'}, - {name: '제일은행', iconPosition: '-110px -10px'}, - {name: '신한은행', iconPosition: '-10px -110px'}, - {name: 'KB국민은행', iconPosition: '-110px -110px'}, - {name: '하나은행', iconPosition: '-210px -10px'}, - {name: '시티은행', iconPosition: '-210px -110px'}, - {name: 'IM뱅크', iconPosition: '-10px -210px'}, - {name: '부산은행', iconPosition: '-110px -210px'}, - {name: '경남은행', iconPosition: '-210px -210px'}, - {name: '광주은행', iconPosition: '-310px -10px'}, - {name: '전북은행', iconPosition: '-310px -110px'}, - {name: '제주은행', iconPosition: '-310px -210px'}, - {name: '기업은행', iconPosition: '-10px -310px'}, - {name: '산업은행', iconPosition: '-110px -310px'}, - {name: '수협은행', iconPosition: '-210px -310px'}, - {name: '농협은행', iconPosition: '-310px -310px'}, - {name: '새마을금고', iconPosition: '-410px -10px'}, - {name: '우체국은행', iconPosition: '-410px -110px'}, - {name: '신협은행', iconPosition: '-410px -210px'}, - {name: 'SBI저축', iconPosition: '-410px -310px'}, - {name: '카카오뱅크', iconPosition: '-10px -410px'}, - {name: '토스뱅크', iconPosition: '-110px -410px'}, - {name: '케이뱅크', iconPosition: '-210px -410px'}, + {name: '우리은행', displayName: '우리은행', iconPosition: '-10px -10px'}, + {name: 'SC제일은행', displayName: '제일은행', iconPosition: '-110px -10px'}, + {name: '신한은행', displayName: '신한은행', iconPosition: '-10px -110px'}, + {name: 'KB국민은행', displayName: 'KB국민은행', iconPosition: '-110px -110px'}, + {name: '하나은행', displayName: '하나은행', iconPosition: '-210px -10px'}, + {name: '씨티은행', displayName: '씨티은행', iconPosition: '-210px -110px'}, + {name: 'IM뱅크', displayName: 'IM뱅크', iconPosition: '-10px -210px'}, + {name: '부산은행', displayName: '부산은행', iconPosition: '-110px -210px'}, + {name: '경남은행', displayName: '경남은행', iconPosition: '-210px -210px'}, + {name: '광주은행', displayName: '광주은행', iconPosition: '-310px -10px'}, + {name: '전북은행', displayName: '전북은행', iconPosition: '-310px -110px'}, + {name: '제주은행', displayName: '제주은행', iconPosition: '-310px -210px'}, + {name: 'IBK기업은행', displayName: '기업은행', iconPosition: '-10px -310px'}, + {name: 'KDB산업은행', displayName: '산업은행', iconPosition: '-110px -310px'}, + {name: '수협은행', displayName: '수협은행', iconPosition: '-210px -310px'}, + {name: 'NH농협', displayName: '농협은행', iconPosition: '-310px -310px'}, + {name: '새마을금고', displayName: '새마을금고', iconPosition: '-410px -10px'}, + {name: '우체국은행', displayName: '우체국은행', iconPosition: '-410px -110px'}, + {name: '신협은행', displayName: '신협은행', iconPosition: '-410px -210px'}, + {name: 'SBI저축', displayName: 'SBI저축', iconPosition: '-410px -310px'}, + {name: '카카오뱅크', displayName: '카카오뱅크', iconPosition: '-10px -410px'}, + {name: '토스뱅크', displayName: '토스뱅크', iconPosition: '-110px -410px'}, + {name: '케이뱅크', displayName: '케이뱅크', iconPosition: '-210px -410px'}, ]; export default BANKS; diff --git a/client/src/constants/queryKeys.ts b/client/src/constants/queryKeys.ts index b0835cfd5..0c7d4e50b 100644 --- a/client/src/constants/queryKeys.ts +++ b/client/src/constants/queryKeys.ts @@ -5,6 +5,7 @@ const QUERY_KEYS = { currentMembers: 'currentMembers', reports: 'reports', billDetails: 'billDetails', + images: 'images', }; export default QUERY_KEYS; diff --git a/client/src/constants/routerUrls.ts b/client/src/constants/routerUrls.ts index 6be509841..e4cecc9d5 100644 --- a/client/src/constants/routerUrls.ts +++ b/client/src/constants/routerUrls.ts @@ -2,11 +2,13 @@ export const ROUTER_URLS = { main: '/', createEvent: '/event/create', event: '/event', - eventLogin: '/event/:eventId/login', eventManage: '/event/:eventId/admin', home: '/event/:eventId/home', member: '/event/:eventId/admin/member', - addBill: '/event/:eventId/add-bill', - editBill: '/event/:eventId/edit-bill', + addBill: '/event/:eventId/admin/add-bill', + editBill: '/event/:eventId/admin/edit-bill', eventEdit: 'event/:eventId/admin/edit', + images: '/event/:eventId/images', + addImages: '/event/:eventId/admin/add-images', + send: 'event/:eventId/:memberId/send', }; diff --git a/client/src/constants/sessionStorageKeys.ts b/client/src/constants/sessionStorageKeys.ts new file mode 100644 index 000000000..da9097d5d --- /dev/null +++ b/client/src/constants/sessionStorageKeys.ts @@ -0,0 +1,5 @@ +const SESSION_STORAGE_KEYS = { + closeAccountBannerByEventToken: (eventToken: string) => `closeAccountBanner-${eventToken}`, +} as const; + +export default SESSION_STORAGE_KEYS; diff --git a/client/src/hooks/queries/auth/useRequestPostAuthentication.ts b/client/src/hooks/queries/auth/useRequestPostAuthentication.ts index b44cfcafc..12e1a6e0e 100644 --- a/client/src/hooks/queries/auth/useRequestPostAuthentication.ts +++ b/client/src/hooks/queries/auth/useRequestPostAuthentication.ts @@ -1,22 +1,18 @@ import {useMutation} from '@tanstack/react-query'; -import {useNavigate} from 'react-router-dom'; import {requestPostAuthentication} from '@apis/request/auth'; -import getEventIdByUrl from '@utils/getEventIdByUrl'; +import {useAuthStore} from '@store/authStore'; -import {ROUTER_URLS} from '@constants/routerUrls'; +import getEventIdByUrl from '@utils/getEventIdByUrl'; const useRequestPostAuthentication = () => { const eventId = getEventIdByUrl(); - const navigate = useNavigate(); + const {updateAuth} = useAuthStore(); const {mutate, ...rest} = useMutation({ mutationFn: () => requestPostAuthentication({eventId}), - onError: () => { - // 에러가 발생하면 로그인 페이지로 리다이렉트 - navigate(`${ROUTER_URLS.event}/${eventId}/login`); - }, + onSuccess: () => updateAuth(true), }); return { diff --git a/client/src/hooks/queries/auth/useRequestPostLogin.ts b/client/src/hooks/queries/auth/useRequestPostLogin.ts index f2f0d7c4c..203e1c60b 100644 --- a/client/src/hooks/queries/auth/useRequestPostLogin.ts +++ b/client/src/hooks/queries/auth/useRequestPostLogin.ts @@ -1,21 +1,18 @@ import {useMutation} from '@tanstack/react-query'; -import {useNavigate} from 'react-router-dom'; import {RequestPostToken, requestPostToken} from '@apis/request/auth'; -import getEventIdByUrl from '@utils/getEventIdByUrl'; +import {useAuthStore} from '@store/authStore'; -import {ROUTER_URLS} from '@constants/routerUrls'; +import getEventIdByUrl from '@utils/getEventIdByUrl'; const useRequestPostLogin = () => { const eventId = getEventIdByUrl(); - const navigate = useNavigate(); + const {updateAuth} = useAuthStore(); const {mutate, ...rest} = useMutation({ mutationFn: ({password}: RequestPostToken) => requestPostToken({eventId, password}), - onSuccess: () => { - navigate(`${ROUTER_URLS.event}/${eventId}/admin`); - }, + onSuccess: () => updateAuth(true), }); return {postLogin: mutate, ...rest}; diff --git a/client/src/hooks/queries/bill/useRequestDeleteBill.ts b/client/src/hooks/queries/bill/useRequestDeleteBill.ts index 68083d52b..57e41c1db 100644 --- a/client/src/hooks/queries/bill/useRequestDeleteBill.ts +++ b/client/src/hooks/queries/bill/useRequestDeleteBill.ts @@ -17,6 +17,7 @@ const useRequestDeleteBill = () => { onSuccess: () => { queryClient.invalidateQueries({queryKey: [QUERY_KEYS.steps]}); queryClient.invalidateQueries({queryKey: [QUERY_KEYS.reports]}); + queryClient.invalidateQueries({queryKey: [QUERY_KEYS.currentMembers]}); }, }); diff --git a/client/src/hooks/queries/bill/useRequestPostBill.ts b/client/src/hooks/queries/bill/useRequestPostBill.ts index a9c7bce62..a5caa3d63 100644 --- a/client/src/hooks/queries/bill/useRequestPostBill.ts +++ b/client/src/hooks/queries/bill/useRequestPostBill.ts @@ -15,6 +15,7 @@ const useRequestPostBill = () => { onSuccess: () => { queryClient.invalidateQueries({queryKey: [QUERY_KEYS.steps]}); queryClient.invalidateQueries({queryKey: [QUERY_KEYS.reports]}); + queryClient.invalidateQueries({queryKey: [QUERY_KEYS.currentMembers]}); }, }); diff --git a/client/src/hooks/queries/bill/useRequestPutBill.ts b/client/src/hooks/queries/bill/useRequestPutBill.ts index 88a47f6bf..23f810ef6 100644 --- a/client/src/hooks/queries/bill/useRequestPutBill.ts +++ b/client/src/hooks/queries/bill/useRequestPutBill.ts @@ -17,6 +17,7 @@ const useRequestPutBill = () => { onSuccess: () => { queryClient.invalidateQueries({queryKey: [QUERY_KEYS.steps]}); queryClient.invalidateQueries({queryKey: [QUERY_KEYS.reports]}); + queryClient.invalidateQueries({queryKey: [QUERY_KEYS.currentMembers]}); }, }); diff --git a/client/src/hooks/queries/bill/useRequestPutBillDetails.ts b/client/src/hooks/queries/bill/useRequestPutBillDetails.ts index 9e9bb3e0f..ae2025bcd 100644 --- a/client/src/hooks/queries/bill/useRequestPutBillDetails.ts +++ b/client/src/hooks/queries/bill/useRequestPutBillDetails.ts @@ -18,6 +18,7 @@ const useRequestPutBillDetails = ({billId}: WithBillId) => { onSuccess: () => { queryClient.invalidateQueries({queryKey: [QUERY_KEYS.steps]}); queryClient.invalidateQueries({queryKey: [QUERY_KEYS.reports]}); + queryClient.invalidateQueries({queryKey: [QUERY_KEYS.currentMembers]}); queryClient.removeQueries({queryKey: [QUERY_KEYS.billDetails, billId]}); }, // onMutate: async (newMembers: MemberReportInAction[]) => { diff --git a/client/src/hooks/queries/event/useRequestPostEvent.ts b/client/src/hooks/queries/event/useRequestPostEvent.ts index d59f6b913..5fbf37bdb 100644 --- a/client/src/hooks/queries/event/useRequestPostEvent.ts +++ b/client/src/hooks/queries/event/useRequestPostEvent.ts @@ -1,10 +1,17 @@ -import {useMutation} from '@tanstack/react-query'; +import {useMutation, useQueryClient} from '@tanstack/react-query'; import {RequestPostEvent, requestPostEvent} from '@apis/request/event'; +import QUERY_KEYS from '@constants/queryKeys'; + const useRequestPostEvent = () => { + const queryClient = useQueryClient(); + const {mutate, mutateAsync, ...rest} = useMutation({ mutationFn: ({eventName, password}: RequestPostEvent) => requestPostEvent({eventName, password}), + onSuccess: () => { + queryClient.removeQueries(); + }, }); // 실행 순서를 await으로 보장하기 위해 mutateAsync 사용 diff --git a/client/src/hooks/queries/images/useRequestDeleteImages.ts b/client/src/hooks/queries/images/useRequestDeleteImages.ts new file mode 100644 index 000000000..a6ecc49ad --- /dev/null +++ b/client/src/hooks/queries/images/useRequestDeleteImages.ts @@ -0,0 +1,23 @@ +import {useMutation, useQueryClient} from '@tanstack/react-query'; + +import {requestDeleteImage, RequestDeleteImage} from '@apis/request/images'; + +import getEventIdByUrl from '@utils/getEventIdByUrl'; + +import QUERY_KEYS from '@constants/queryKeys'; + +const useRequestDeleteImage = () => { + const eventId = getEventIdByUrl(); + const queryClient = useQueryClient(); + + const {mutate, ...rest} = useMutation({ + mutationFn: ({imageId}: RequestDeleteImage) => requestDeleteImage({eventId, imageId}), + onSuccess: () => { + queryClient.invalidateQueries({queryKey: [QUERY_KEYS.images]}); + }, + }); + + return {deleteImage: mutate, ...rest}; +}; + +export default useRequestDeleteImage; diff --git a/client/src/hooks/queries/images/useRequestGetImages.ts b/client/src/hooks/queries/images/useRequestGetImages.ts new file mode 100644 index 000000000..e976660f1 --- /dev/null +++ b/client/src/hooks/queries/images/useRequestGetImages.ts @@ -0,0 +1,20 @@ +import {useQuery} from '@tanstack/react-query'; + +import {requestGetImages} from '@apis/request/images'; + +import getEventIdByUrl from '@utils/getEventIdByUrl'; + +import QUERY_KEYS from '@constants/queryKeys'; + +const useRequestGetImages = () => { + const eventId = getEventIdByUrl(); + + const {data, ...rest} = useQuery({ + queryKey: [QUERY_KEYS.images], + queryFn: () => requestGetImages({eventId}), + }); + + return {images: data?.images ?? [], ...rest}; +}; + +export default useRequestGetImages; diff --git a/client/src/hooks/queries/images/useRequestPostImages.ts b/client/src/hooks/queries/images/useRequestPostImages.ts new file mode 100644 index 000000000..fa49463e7 --- /dev/null +++ b/client/src/hooks/queries/images/useRequestPostImages.ts @@ -0,0 +1,23 @@ +import {useMutation, useQueryClient} from '@tanstack/react-query'; + +import {requestPostImages, RequestPostImages} from '@apis/request/images'; + +import getEventIdByUrl from '@utils/getEventIdByUrl'; + +import QUERY_KEYS from '@constants/queryKeys'; + +const useRequestPostImages = () => { + const eventId = getEventIdByUrl(); + const queryClient = useQueryClient(); + + const {mutateAsync, ...rest} = useMutation({ + mutationFn: ({formData}: RequestPostImages) => requestPostImages({eventId, formData}), + onSuccess: () => { + queryClient.removeQueries({queryKey: [QUERY_KEYS.images]}); + }, + }); + + return {postImages: mutateAsync, ...rest}; +}; + +export default useRequestPostImages; diff --git a/client/src/hooks/queries/member/useRequestDeleteMember.ts b/client/src/hooks/queries/member/useRequestDeleteMember.ts index 770218e6b..2003f8650 100644 --- a/client/src/hooks/queries/member/useRequestDeleteMember.ts +++ b/client/src/hooks/queries/member/useRequestDeleteMember.ts @@ -15,6 +15,7 @@ const useRequestDeleteMember = () => { onSuccess: () => { queryClient.invalidateQueries({queryKey: [QUERY_KEYS.steps]}); queryClient.invalidateQueries({queryKey: [QUERY_KEYS.allMembers]}); + queryClient.invalidateQueries({queryKey: [QUERY_KEYS.currentMembers]}); queryClient.removeQueries({queryKey: [QUERY_KEYS.billDetails]}); queryClient.invalidateQueries({queryKey: [QUERY_KEYS.reports]}); }, diff --git a/client/src/hooks/queries/member/useRequestPostMembers.ts b/client/src/hooks/queries/member/useRequestPostMembers.ts index bddb9a322..124620e0b 100644 --- a/client/src/hooks/queries/member/useRequestPostMembers.ts +++ b/client/src/hooks/queries/member/useRequestPostMembers.ts @@ -16,6 +16,7 @@ const useRequestPostMembers = () => { queryClient.invalidateQueries({queryKey: [QUERY_KEYS.allMembers]}); queryClient.invalidateQueries({queryKey: [QUERY_KEYS.steps]}); queryClient.invalidateQueries({queryKey: [QUERY_KEYS.reports]}); + queryClient.invalidateQueries({queryKey: [QUERY_KEYS.currentMembers]}); return responseData; }, }); diff --git a/client/src/hooks/queries/member/useRequestPutMembers.ts b/client/src/hooks/queries/member/useRequestPutMembers.ts index 69df92c4c..9b71b389b 100644 --- a/client/src/hooks/queries/member/useRequestPutMembers.ts +++ b/client/src/hooks/queries/member/useRequestPutMembers.ts @@ -15,6 +15,7 @@ const useRequestPutMembers = () => { onSuccess: () => { queryClient.invalidateQueries({queryKey: [QUERY_KEYS.steps]}); queryClient.invalidateQueries({queryKey: [QUERY_KEYS.allMembers]}); + queryClient.invalidateQueries({queryKey: [QUERY_KEYS.currentMembers]}); queryClient.removeQueries({queryKey: [QUERY_KEYS.billDetails]}); queryClient.invalidateQueries({queryKey: [QUERY_KEYS.reports]}); }, diff --git a/client/src/hooks/queries/step/useRequestGetSteps.ts b/client/src/hooks/queries/step/useRequestGetSteps.ts index 7b70bacef..54e1ae831 100644 --- a/client/src/hooks/queries/step/useRequestGetSteps.ts +++ b/client/src/hooks/queries/step/useRequestGetSteps.ts @@ -1,30 +1,20 @@ import {useQuery} from '@tanstack/react-query'; -import {useEffect} from 'react'; import {requestGetSteps} from '@apis/request/step'; import {WithErrorHandlingStrategy} from '@errors/RequestGetError'; -import {useTotalExpenseAmountStore} from '@store/totalExpenseAmountStore'; - import getEventIdByUrl from '@utils/getEventIdByUrl'; import QUERY_KEYS from '@constants/queryKeys'; const useRequestGetSteps = ({...props}: WithErrorHandlingStrategy | null = {}) => { const eventId = getEventIdByUrl(); - const {updateTotalExpenseAmount} = useTotalExpenseAmountStore(); const queryResult = useQuery({ queryKey: [QUERY_KEYS.steps], queryFn: () => requestGetSteps({eventId, ...props}), }); - useEffect(() => { - if (queryResult.isSuccess && queryResult.data) { - updateTotalExpenseAmount(queryResult.data); - } - }, [queryResult.data, queryResult.isSuccess, updateTotalExpenseAmount]); - return { steps: queryResult.data ?? [], ...queryResult, diff --git a/client/src/hooks/useAddImagesPage.ts b/client/src/hooks/useAddImagesPage.ts new file mode 100644 index 000000000..4bc3f62de --- /dev/null +++ b/client/src/hooks/useAddImagesPage.ts @@ -0,0 +1,85 @@ +import {useEffect, useRef, useState} from 'react'; +import {useNavigate} from 'react-router-dom'; + +import {ImageFile} from 'types/serviceType'; + +import getEventIdByUrl from '@utils/getEventIdByUrl'; + +import useRequestGetImages from './queries/images/useRequestGetImages'; +import useRequestPostImages from './queries/images/useRequestPostImages'; +import useRequestDeleteImage from './queries/images/useRequestDeleteImages'; + +type LoadedImage = ImageFile; +type AddedImage = File; + +const useAddImagesPage = () => { + const [images, setImages] = useState>([]); + const [isPrevImageDeleted, setIsPrevImageDeleted] = useState(false); + const addedImages = images.filter(image => image instanceof File); + const {images: prevImages, isSuccess} = useRequestGetImages(); + const urls = images.map(image => { + if (image instanceof File) { + return URL.createObjectURL(image); + } else { + return image.url; + } + }); + + const fileInputRef = useRef(null); + const navigate = useNavigate(); + const eventId = getEventIdByUrl(); + + const {postImages, isPending} = useRequestPostImages(); + const {deleteImage} = useRequestDeleteImage(); + + useEffect(() => { + if (!isSuccess) return; + setImages([...prevImages, ...addedImages]); + }, [isSuccess, prevImages]); + + const handleChangeImages = (event: React.ChangeEvent) => { + setImages(prev => [...prev, ...(event.target.files ? Array.from(event.target.files) : [])]); + }; + const handleDeleteImage = (index: number) => { + if ('url' in images[index]) { + //TODO: (@Todari): 추후 낙관적 업데이트 적용 + deleteImage({ + imageId: images[index].id, + }); + setIsPrevImageDeleted(true); + } else { + setImages(prev => prev.filter((_, idx) => idx !== index)); + if (fileInputRef.current) { + fileInputRef.current.value = ''; + } + } + }; + + const canSubmit = addedImages.length !== 0 || isPrevImageDeleted; + + const submitImages = async () => { + if (addedImages.length !== 0) { + const formData = new FormData(); + + for (let i = 0; i < addedImages.length; i++) { + formData.append('images', addedImages[i], addedImages[i].name); + } + + await postImages({formData}); + } + + navigate(`/event/${eventId}/admin`); + }; + + useEffect(() => { + document.body.style.overflowX = 'hidden'; + + return () => { + document.body.style.overflowX = 'auto'; + }; + }, []); + + return {fileInputRef, handleChangeImages, urls, handleDeleteImage, isPending, canSubmit, submitImages}; +}; + +export default useAddImagesPage; diff --git a/client/src/hooks/useAdminPage.ts b/client/src/hooks/useAdminPage.ts new file mode 100644 index 000000000..54794da08 --- /dev/null +++ b/client/src/hooks/useAdminPage.ts @@ -0,0 +1,55 @@ +import {useOutletContext} from 'react-router-dom'; +import {useEffect, useState} from 'react'; + +import {EventPageContextProps} from '@pages/EventPage/EventPageLayout'; + +import {useTotalExpenseAmountStore} from '@store/totalExpenseAmountStore'; + +import getEventIdByUrl from '@utils/getEventIdByUrl'; +import SessionStorage from '@utils/SessionStorage'; + +import SESSION_STORAGE_KEYS from '@constants/sessionStorageKeys'; + +import useRequestGetSteps from './queries/step/useRequestGetSteps'; +import useRequestPostAuthentication from './queries/auth/useRequestPostAuthentication'; + +const useAdminPage = () => { + const eventId = getEventIdByUrl(); + const {isAdmin, eventName, bankName, accountNumber} = useOutletContext(); + + const {totalExpenseAmount} = useTotalExpenseAmountStore(); + + const {steps} = useRequestGetSteps(); + const {postAuthenticate} = useRequestPostAuthentication(); + + useEffect(() => { + postAuthenticate(); + }, [postAuthenticate]); + + // session storage에 배너를 지웠는지 관리 + const storageValue = SessionStorage.get(SESSION_STORAGE_KEYS.closeAccountBannerByEventToken(eventId)); + const isClosed = storageValue !== null && storageValue === true; + + const [isShowBanner, setIsShowBanner] = useState((bankName === '' || accountNumber === '') && !isClosed); + + useEffect(() => { + setIsShowBanner((bankName === '' || accountNumber === '') && !isClosed); + }, [bankName, accountNumber, isShowBanner]); + + const onDelete = () => { + setIsShowBanner(false); + SessionStorage.set(SESSION_STORAGE_KEYS.closeAccountBannerByEventToken(eventId), true); + }; + + return { + eventId, + isAdmin, + eventName, + totalExpenseAmount, + isShowBanner, + onDelete, + steps, + }; +}; + +export default useAdminPage; diff --git a/client/src/hooks/useAmplitude.ts b/client/src/hooks/useAmplitude.ts new file mode 100644 index 000000000..fd13c75ca --- /dev/null +++ b/client/src/hooks/useAmplitude.ts @@ -0,0 +1,83 @@ +import {useAmplitudeStore} from '@store/amplitudeStore'; + +import detectBrowser from '@utils/detectBrowser'; + +type EventUniqueData = { + eventName: string; + eventToken: string; +}; + +type ShareMethod = 'link' | 'kakao'; + +export type EventSummary = EventUniqueData & { + totalExpenseAmount: number; // 총 지출금액 + allMembersCount: number; // 행사에 참여한 총 인원 + billsCount: number; // 총 지출내역 수 + isAdmin: boolean; // 관리자 여부 + shareMethod: ShareMethod; // 공유 방법 +}; + +type SendMethod = 'clipboard' | 'toss' | 'kakaopay'; + +type SendMoneyData = EventUniqueData & { + sendMethod: SendMethod; + amount: number; +}; + +const useAmplitude = () => { + const {amplitude} = useAmplitudeStore(); + const domainEnv = process.env.NODE_ENV; + + const track = (eventName: string, eventProps: Record = {}) => { + amplitude.track(eventName, { + domain: domainEnv, + browser: detectBrowser(), + ...eventProps, + }); + }; + + const trackStartCreateEvent = () => { + track('정산 시작하기 버튼 클릭'); + }; + + const trackCompleteCreateEvent = (eventUniqueData: EventUniqueData) => { + track('이벤트 생성 완료', { + ...eventUniqueData, + }); + }; + + const trackShareEvent = (eventSummary: EventSummary) => { + track('이벤트 초대 클릭', { + ...eventSummary, + }); + }; + + const trackAddBillStart = (eventUniqueData: EventUniqueData) => { + track('지출내역 추가 시작', { + ...eventUniqueData, + }); + }; + + const trackAddBillEnd = (eventUniqueData: EventUniqueData) => { + track('지출내역 추가 완료', { + ...eventUniqueData, + }); + }; + + const trackSendMoney = (sendMoneyData: SendMoneyData) => { + track('송금 버튼 클릭', { + ...sendMoneyData, + }); + }; + + return { + trackStartCreateEvent, + trackCompleteCreateEvent, + trackShareEvent, + trackAddBillStart, + trackAddBillEnd, + trackSendMoney, + }; +}; + +export default useAmplitude; diff --git a/client/src/hooks/useEventPageLayout.ts b/client/src/hooks/useEventPageLayout.ts index 57fea80d2..a443981e4 100644 --- a/client/src/hooks/useEventPageLayout.ts +++ b/client/src/hooks/useEventPageLayout.ts @@ -1,29 +1,41 @@ -import {useMatch} from 'react-router-dom'; +import {useAuthStore} from '@store/authStore'; +import {useTotalExpenseAmountStore} from '@store/totalExpenseAmountStore'; import getEventIdByUrl from '@utils/getEventIdByUrl'; -import {ROUTER_URLS} from '@constants/routerUrls'; - import useRequestGetEvent from './queries/event/useRequestGetEvent'; +import useRequestGetAllMembers from './queries/member/useRequestGetAllMembers'; +import useRequestGetSteps from './queries/step/useRequestGetSteps'; const useEventPageLayout = () => { const eventId = getEventIdByUrl(); const {eventName, bankName, accountNumber} = useRequestGetEvent(); + const {isAdmin} = useAuthStore(); + const {totalExpenseAmount} = useTotalExpenseAmountStore(); + const {members} = useRequestGetAllMembers(); + const {steps} = useRequestGetSteps(); + const billsCount = steps.flatMap(step => [...step.bills]).length; - const isAdmin = useMatch(ROUTER_URLS.eventManage) !== null; - const isLoginPage = useMatch(ROUTER_URLS.eventLogin) !== null; - - const eventOutline = { + const event = { eventName, bankName, accountNumber, }; + const eventSummary = { + eventName, + eventToken: eventId, + totalExpenseAmount, + allMembersCount: members.length, + billsCount, + isAdmin, + }; + return { eventId, isAdmin, - isLoginPage, - eventOutline, + event, + eventSummary, }; }; diff --git a/client/src/hooks/useMembersStep.ts b/client/src/hooks/useMembersStep.ts index dba0aeacd..1348cb38d 100644 --- a/client/src/hooks/useMembersStep.ts +++ b/client/src/hooks/useMembersStep.ts @@ -1,4 +1,4 @@ -import {RefObject, useEffect, useRef, useState} from 'react'; +import {useEffect, useRef, useState} from 'react'; import {useNavigate} from 'react-router-dom'; import {BillInfo} from '@pages/AddBillFunnel/AddBillFunnel'; @@ -13,6 +13,8 @@ import useRequestPostMembers from './queries/member/useRequestPostMembers'; import useRequestPostBill from './queries/bill/useRequestPostBill'; import {BillStep} from './useAddBillFunnel'; import useRequestGetAllMembers from './queries/member/useRequestGetAllMembers'; +import useAmplitude from './useAmplitude'; +import useRequestGetEvent from './queries/event/useRequestGetEvent'; interface Props { billInfo: BillInfo; @@ -27,12 +29,15 @@ const useMembersStep = ({billInfo, setBillInfo, currentMembers, setStep}: Props) const inputRef = useRef(null); const hiddenRef = useRef(null); + const {trackAddBillEnd} = useAmplitude(); + const {members: allMembers} = useRequestGetAllMembers(); const {postMembersAsync, isPending: isPendingPostMembers} = useRequestPostMembers(); const {postBill, isSuccess: isSuccessPostBill, isPending: isPendingPostBill} = useRequestPostBill(); const navigate = useNavigate(); const eventId = getEventIdByUrl(); + const {eventName} = useRequestGetEvent(); const onNameInputChange = (value: string) => { if (REGEXP.memberName.test(value)) { @@ -82,6 +87,12 @@ const useMembersStep = ({billInfo, setBillInfo, currentMembers, setStep}: Props) } }; + const handleNameInputComplete = (event: React.MouseEvent) => { + if (!canAddMembers || !inputRef.current) return; + event.preventDefault(); + addMembersFromInput(); + }; + const handlePostBill = async () => { if (billInfo.members.map(({id}) => id).includes(-1)) { const newMembers = await postMembersAsync({ @@ -105,6 +116,8 @@ const useMembersStep = ({billInfo, setBillInfo, currentMembers, setStep}: Props) memberIds: billInfo.members.map(({id}) => id), }); } + + trackAddBillEnd({eventName, eventToken: eventId}); }; useEffect(() => { @@ -124,6 +137,7 @@ const useMembersStep = ({billInfo, setBillInfo, currentMembers, setStep}: Props) hiddenRef, handleNameInputChange, handleNameInputEnter, + handleNameInputComplete, isPendingPostBill, isPendingPostMembers, canSubmitMembers, diff --git a/client/src/hooks/useReportsPage.ts b/client/src/hooks/useReportsPage.ts index 27083b297..339171945 100644 --- a/client/src/hooks/useReportsPage.ts +++ b/client/src/hooks/useReportsPage.ts @@ -1,41 +1,59 @@ import {useState} from 'react'; -import {useOutletContext} from 'react-router-dom'; +import {useLocation, useNavigate, useOutletContext} from 'react-router-dom'; import {EventPageContextProps} from '@pages/EventPage/EventPageLayout'; -import {ERROR_MESSAGE} from '@constants/errorMessage'; +import getDeletedLastPath from '@utils/getDeletedLastPath'; import {useSearchReports} from './useSearchReports'; import toast from './useToast/toast'; +export type SendInfo = { + bankName: string; + accountNumber: string; + amount: number; + eventName: string; + eventToken: string; +}; + const useReportsPage = () => { const [memberName, setMemberName] = useState(''); - const {bankName, accountNumber} = useOutletContext(); + const {eventName, eventToken, bankName, accountNumber} = useOutletContext(); const {matchedReports, reports} = useSearchReports({memberName}); + const location = useLocation(); + const navigate = useNavigate(); + const changeName = ({target}: React.ChangeEvent) => { setMemberName(target.value); }; - const onBankButtonClick = (amount: number) => { - if (bankName.trim() === '' || accountNumber.trim() === '') { - toast.error(ERROR_MESSAGE.emptyBank, { - showingTime: 3000, - position: 'bottom', - }); - return; - } - - const url = `supertoss://send?amount=${amount}&bank=${bankName}&accountNo=${accountNumber}`; - window.location.href = url; + const onSendButtonClick = (memberId: number, amount: number) => { + const sendInfo: SendInfo = { + bankName, + accountNumber, + amount, + eventName, + eventToken, + }; + + navigate(`${getDeletedLastPath(location.pathname)}/${memberId}/send`, {state: sendInfo}); }; - const expenseListProp = matchedReports.map(member => ({ - ...member, - onBankButtonClick, - })); + const onCopy = async (amount: number) => { + await window.navigator.clipboard.writeText(`${amount.toLocaleString('ko-kr')}원`); + toast.confirm('금액이 복사되었어요.'); + }; const isEmpty = reports.length <= 0; + const canSendBank = bankName !== '' && accountNumber !== ''; + + const expenseListProp = matchedReports.map(report => ({ + ...report, + canSendBank, + onCopy, + onSendButtonClick, + })); return { isEmpty, diff --git a/client/src/hooks/useSendPage.ts b/client/src/hooks/useSendPage.ts new file mode 100644 index 000000000..ef1e9cf7d --- /dev/null +++ b/client/src/hooks/useSendPage.ts @@ -0,0 +1,112 @@ +import {useLocation} from 'react-router-dom'; +import {useEffect, useState} from 'react'; + +import {isMobileDevice} from '@utils/detectDevice'; + +import {SendInfo} from './useReportsPage'; +import toast from './useToast/toast'; +import useAmplitude from './useAmplitude'; + +export type SendMethod = '복사하기' | '토스' | '카카오페이'; +export type OnSend = () => void | Promise; + +const useSendPage = () => { + const isMobile = isMobileDevice(); + const options: SendMethod[] = isMobile ? ['토스', '카카오페이', '복사하기'] : ['복사하기']; + const defaultValue: SendMethod = isMobile ? '토스' : '복사하기'; + + const [sendMethod, setSendMethod] = useState(defaultValue); + const state = useLocation().state as SendInfo; + + const {trackSendMoney} = useAmplitude(); + + const onSelect = (option: SendMethod) => { + setSendMethod(option); + }; + + useEffect(() => { + if (!state) { + throw new Error('비정상적인 접근'); + } + }, [state]); + + const {bankName, accountNumber, amount, eventName, eventToken} = state; + + const format = (accountNumber: string) => { + if (accountNumber.length > 9) { + return `${accountNumber.slice(0, 9)}...`; + } + return accountNumber; + }; + + const accountText = `${bankName} ${format(accountNumber)}으로`; + const amountText = `${amount.toLocaleString('ko-kr')}원을 송금할게요`; + + const copyText = `${bankName} ${accountNumber} ${amount}원`; + + const onCopy = async () => { + await window.navigator.clipboard.writeText(copyText); + + trackSendMoney({eventName, eventToken, amount, sendMethod: 'clipboard'}); + toast.confirm('금액이 복사되었어요.'); + }; + + const onTossClick = () => { + trackSendMoney({eventName, eventToken, amount, sendMethod: 'toss'}); + + const tossUrl = `supertoss://send?amount=${amount}&bank=${bankName}&accountNo=${accountNumber}`; + window.location.href = tossUrl; + }; + + const onKakaoPayClick = async () => { + await window.navigator.clipboard.writeText(copyText); + trackSendMoney({eventName, eventToken, amount, sendMethod: 'kakaopay'}); + + const kakaoPayUrl = 'kakaotalk://kakaopay/home'; + window.location.href = kakaoPayUrl; + }; + + const buttonText: Record = { + 복사하기: '복사하기', + 토스: '송금하기', + 카카오페이: '송금하기', + }; + + const sendMethodIntroduceText: Record = { + 복사하기: '복사하기 버튼을 누른 뒤 원하는 방법으로 직접 송금해 주세요', + 토스: '', + 카카오페이: '카카오페이 앱으로 이동한 뒤 송금 버튼을 눌러주세요', + }; + + const buttonOnClick: Record = { + 복사하기: onCopy, + 토스: onTossClick, + 카카오페이: onKakaoPayClick, + }; + + const topMessage = { + accountText, + amountText, + }; + + const selectProps = { + options, + defaultValue, + onSelect, + }; + + const selectResult = { + sendMethod, + buttonOnClick, + buttonText, + sendMethodIntroduceText, + }; + + return { + topMessage, + selectProps, + selectResult, + }; +}; + +export default useSendPage; diff --git a/client/src/hooks/useSetEventPasswordStep.ts b/client/src/hooks/useSetEventPasswordStep.ts index 5705be855..78f748a65 100644 --- a/client/src/hooks/useSetEventPasswordStep.ts +++ b/client/src/hooks/useSetEventPasswordStep.ts @@ -1,11 +1,11 @@ import {useState} from 'react'; -import {useNavigate} from 'react-router-dom'; import validateEventPassword from '@utils/validate/validateEventPassword'; import RULE from '@constants/rule'; import useRequestPostEvent from './queries/event/useRequestPostEvent'; +import useAmplitude from './useAmplitude'; export type UseSetEventPasswordStepReturnType = ReturnType; @@ -15,6 +15,8 @@ const useSetEventPasswordStep = () => { const [canSubmit, setCanSubmit] = useState(false); const {postEvent: requestPostEvent, isPostEventPending} = useRequestPostEvent(); + const {trackCompleteCreateEvent} = useAmplitude(); + const submitDataForPostEvent = async ({ event, eventName, @@ -38,6 +40,7 @@ const useSetEventPasswordStep = () => { {eventName, password: getPasswordWithPad()}, { onSuccess: ({eventId}) => { + trackCompleteCreateEvent({eventName, eventToken: eventId}); updateEventToken(eventId); }, }, diff --git a/client/src/hooks/useShareEvent.ts b/client/src/hooks/useShareEvent.ts index 86d185f48..406357dc2 100644 --- a/client/src/hooks/useShareEvent.ts +++ b/client/src/hooks/useShareEvent.ts @@ -1,22 +1,24 @@ import getEventIdByUrl from '@utils/getEventIdByUrl'; import getEventPageUrlByEnvironment from '@utils/getEventPageUrlByEnvironment'; -const useShareEvent = (eventName: string, isMobile: boolean) => { +type UserShareEventProps = { + eventName: string; +}; + +const useShareEvent = ({eventName}: UserShareEventProps) => { const eventId = getEventIdByUrl(); const url = getEventPageUrlByEnvironment(eventId, 'home'); const shareInfo = { - title: `[행동대장]\n${eventName}에 대한 정산을 시작할게요:)`, + title: `행동대장이 ${eventName}에\n대한 정산을 요청했어요 :)`, text: '아래 링크에 접속해서 정산 내역을 확인해 주세요!', url, }; - // 모바일이 아닌 기기는 단순 텍스트 복사 - // 모바일 기기에서는 카카오톡 공유를 사용 - const onShareButtonClick = () => { - if (!isMobile) return; + const shareText = `${shareInfo.title}\n${shareInfo.text}\n${url}`; - kakaoShare(); + const copyShare = async () => { + await window.navigator.clipboard.writeText(shareText); }; const kakaoShare = () => { @@ -36,11 +38,9 @@ const useShareEvent = (eventName: string, isMobile: boolean) => { }); }; - const shareText = `${shareInfo.title}\n${shareInfo.text}\n${url}`; - return { - shareText, - onShareButtonClick, + kakaoShare, + copyShare, }; }; diff --git a/client/src/hooks/useToast/toast.ts b/client/src/hooks/useToast/toast.ts index 362227a62..71f3e69ba 100644 --- a/client/src/hooks/useToast/toast.ts +++ b/client/src/hooks/useToast/toast.ts @@ -1,19 +1,20 @@ import {ToastMessage, ToastOptions} from 'types/toastType'; +import {ToastType} from '@components/Toast/Toast.type'; import toastEventManager from './toastEventManager'; import {TOAST_EVENT} from './toastEventManager.type'; -const showToast = (message: ToastMessage, options: ToastOptions) => { - return toastEventManager.trigger(TOAST_EVENT.show, message, options); +const showToast = (message: ToastMessage, options: ToastOptions, type?: ToastType) => { + return toastEventManager.trigger(TOAST_EVENT.show, message, {...options, type}); }; // toast('안녕') 처럼도 사용할 수 있도록 const toast = (message: ToastMessage, options: ToastOptions = {}) => { - return showToast(message, options); + return showToast(message, options, 'none'); }; -toast.error = (message: ToastMessage, options: ToastOptions = {}) => showToast(message, options); -toast.confirm = (message: ToastMessage, options: ToastOptions = {}) => showToast(message, options); -toast.none = (message: ToastMessage, options: ToastOptions = {}) => showToast(message, options); +toast.error = (message: ToastMessage, options: ToastOptions = {}) => showToast(message, options, 'error'); +toast.confirm = (message: ToastMessage, options: ToastOptions = {}) => showToast(message, options, 'confirm'); +toast.none = (message: ToastMessage, options: ToastOptions = {}) => showToast(message, options, 'none'); export default toast; diff --git a/client/src/hooks/useToast/useToast.tsx b/client/src/hooks/useToast/useToast.tsx index e47d99c50..c9deb2f97 100644 --- a/client/src/hooks/useToast/useToast.tsx +++ b/client/src/hooks/useToast/useToast.tsx @@ -8,11 +8,6 @@ import {TOAST_EVENT} from './toastEventManager.type'; const DEFAULT_TIME = 3000; -type Toast = { - message: ToastMessage; - options: ToastOptions; -}; - export const useToast = () => { const [currentToast, setCurrentToast] = useState(null); diff --git a/client/src/pages/AddBillFunnel/steps/MembersStep.tsx b/client/src/pages/AddBillFunnel/steps/MembersStep.tsx index 5baf92ecf..32399bd59 100644 --- a/client/src/pages/AddBillFunnel/steps/MembersStep.tsx +++ b/client/src/pages/AddBillFunnel/steps/MembersStep.tsx @@ -8,7 +8,7 @@ import {Member} from 'types/serviceType'; import useMembersStep from '@hooks/useMembersStep'; import {BillStep} from '@hooks/useAddBillFunnel'; -import {FixedButton, Flex, Input, Text} from '@components/Design'; +import {Button, FixedButton, Flex, Input, Text} from '@components/Design'; import {isIOS} from '@utils/detectDevice'; @@ -29,6 +29,7 @@ const MembersStep = ({billInfo, setBillInfo, currentMembers, setStep}: Props) => hiddenRef, handleNameInputChange, handleNameInputEnter, + handleNameInputComplete, isPendingPostBill, isPendingPostMembers, canSubmitMembers, @@ -51,18 +52,24 @@ const MembersStep = ({billInfo, setBillInfo, currentMembers, setStep}: Props) => - + + + + +
{ + const {fileInputRef, handleChangeImages, urls, handleDeleteImage, isPending, canSubmit, submitImages} = + useAddImagesPage(); + + return ( + + + + +
+ + + + + + +
+ +
+ + 변경 완료 + + + ); +}; + +export default AddImagesPage; diff --git a/client/src/pages/CreateEventPage/SetEventPasswordStep.tsx b/client/src/pages/CreateEventPage/SetEventPasswordStep.tsx index 6c29fcac3..e31cb9985 100644 --- a/client/src/pages/CreateEventPage/SetEventPasswordStep.tsx +++ b/client/src/pages/CreateEventPage/SetEventPasswordStep.tsx @@ -2,7 +2,7 @@ import {css} from '@emotion/react'; import Top from '@components/Design/components/Top/Top'; -import useSetEventPasswordStep, {UseSetEventPasswordStepReturnType} from '@hooks/useSetEventPasswordStep'; +import useSetEventPasswordStep from '@hooks/useSetEventPasswordStep'; import {FixedButton, Input} from '@HDesign/index'; diff --git a/client/src/pages/ErrorPage/SendErrorPage/index.tsx b/client/src/pages/ErrorPage/SendErrorPage/index.tsx new file mode 100644 index 000000000..45ae4667c --- /dev/null +++ b/client/src/pages/ErrorPage/SendErrorPage/index.tsx @@ -0,0 +1,24 @@ +import {useNavigate} from 'react-router-dom'; + +import Top from '@components/Design/components/Top/Top'; + +import {Button, FunnelLayout, MainLayout} from '@HDesign/index'; + +const SendErrorPage = () => { + const navigate = useNavigate(); + + return ( + + + + + + + + + ); +}; + +export default SendErrorPage; diff --git a/client/src/pages/EventPage/AdminPage/AdminPage.tsx b/client/src/pages/EventPage/AdminPage/AdminPage.tsx index c69170897..a6c32f855 100644 --- a/client/src/pages/EventPage/AdminPage/AdminPage.tsx +++ b/client/src/pages/EventPage/AdminPage/AdminPage.tsx @@ -1,33 +1,20 @@ -import {useEffect} from 'react'; -import {useNavigate, useOutletContext} from 'react-router-dom'; +import {useNavigate} from 'react-router-dom'; import StepList from '@components/StepList/Steps'; -import useRequestPostAuthenticate from '@hooks/queries/auth/useRequestPostAuthentication'; -import useRequestGetSteps from '@hooks/queries/step/useRequestGetSteps'; +import {Banner} from '@components/Design/components/Banner'; -import {useTotalExpenseAmountStore} from '@store/totalExpenseAmountStore'; +import useAdminPage from '@hooks/useAdminPage'; +import useAmplitude from '@hooks/useAmplitude'; import {Title, Button, Dropdown, DropdownButton} from '@HDesign/index'; -import getEventIdByUrl from '@utils/getEventIdByUrl'; - -import {EventPageContextProps} from '../EventPageLayout'; - import {receiptStyle} from './AdminPage.style'; const AdminPage = () => { const navigate = useNavigate(); - const eventId = getEventIdByUrl(); - const {isAdmin, eventName} = useOutletContext(); - - const {totalExpenseAmount} = useTotalExpenseAmountStore(); - - const {steps} = useRequestGetSteps(); - const {postAuthenticate} = useRequestPostAuthenticate(); + const {trackAddBillStart} = useAmplitude(); - useEffect(() => { - postAuthenticate(); - }, [postAuthenticate]); + const {eventId, isAdmin, eventName, totalExpenseAmount, isShowBanner, onDelete, steps} = useAdminPage(); const navigateAccountInputPage = () => { navigate(`/event/${eventId}/admin/edit`); @@ -37,6 +24,15 @@ const AdminPage = () => { navigate(`/event/${eventId}/admin/member`); }; + const navigateAddImages = () => { + navigate(`/event/${eventId}/admin/add-images`); + }; + + const navigateAddBill = () => { + trackAddBillStart({eventName, eventToken: eventId}); + navigate(`/event/${eventId}/admin/add-bill`); + }; + return (
{ <Dropdown> <DropdownButton text="전체 참여자 관리" onClick={navigateEventMemberManage} /> <DropdownButton text="계좌번호 입력하기" onClick={navigateAccountInputPage} /> + <DropdownButton text="사진 첨부하기" onClick={navigateAddImages} /> </Dropdown> } /> - <StepList data={steps ?? []} isAdmin={isAdmin} /> - <Button size="medium" onClick={() => navigate(`/event/${eventId}/add-bill`)} style={{width: '100%'}}> + {isShowBanner && ( + <Banner + onClick={navigateAccountInputPage} + onDelete={onDelete} + title="계좌번호가 등록되지 않았어요" + description="계좌번호를 입력해야 참여자가 편하게 송금할 수 있어요" + buttonText="등록하기" + /> + )} + {steps.length > 0 && <StepList data={steps ?? []} isAdmin={isAdmin} />} + <Button size="medium" onClick={navigateAddBill} style={{width: '100%'}}> 지출내역 추가하기 </Button> </section> diff --git a/client/src/pages/EventPage/AuthGate/index.tsx b/client/src/pages/EventPage/AuthGate/index.tsx new file mode 100644 index 000000000..7031cc773 --- /dev/null +++ b/client/src/pages/EventPage/AuthGate/index.tsx @@ -0,0 +1,26 @@ +import {useEffect} from 'react'; + +import useRequestPostAuthentication from '@hooks/queries/auth/useRequestPostAuthentication'; + +import {useAuthStore} from '@store/authStore'; + +type AuthGateProps = React.PropsWithChildren & { + fallback: React.ReactNode; +}; + +const AuthGate = ({children, fallback}: AuthGateProps) => { + const {isError, postAuthenticate} = useRequestPostAuthentication(); + const {isAdmin} = useAuthStore(); + + useEffect(() => { + postAuthenticate(); + }, [postAuthenticate]); + + if (isError && !isAdmin) { + return fallback; + } + + return children; +}; + +export default AuthGate; diff --git a/client/src/pages/EventPage/EventPageLayout.tsx b/client/src/pages/EventPage/EventPageLayout.tsx index 2fcf0d682..7361992b4 100644 --- a/client/src/pages/EventPage/EventPageLayout.tsx +++ b/client/src/pages/EventPage/EventPageLayout.tsx @@ -1,25 +1,57 @@ import type {Event} from 'types/serviceType'; import {Outlet} from 'react-router-dom'; +import {useEffect} from 'react'; import useEventPageLayout from '@hooks/useEventPageLayout'; +import useShareEvent from '@hooks/useShareEvent'; +import useAmplitude from '@hooks/useAmplitude'; -import {ShareEventButton} from '@components/ShareEventButton'; +import {Footer} from '@components/Footer'; +import {DesktopShareEventButton, MobileShareEventButton} from '@components/ShareEventButton'; import {Flex, Icon, IconButton, MainLayout, TopNav} from '@HDesign/index'; +import {isMobileDevice} from '@utils/detectDevice'; +import {updateMetaTag} from '@utils/udpateMetaTag'; + export type EventPageContextProps = Event & { isAdmin: boolean; + eventToken: string; }; const EventPageLayout = () => { - const {isAdmin, isLoginPage, eventOutline} = useEventPageLayout(); - + const {isAdmin, event, eventId, eventSummary} = useEventPageLayout(); const outletContext: EventPageContextProps = { isAdmin, - ...eventOutline, + eventToken: eventId, + ...event, + }; + const {trackShareEvent} = useAmplitude(); + + const isMobile = isMobileDevice(); + const {kakaoShare, copyShare} = useShareEvent({eventName: event.eventName}); + + const trackLinkShare = async () => { + trackShareEvent({...eventSummary, shareMethod: 'link'}); + await copyShare(); }; + const trackKakaoShare = () => { + trackShareEvent({...eventSummary, shareMethod: 'kakao'}); + kakaoShare(); + }; + + useEffect(() => { + console.log('mount'); + updateMetaTag('og:title', `행동대장이 "${eventSummary.eventName}"에 대한 정산을 요청했어요`); + + return () => { + console.log('unmount'); + updateMetaTag('og:title', '행동대장 - 쉽고 빠른 모임 정산 및 송금 서비스'); + }; + }, []); + return ( <MainLayout backgroundColor="gray"> <Flex justifyContent="spaceBetween" alignItems="center"> @@ -32,9 +64,14 @@ const EventPageLayout = () => { <TopNav.Item displayName="홈" routePath="/home" /> <TopNav.Item displayName="관리" routePath="/admin" /> </TopNav> - {!isLoginPage && <ShareEventButton eventOutline={eventOutline} />} + {isMobile ? ( + <MobileShareEventButton copyShare={trackLinkShare} kakaoShare={trackKakaoShare} /> + ) : ( + <DesktopShareEventButton onCopy={trackLinkShare}>정산 초대하기</DesktopShareEventButton> + )} </Flex> <Outlet context={outletContext} /> + <Footer /> </MainLayout> ); }; diff --git a/client/src/pages/EventPage/HomePage/HomePage.tsx b/client/src/pages/EventPage/HomePage/HomePage.tsx index 1876327bf..4314d9592 100644 --- a/client/src/pages/EventPage/HomePage/HomePage.tsx +++ b/client/src/pages/EventPage/HomePage/HomePage.tsx @@ -1,14 +1,17 @@ import type {EventPageContextProps} from '../EventPageLayout'; -import {useOutletContext} from 'react-router-dom'; +import {useNavigate, useOutletContext} from 'react-router-dom'; import StepList from '@components/StepList/Steps'; import useRequestGetSteps from '@hooks/queries/step/useRequestGetSteps'; import Reports from '@components/Reports/Reports'; +import useRequestGetImages from '@hooks/queries/images/useRequestGetImages'; import {useTotalExpenseAmountStore} from '@store/totalExpenseAmountStore'; -import {Tab, Tabs, Title} from '@HDesign/index'; +import {Icon, Tab, Tabs, Title} from '@HDesign/index'; + +import getEventIdByUrl from '@utils/getEventIdByUrl'; import {receiptStyle} from './HomePage.style'; @@ -16,10 +19,23 @@ const HomePage = () => { const {isAdmin, eventName} = useOutletContext<EventPageContextProps>(); const {steps} = useRequestGetSteps(); const {totalExpenseAmount} = useTotalExpenseAmountStore(); + const {images} = useRequestGetImages(); + const navigate = useNavigate(); + const eventId = getEventIdByUrl(); return ( <div css={receiptStyle}> - <Title title={eventName} amount={totalExpenseAmount} /> + <Title + title={eventName} + amount={totalExpenseAmount} + icon={ + images.length !== 0 && ( + <button> + <Icon iconType="photoButton" onClick={() => navigate(`/event/${eventId}/images`)} /> + </button> + ) + } + /> <Tabs> <Tab label="참여자 별 정산" content={<Reports />} /> <Tab label="전체 지출 내역" content={<StepList data={steps ?? []} isAdmin={isAdmin} />} /> diff --git a/client/src/pages/ImagesPage/ImagesPage.tsx b/client/src/pages/ImagesPage/ImagesPage.tsx new file mode 100644 index 000000000..8393ca8b9 --- /dev/null +++ b/client/src/pages/ImagesPage/ImagesPage.tsx @@ -0,0 +1,49 @@ +import {css} from '@emotion/react'; +import {useEffect} from 'react'; + +import Carousel from '@components/Design/components/Carousel/Carousel'; +import useRequestGetImages from '@hooks/queries/images/useRequestGetImages'; + +import {MainLayout, Top, TopNav} from '@components/Design'; + +const ImagesPage = () => { + const {images} = useRequestGetImages(); + + useEffect(() => { + document.body.style.overflow = 'hidden'; + + return () => { + document.body.style.overflow = 'auto'; + }; + }, []); + + return ( + <MainLayout backgroundColor="white"> + <TopNav> + <TopNav.Item displayName="뒤로가기" noEmphasis routePath="-1" /> + </TopNav> + <div + css={css` + display: flex; + flex-direction: column; + gap: 1rem; + padding: 1rem; + `} + > + <Top> + <Top.Line text="행사와 관련된" /> + <Top.Line text="사진들을 확인하세요" emphasize={['사진들']} /> + </Top> + </div> + <Carousel urls={images.map(({url}) => url)} /> + <div + css={css` + height: 9.25rem; + content: ' '; + `} + /> + </MainLayout> + ); +}; + +export default ImagesPage; diff --git a/client/src/pages/MainPage/MainPage.tsx b/client/src/pages/MainPage/MainPage.tsx index 702972eff..4d0294ef9 100644 --- a/client/src/pages/MainPage/MainPage.tsx +++ b/client/src/pages/MainPage/MainPage.tsx @@ -1,3 +1,5 @@ +import useAmplitude from '@hooks/useAmplitude'; + import {MainLayout} from '@HDesign/index'; import Nav from './Nav/Nav'; @@ -8,10 +10,12 @@ import AddMemberSection from './Section/AddMemberSection'; import ReportSection from './Section/ReportSection'; const MainPage = () => { + const {trackStartCreateEvent} = useAmplitude(); + return ( <MainLayout> - <Nav /> - <MainSection /> + <Nav trackStartCreateEvent={trackStartCreateEvent} /> + <MainSection trackStartCreateEvent={trackStartCreateEvent} /> <DescriptionSection /> <AddBillSection /> <AddMemberSection /> diff --git a/client/src/pages/MainPage/Nav/Nav.tsx b/client/src/pages/MainPage/Nav/Nav.tsx index 65c7399db..eaf8e13ed 100644 --- a/client/src/pages/MainPage/Nav/Nav.tsx +++ b/client/src/pages/MainPage/Nav/Nav.tsx @@ -1,14 +1,21 @@ import {useNavigate} from 'react-router-dom'; -import {useTheme} from '@components/Design/theme/HDesignProvider'; - -import {Button, Flex, Text, Icon, TopNav, IconButton} from '@HDesign/index'; +import {Button, Text, Icon, TopNav, IconButton} from '@HDesign/index'; import {ROUTER_URLS} from '@constants/routerUrls'; -const Nav = () => { - const {theme} = useTheme(); +type NavProps = { + trackStartCreateEvent: () => void; +}; + +const Nav = ({trackStartCreateEvent}: NavProps) => { const navigate = useNavigate(); + + const StartCreateEvent = () => { + trackStartCreateEvent(); + navigate(ROUTER_URLS.createEvent); + }; + return ( <header style={{display: 'flex', justifyContent: 'space-between', alignItems: 'center', height: '37px'}}> <TopNav> @@ -21,12 +28,7 @@ const Nav = () => { <Text size="subTitle">행동대장</Text> </TopNav.Item> </TopNav> - <Button - size="medium" - variants="tertiary" - onClick={() => navigate(ROUTER_URLS.createEvent)} - style={{marginRight: '1rem'}} - > + <Button size="medium" variants="tertiary" onClick={StartCreateEvent} style={{marginRight: '1rem'}}> 정산 시작하기 </Button> </header> diff --git a/client/src/pages/MainPage/Section/MainSection.tsx b/client/src/pages/MainPage/Section/MainSection.tsx index 1f7b8367f..83f8d525e 100644 --- a/client/src/pages/MainPage/Section/MainSection.tsx +++ b/client/src/pages/MainPage/Section/MainSection.tsx @@ -7,9 +7,18 @@ import Text from '@HDesign/components/Text/Text'; import {ROUTER_URLS} from '@constants/routerUrls'; -const MainSection = () => { +type MainSectionProps = { + trackStartCreateEvent: () => void; +}; + +const MainSection = ({trackStartCreateEvent}: MainSectionProps) => { const navigate = useNavigate(); + const handleClick = () => { + trackStartCreateEvent(); + navigate(ROUTER_URLS.createEvent); + }; + return ( <div css={css({ @@ -39,7 +48,7 @@ const MainSection = () => { <Text css={animateWithDelay(1)} style={{textAlign: 'center'}} size="title">{`행동대장을 통해 간편하게 정산하세요 `}</Text> - <Button css={animateWithDelay(2)} size="large" onClick={() => navigate(ROUTER_URLS.createEvent)}> + <Button id="startCreateEvent" css={animateWithDelay(2)} size="large" onClick={handleClick}> 정산 시작하기 </Button> </div> diff --git a/client/src/pages/SendPage/index.tsx b/client/src/pages/SendPage/index.tsx new file mode 100644 index 000000000..88432173e --- /dev/null +++ b/client/src/pages/SendPage/index.tsx @@ -0,0 +1,36 @@ +import {useNavigate} from 'react-router-dom'; + +import useSendPage from '@hooks/useSendPage'; + +import {FixedButton, FunnelLayout, MainLayout, Select, Text, Top, TopNav} from '@components/Design'; + +const SendPage = () => { + const {topMessage, selectProps, selectResult} = useSendPage(); + const {accountText, amountText} = topMessage; + const {sendMethod, sendMethodIntroduceText, buttonOnClick, buttonText} = selectResult; + + const navigate = useNavigate(); + + return ( + <MainLayout backgroundColor="white"> + <TopNav> + <TopNav.Item displayName="뒤로가기" noEmphasis routePath="-1" /> + </TopNav> + <FunnelLayout> + <Top> + <Top.Line text={accountText} /> + <Top.Line text={amountText} emphasize={[amountText]} /> + </Top> + <Select labelText="송금 방법 선택" placeholder="송금 방법 선택" {...selectProps} /> + <Text size="body" textColor="gray"> + {sendMethodIntroduceText[sendMethod]} + </Text> + <FixedButton onBackClick={() => navigate(-1)} onClick={buttonOnClick[sendMethod]}> + {buttonText[sendMethod]} + </FixedButton> + </FunnelLayout> + </MainLayout> + ); +}; + +export default SendPage; diff --git a/client/src/router.tsx b/client/src/router.tsx index 81b4ad2cd..9969ce139 100644 --- a/client/src/router.tsx +++ b/client/src/router.tsx @@ -4,8 +4,11 @@ import {lazy, Suspense} from 'react'; import ErrorPage from '@pages/ErrorPage/ErrorPage'; import EventLoginPage from '@pages/EventPage/AdminPage/EventLoginPage'; import EventLoader from '@components/Loader/EventLoader'; +import SendErrorPage from '@pages/ErrorPage/SendErrorPage'; +import AuthGate from '@pages/EventPage/AuthGate'; import {EventPage} from '@pages/EventPage'; +import SendPage from '@pages/SendPage'; import {ROUTER_URLS} from '@constants/routerUrls'; @@ -19,6 +22,8 @@ const AddBillFunnel = lazy(() => import('@pages/AddBillFunnel/AddBillFunnel')); const EventMember = lazy(() => import('@pages/EventPage/AdminPage/EventMember')); const EditBillPage = lazy(() => import('@pages/EditBillPage/EditBillPage')); const Account = lazy(() => import('@pages/AccountPage/Account')); +const ImagesPage = lazy(() => import('@pages/ImagesPage/ImagesPage')); +const AddImagesPage = lazy(() => import('@pages/AddImagesPage/AddImagesPage')); const router = createBrowserRouter([ { @@ -49,13 +54,13 @@ const router = createBrowserRouter([ children: [ { path: ROUTER_URLS.eventManage, - element: <AdminPage />, + element: ( + <AuthGate fallback={<EventLoginPage />}> + <AdminPage /> + </AuthGate> + ), }, {path: ROUTER_URLS.home, element: <HomePage />}, - { - path: ROUTER_URLS.eventLogin, - element: <EventLoginPage />, - }, ], }, { @@ -74,6 +79,19 @@ const router = createBrowserRouter([ path: ROUTER_URLS.eventEdit, element: <Account />, }, + { + path: ROUTER_URLS.images, + element: <ImagesPage />, + }, + { + path: ROUTER_URLS.addImages, + element: <AddImagesPage />, + }, + { + path: ROUTER_URLS.send, + element: <SendPage />, + errorElement: <SendErrorPage />, + }, { path: '*', element: <ErrorPage />, diff --git a/client/src/store/amplitudeStore.ts b/client/src/store/amplitudeStore.ts new file mode 100644 index 000000000..afbedc560 --- /dev/null +++ b/client/src/store/amplitudeStore.ts @@ -0,0 +1,14 @@ +import * as amplitude from '@amplitude/analytics-browser'; +import {create} from 'zustand'; + +import {Amplitude} from 'types/amplitude'; + +type State = { + amplitude: Amplitude; +}; + +type Action = {}; + +export const useAmplitudeStore = create<State & Action>(() => ({ + amplitude: amplitude as Amplitude, +})); diff --git a/client/src/store/authStore.ts b/client/src/store/authStore.ts new file mode 100644 index 000000000..2b95eeb92 --- /dev/null +++ b/client/src/store/authStore.ts @@ -0,0 +1,14 @@ +import {create} from 'zustand'; + +type State = { + isAdmin: boolean; +}; + +type Action = { + updateAuth: (isAdmin: boolean) => void; +}; + +export const useAuthStore = create<State & Action>(set => ({ + isAdmin: false, + updateAuth: isAdmin => set(() => ({isAdmin})), +})); diff --git a/client/src/types/amplitude.ts b/client/src/types/amplitude.ts new file mode 100644 index 000000000..6e222118b --- /dev/null +++ b/client/src/types/amplitude.ts @@ -0,0 +1,56 @@ +import AmplitudeClient from '@amplitude/analytics-types'; + +export interface Amplitude { + add: ( + plugin: AmplitudeClient.Plugin<AmplitudeClient.BrowserClient, AmplitudeClient.BrowserConfig>, + ) => AmplitudeClient.AmplitudeReturn<void>; + extendSession: () => void; + flush: () => AmplitudeClient.AmplitudeReturn<void>; + getDeviceId: () => string | undefined; + getSessionId: () => number | undefined; + getUserId: () => string | undefined; + groupIdentify: ( + groupType: string, + groupName: string | string[], + identify: AmplitudeClient.Identify, + eventOptions?: AmplitudeClient.EventOptions | undefined, + ) => AmplitudeClient.AmplitudeReturn<AmplitudeClient.Result>; + identify: ( + identify: AmplitudeClient.Identify, + eventOptions?: AmplitudeClient.EventOptions | undefined, + ) => AmplitudeClient.AmplitudeReturn<AmplitudeClient.Result>; + init: { + (apiKey: string, options?: AmplitudeClient.BrowserOptions | undefined): AmplitudeClient.AmplitudeReturn<void>; + ( + apiKey: string, + userId?: string | undefined, + options?: AmplitudeClient.BrowserOptions | undefined, + ): AmplitudeClient.AmplitudeReturn<void>; + }; + logEvent: ( + eventInput: string | AmplitudeClient.BaseEvent, + eventProperties?: Record<string, any> | undefined, + eventOptions?: AmplitudeClient.EventOptions | undefined, + ) => AmplitudeClient.AmplitudeReturn<AmplitudeClient.Result>; + remove: (pluginName: string) => AmplitudeClient.AmplitudeReturn<void>; + reset: () => void; + revenue: ( + revenue: AmplitudeClient.Revenue, + eventOptions?: AmplitudeClient.EventOptions | undefined, + ) => AmplitudeClient.AmplitudeReturn<AmplitudeClient.Result>; + setDeviceId: (deviceId: string) => void; + setGroup: ( + groupType: string, + groupName: string | string[], + eventOptions?: AmplitudeClient.EventOptions | undefined, + ) => AmplitudeClient.AmplitudeReturn<AmplitudeClient.Result>; + setOptOut: (optOut: boolean) => void; + setSessionId: (sessionId: number) => void; + setTransport: (transport: AmplitudeClient.TransportType) => void; + setUserId: (userId: string | undefined) => void; + track: ( + eventInput: string | AmplitudeClient.BaseEvent, + eventProperties?: Record<string, any> | undefined, + eventOptions?: AmplitudeClient.EventOptions | undefined, + ) => AmplitudeClient.AmplitudeReturn<AmplitudeClient.Result>; +} diff --git a/client/src/types/serviceType.ts b/client/src/types/serviceType.ts index a2ecca3aa..5e406cee4 100644 --- a/client/src/types/serviceType.ts +++ b/client/src/types/serviceType.ts @@ -65,3 +65,12 @@ export interface Report { export interface Reports { reports: Report[]; } + +export interface Images { + images: ImageFile[]; +} + +export interface ImageFile { + id: number; + url: string; +} diff --git a/client/src/utils/SessionStorage.ts b/client/src/utils/SessionStorage.ts new file mode 100644 index 000000000..42527d8c7 --- /dev/null +++ b/client/src/utils/SessionStorage.ts @@ -0,0 +1,19 @@ +const SessionStorage = { + get: <T>(key: string): T | null => { + const savedElement = sessionStorage.getItem(key); + + if (savedElement === null) { + return null; + } + + const element = JSON.parse(savedElement) as T; + return element; + }, + + set: <T>(key: string, data: T) => { + const element = JSON.stringify(data); + sessionStorage.setItem(key, element); + }, +}; + +export default SessionStorage; diff --git a/client/src/utils/detectBrowser.ts b/client/src/utils/detectBrowser.ts new file mode 100644 index 000000000..7e5557c0a --- /dev/null +++ b/client/src/utils/detectBrowser.ts @@ -0,0 +1,32 @@ +// https://gurtn.tistory.com/214 +const detectBrowser = () => { + const browsers = [ + 'Chrome', + 'Opera', + 'WebTV', + 'Whale', + 'Beonex', + 'Chimera', + 'NetPositive', + 'Phoenix', + 'Firefox', + 'Safari', + 'SkipStone', + 'Netscape', + 'Mozilla', + ]; + + const userAgent = window.navigator.userAgent.toLowerCase(); + + if (userAgent.includes('edg')) { + return 'Edge'; + } + + if (userAgent.includes('trident') || userAgent.includes('msie')) { + return 'Internet Explorer'; + } + + return browsers.find(browser => userAgent.includes(browser.toLowerCase())) || 'Other'; +}; + +export default detectBrowser; diff --git a/client/src/utils/udpateMetaTag.ts b/client/src/utils/udpateMetaTag.ts new file mode 100644 index 000000000..37909878c --- /dev/null +++ b/client/src/utils/udpateMetaTag.ts @@ -0,0 +1,11 @@ +export const updateMetaTag = (name: string, content: string) => { + let metaTag = document.querySelector(`meta[property="${name}"]`); + + if (!metaTag) { + metaTag = document.createElement('meta'); + metaTag.setAttribute('property', name); + document.head.appendChild(metaTag); + } + + metaTag.setAttribute('content', content); +}; diff --git a/logs/spring-boot-application.2024-08-07.log b/logs/spring-boot-application.2024-08-07.log deleted file mode 100644 index 5e1ad5f2b..000000000 --- a/logs/spring-boot-application.2024-08-07.log +++ /dev/null @@ -1,140044 +0,0 @@ -2024-08-07 11:24:31 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 11:24:31 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 11:24:31 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 11:24:31 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 11:24:31 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 11:24:31 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 11:24:31 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 11:24:31 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 11:24:31 - Loaded expression factory via original TCCL -2024-08-07 11:24:31 - Starting HaengdongApplication using Java 17.0.12 with PID 44170 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 11:24:31 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 11:24:31 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 11:24:31 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 11:24:31 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-07 11:24:31 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 11:24:31 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 11:24:31 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 11:24:31 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 11:24:31 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 11:24:31 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 11:24:31 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 11:24:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 11:24:31 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 11:24:31 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 11:24:31 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 11:24:31 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 11:24:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 11:24:32 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 11:24:32 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 11:24:32 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 11:24:32 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 11:24:32 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 11:24:32 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 11:24:32 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 11:24:32 - Finished Spring Data repository scanning in 18 ms. Found 4 JPA repository interfaces. -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 11:24:32 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 11:24:32 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 11:24:32 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 11:24:32 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 11:24:32 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 11:24:32 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 11:24:32 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@1c297897] -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 11:24:32 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 11:24:32 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 11:24:32 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 11:24:32 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 11:24:32 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 11:24:32 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 11:24:32 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 11:24:32 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 11:24:32 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 11:24:32 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 11:24:32 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:24:32 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:24:32 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:24:32 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 11:24:32 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 11:24:32 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 11:24:32 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 11:24:32 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 11:24:32 - Tomcat initialized with port 8080 (http) -2024-08-07 11:24:32 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19ad75e5] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19ad75e5] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.mapper.MapperListener@5f5297e3] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.mapper.MapperListener@5f5297e3] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 11:24:32 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 11:24:32 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19ad75e5] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19ad75e5] to [STARTING] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19ad75e5] to [STARTED] -2024-08-07 11:24:32 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 11:24:32 - Starting service [Tomcat] -2024-08-07 11:24:32 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 11:24:32 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 11:24:32 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.webresources.StandardRoot@5d2a86c0] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.webresources.StandardRoot@5d2a86c0] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.webresources.StandardRoot@5d2a86c0] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.webresources.DirResourceSet@96abc76] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.webresources.DirResourceSet@96abc76] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.webresources.DirResourceSet@96abc76] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.webresources.DirResourceSet@96abc76] to [STARTING] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.webresources.DirResourceSet@96abc76] to [STARTED] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.webresources.StandardRoot@5d2a86c0] to [STARTING] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.webresources.StandardRoot@5d2a86c0] to [STARTED] -2024-08-07 11:24:32 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 11:24:32 - Starting this Loader -2024-08-07 11:24:32 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 11:24:32 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 11:24:32 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 11:24:32 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@5a47730c] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@5a47730c] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@5a47730c] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@5a47730c] to [STARTING] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@5a47730c] to [STARTED] -2024-08-07 11:24:32 - Initializing Spring embedded WebApplicationContext -2024-08-07 11:24:32 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 11:24:32 - Root WebApplicationContext: initialization completed in 670 ms -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 11:24:32 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 11:24:32 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 11:24:32 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 11:24:32 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 11:24:32 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 11:24:32 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 11:24:32 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 11:24:32 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 11:24:32 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 11:24:32 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 11:24:32 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 11:24:32 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 11:24:32 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 11:24:32 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 11:24:32 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 11:24:32 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 11:24:32 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 11:24:32 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 11:24:32 - HikariPool-1 - configuration: -2024-08-07 11:24:32 - allowPoolSuspension.............false -2024-08-07 11:24:32 - autoCommit......................true -2024-08-07 11:24:32 - catalog.........................none -2024-08-07 11:24:32 - connectionInitSql...............none -2024-08-07 11:24:32 - connectionTestQuery.............none -2024-08-07 11:24:32 - connectionTimeout...............30000 -2024-08-07 11:24:32 - dataSource......................none -2024-08-07 11:24:32 - dataSourceClassName.............none -2024-08-07 11:24:32 - dataSourceJNDI..................none -2024-08-07 11:24:32 - dataSourceProperties............{password=<masked>} -2024-08-07 11:24:32 - driverClassName................."org.h2.Driver" -2024-08-07 11:24:32 - exceptionOverrideClassName......none -2024-08-07 11:24:32 - healthCheckProperties...........{} -2024-08-07 11:24:32 - healthCheckRegistry.............none -2024-08-07 11:24:32 - idleTimeout.....................600000 -2024-08-07 11:24:32 - initializationFailTimeout.......1 -2024-08-07 11:24:32 - isolateInternalQueries..........false -2024-08-07 11:24:32 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 11:24:32 - keepaliveTime...................0 -2024-08-07 11:24:32 - leakDetectionThreshold..........0 -2024-08-07 11:24:32 - maxLifetime.....................1800000 -2024-08-07 11:24:32 - maximumPoolSize.................10 -2024-08-07 11:24:32 - metricRegistry..................none -2024-08-07 11:24:32 - metricsTrackerFactory...........none -2024-08-07 11:24:32 - minimumIdle.....................10 -2024-08-07 11:24:32 - password........................<masked> -2024-08-07 11:24:32 - poolName........................"HikariPool-1" -2024-08-07 11:24:32 - readOnly........................false -2024-08-07 11:24:32 - registerMbeans..................false -2024-08-07 11:24:32 - scheduledExecutor...............none -2024-08-07 11:24:32 - schema..........................none -2024-08-07 11:24:32 - threadFactory...................internal -2024-08-07 11:24:32 - transactionIsolation............default -2024-08-07 11:24:32 - username........................"sa" -2024-08-07 11:24:32 - validationTimeout...............5000 -2024-08-07 11:24:32 - HikariPool-1 - Starting... -2024-08-07 11:24:32 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 11:24:32 - HikariPool-1 - Start completed. -2024-08-07 11:24:32 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 11:24:32 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 11:24:32 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 11:24:32 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 11:24:32 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 11:24:32 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 11:24:32 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 11:24:32 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 11:24:32 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 11:24:32 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 11:24:32 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5ba184fc] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5ba184fc] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5ba184fc] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5ba184fc] to [STARTING] -2024-08-07 11:24:32 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5ba184fc] to [STARTED] -2024-08-07 11:24:32 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 11:24:32 - Filter 'requestContextFilter' configured for use -2024-08-07 11:24:32 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 11:24:32 - Filter 'characterEncodingFilter' configured for use -2024-08-07 11:24:32 - Filter 'formContentFilter' configured for use -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 11:24:32 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 11:24:32 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 11:24:32 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 11:24:32 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.mapper.MapperListener@5f5297e3] to [STARTING_PREP] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.mapper.MapperListener@5f5297e3] to [STARTING] -2024-08-07 11:24:32 - Registered host [localhost] -2024-08-07 11:24:32 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 11:24:32 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 11:24:32 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 11:24:32 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 11:24:32 - Setting state for [org.apache.catalina.mapper.MapperListener@5f5297e3] to [STARTED] -2024-08-07 11:24:32 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 11:24:32 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:60292] -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 11:24:32 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 11:24:32 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 11:24:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:32 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 11:24:32 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 11:24:32 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 11:24:32 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 82 -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 84 -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:32 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 11:24:32 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 11:24:32 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 11:24:32 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:32 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 11:24:32 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:32 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 11:24:32 - [javax.management.remote.rmi.RMIConnectionImpl@7503166b: connectionId=rmi://127.0.0.1 1] closing. -2024-08-07 11:24:32 - [javax.management.remote.rmi.RMIConnectionImpl@7503166b: connectionId=rmi://127.0.0.1 1] closed. -2024-08-07 11:24:32 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 11:24:32 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 11:24:32 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 11:24:32 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 11:24:32 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 11:24:32 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 11:24:32 - HHH000206: 'hibernate.properties' not found -2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 11:24:32 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 11:24:32 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 11:24:32 - HHH000026: Second-level cache disabled -2024-08-07 11:24:32 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 11:24:32 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 11:24:32 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-07 11:24:32 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-07 11:24:32 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-07 11:24:32 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-07 11:24:32 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-07 11:24:32 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 11:24:32 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 11:24:32 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-07 11:24:32 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-07 11:24:32 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 11:24:32 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 11:24:32 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 11:24:32 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 11:24:32 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 11:24:32 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 11:24:32 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 11:24:32 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 11:24:32 - Adding type registration image -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 11:24:32 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 11:24:32 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 11:24:32 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 11:24:32 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 11:24:32 - Adding type registration short -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 11:24:32 - Adding type registration short -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 11:24:32 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 11:24:32 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 11:24:32 - Adding type registration int -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 11:24:32 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 11:24:32 - Adding type registration long -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 11:24:32 - Adding type registration long -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 11:24:32 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 11:24:32 - Adding type registration float -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 11:24:32 - Adding type registration float -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 11:24:32 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 11:24:32 - Adding type registration double -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 11:24:32 - Adding type registration double -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 11:24:32 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 11:24:32 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 11:24:32 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 11:24:32 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 11:24:32 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 11:24:32 - Adding type registration character -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 11:24:32 - Adding type registration char -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 11:24:32 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 11:24:32 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 11:24:32 - Adding type registration string -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 11:24:32 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 11:24:32 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 11:24:32 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 11:24:32 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 11:24:32 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 11:24:32 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 11:24:32 - Adding type registration text -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 11:24:32 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 11:24:32 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 11:24:32 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 11:24:32 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 11:24:32 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 11:24:32 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 11:24:32 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 11:24:32 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 11:24:32 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 11:24:32 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 11:24:32 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 11:24:32 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 11:24:32 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 11:24:32 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 11:24:32 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 11:24:32 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 11:24:32 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 11:24:32 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 11:24:32 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 11:24:32 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 11:24:32 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 11:24:32 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 11:24:32 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 11:24:32 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 11:24:32 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 11:24:32 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 11:24:32 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 11:24:32 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 11:24:32 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 11:24:32 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 11:24:32 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 11:24:32 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 11:24:32 - Adding type registration date -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 11:24:32 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 11:24:32 - Adding type registration time -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 11:24:32 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 11:24:32 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 11:24:32 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 11:24:32 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 11:24:32 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 11:24:32 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 11:24:32 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 11:24:32 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 11:24:32 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 11:24:32 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 11:24:32 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 11:24:32 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 11:24:32 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 11:24:32 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 11:24:32 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 11:24:32 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 11:24:32 - Adding type registration class -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 11:24:32 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 11:24:32 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 11:24:32 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 11:24:32 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 11:24:32 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 11:24:32 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 11:24:32 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 11:24:32 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 11:24:32 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 11:24:32 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 11:24:32 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 11:24:32 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 11:24:32 - Adding type registration url -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 11:24:32 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 11:24:32 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 11:24:32 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 11:24:32 - Adding type registration object -> org.hibernate.type.JavaObjectType@1dfe5dd1 -2024-08-07 11:24:32 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@1dfe5dd1 -2024-08-07 11:24:32 - Adding type registration null -> org.hibernate.type.NullType@79445efb -2024-08-07 11:24:32 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@1592e540 -2024-08-07 11:24:32 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@3e2772a9 -2024-08-07 11:24:32 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@4449b273 -2024-08-07 11:24:32 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@1fa18f87 -2024-08-07 11:24:32 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@1d9bd1d6 -2024-08-07 11:24:32 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@18ac4af6 -2024-08-07 11:24:32 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@117fb9ba -2024-08-07 11:24:32 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@2b1d1a5 -2024-08-07 11:24:32 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@14b26e90] into BootstrapContext; was [null] -2024-08-07 11:24:32 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@14b26e90) [was null] -2024-08-07 11:24:32 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@395eb363] into BootstrapContext; was [null] -2024-08-07 11:24:32 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@1e194966] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@160546b1] -2024-08-07 11:24:32 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-07 11:24:32 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 11:24:32 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-07 11:24:32 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 11:24:32 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 11:24:32 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 11:24:32 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 11:24:32 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@14b26e90] -2024-08-07 11:24:32 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@14b26e90] -2024-08-07 11:24:32 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 11:24:32 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 11:24:32 - JDBC version : 4.2 -2024-08-07 11:24:32 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 11:24:32 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 11:24:32 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 11:24:32 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 11:24:32 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 11:24:32 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 11:24:32 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 11:24:32 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 11:24:32 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 11:24:32 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 11:24:32 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 11:24:32 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 11:24:32 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 11:24:32 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@34647f58] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@14b96c1e] -2024-08-07 11:24:33 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 11:24:33 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 11:24:33 - Import with entity name Action -2024-08-07 11:24:33 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 11:24:33 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 11:24:33 - Binding column: AnnotatedColumn() -2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 11:24:33 - MetadataSourceProcessor property id with lazy=false -2024-08-07 11:24:33 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 11:24:33 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 11:24:33 - building BasicValue for id -2024-08-07 11:24:33 - Skipping column re-registration: action.id -2024-08-07 11:24:33 - Building property id -2024-08-07 11:24:33 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 11:24:33 - Binding column: AnnotatedJoinColumn() -2024-08-07 11:24:33 - Binding column: AnnotatedColumn() -2024-08-07 11:24:33 - Building property event -2024-08-07 11:24:33 - Binding column: AnnotatedColumn() -2024-08-07 11:24:33 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 11:24:33 - building BasicValue for sequence -2024-08-07 11:24:33 - Skipping column re-registration: action.sequence -2024-08-07 11:24:33 - Building property sequence -2024-08-07 11:24:33 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 11:24:33 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 11:24:33 - Import with entity name BillAction -2024-08-07 11:24:33 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 11:24:33 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 11:24:33 - Binding column: AnnotatedColumn() -2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 11:24:33 - MetadataSourceProcessor property id with lazy=false -2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 11:24:33 - building BasicValue for id -2024-08-07 11:24:33 - Skipping column re-registration: bill_action.id -2024-08-07 11:24:33 - Building property id -2024-08-07 11:24:33 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 11:24:33 - Binding column: AnnotatedJoinColumn() -2024-08-07 11:24:33 - Binding column: AnnotatedColumn() -2024-08-07 11:24:33 - Building property action -2024-08-07 11:24:33 - Binding column: AnnotatedColumn() -2024-08-07 11:24:33 - MetadataSourceProcessor property price with lazy=false -2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 11:24:33 - building BasicValue for price -2024-08-07 11:24:33 - Skipping column re-registration: bill_action.price -2024-08-07 11:24:33 - Building property price -2024-08-07 11:24:33 - Binding column: AnnotatedColumn() -2024-08-07 11:24:33 - MetadataSourceProcessor property title with lazy=false -2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 11:24:33 - building BasicValue for title -2024-08-07 11:24:33 - Skipping column re-registration: bill_action.title -2024-08-07 11:24:33 - Building property title -2024-08-07 11:24:33 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 11:24:33 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 11:24:33 - Import with entity name MemberAction -2024-08-07 11:24:33 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 11:24:33 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 11:24:33 - Binding column: AnnotatedColumn() -2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 11:24:33 - MetadataSourceProcessor property id with lazy=false -2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 11:24:33 - building BasicValue for id -2024-08-07 11:24:33 - Skipping column re-registration: member_action.id -2024-08-07 11:24:33 - Building property id -2024-08-07 11:24:33 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 11:24:33 - Binding column: AnnotatedJoinColumn() -2024-08-07 11:24:33 - Binding column: AnnotatedColumn() -2024-08-07 11:24:33 - Building property action -2024-08-07 11:24:33 - Binding column: AnnotatedColumn() -2024-08-07 11:24:33 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 11:24:33 - building BasicValue for memberGroupId -2024-08-07 11:24:33 - Skipping column re-registration: member_action.member_group_id -2024-08-07 11:24:33 - Building property memberGroupId -2024-08-07 11:24:33 - Binding column: AnnotatedColumn() -2024-08-07 11:24:33 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 11:24:33 - building BasicValue for memberName -2024-08-07 11:24:33 - Skipping column re-registration: member_action.member_name -2024-08-07 11:24:33 - Building property memberName -2024-08-07 11:24:33 - Binding column: AnnotatedColumn() -2024-08-07 11:24:33 - MetadataSourceProcessor property status with lazy=false -2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 11:24:33 - building BasicValue for status -2024-08-07 11:24:33 - Skipping column re-registration: member_action.status -2024-08-07 11:24:33 - Building property status -2024-08-07 11:24:33 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 11:24:33 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 11:24:33 - Import with entity name Event -2024-08-07 11:24:33 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 11:24:33 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 11:24:33 - Binding column: AnnotatedColumn() -2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 11:24:33 - MetadataSourceProcessor property id with lazy=false -2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 11:24:33 - building BasicValue for id -2024-08-07 11:24:33 - Skipping column re-registration: event.id -2024-08-07 11:24:33 - Building property id -2024-08-07 11:24:33 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 11:24:33 - Binding column: AnnotatedColumn() -2024-08-07 11:24:33 - MetadataSourceProcessor property name with lazy=false -2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 11:24:33 - building BasicValue for name -2024-08-07 11:24:33 - Skipping column re-registration: event.name -2024-08-07 11:24:33 - Building property name -2024-08-07 11:24:33 - Binding column: AnnotatedColumn() -2024-08-07 11:24:33 - MetadataSourceProcessor property password with lazy=false -2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 11:24:33 - building BasicValue for password -2024-08-07 11:24:33 - Skipping column re-registration: event.password -2024-08-07 11:24:33 - Building property password -2024-08-07 11:24:33 - Binding column: AnnotatedColumn() -2024-08-07 11:24:33 - MetadataSourceProcessor property token with lazy=false -2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 11:24:33 - building BasicValue for token -2024-08-07 11:24:33 - Skipping column re-registration: event.token -2024-08-07 11:24:33 - Building property token -2024-08-07 11:24:33 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 11:24:33 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 11:24:33 - Import with entity name EventStep -2024-08-07 11:24:33 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 11:24:33 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 11:24:33 - Binding column: AnnotatedColumn() -2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 11:24:33 - MetadataSourceProcessor property id with lazy=false -2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 11:24:33 - building BasicValue for id -2024-08-07 11:24:33 - Skipping column re-registration: event_step.id -2024-08-07 11:24:33 - Building property id -2024-08-07 11:24:33 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 11:24:33 - Binding column: AnnotatedJoinColumn() -2024-08-07 11:24:33 - Binding column: AnnotatedColumn() -2024-08-07 11:24:33 - Building property event -2024-08-07 11:24:33 - Binding column: AnnotatedColumn() -2024-08-07 11:24:33 - MetadataSourceProcessor property name with lazy=false -2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 11:24:33 - building BasicValue for name -2024-08-07 11:24:33 - Skipping column re-registration: event_step.name -2024-08-07 11:24:33 - Building property name -2024-08-07 11:24:33 - Binding column: AnnotatedColumn() -2024-08-07 11:24:33 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 11:24:33 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 11:24:33 - building BasicValue for sequence -2024-08-07 11:24:33 - Skipping column re-registration: event_step.sequence -2024-08-07 11:24:33 - Building property sequence -2024-08-07 11:24:33 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 11:24:33 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 11:24:33 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 11:24:33 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 11:24:33 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 11:24:33 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 11:24:33 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 11:24:33 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 11:24:33 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 11:24:33 - Building session factory -2024-08-07 11:24:33 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 11:24:33 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@7957aa57, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@7b92ea9d, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.2064990266383354539, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=44170, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.2064990266383354539, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@6b3bc1f6, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 11:24:33 - Session factory constructed with filter configurations : {} -2024-08-07 11:24:33 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 11:24:33 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 11:24:33 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 11:24:33 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 11:24:33 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 11:24:33 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 11:24:33 - Loaded expression factory via original TCCL -2024-08-07 11:24:33 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 11:24:33 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 11:24:33 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 11:24:33 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 11:24:33 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 11:24:33 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 11:24:33 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 11:24:33 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@59d09ff3] under count; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@49322d04] under every; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@b6b746b] under any; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@394b9e22] under sinh; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6e0f259e] under cosh; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4fe9adfb] under tanh; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@f8fe81e] under pi; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6ad0cd43] under log; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 11:24:33 - Registering alternate key : length -> character_length -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@33214124] under position; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@862624f] under overlay; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@7c8a91e2] under trim; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@79b0956e] under cast; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@35451ba6] under collate; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@2a7392a3] under extract; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@5382a35f] under ifnull; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@4a7c72af] under pad; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@1b53e6fc] under str; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@4419cd6e] under format; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@2fccd98f] under timestampadd; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@261099e1] under timestampdiff; prior registration was null -2024-08-07 11:24:33 - Registering alternate key : dateadd -> timestampadd -2024-08-07 11:24:33 - Registering alternate key : datediff -> timestampdiff -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7d7c05fa] under current_date; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7dbbf730] under current_time; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7c4a5ef2] under current_timestamp; prior registration was null -2024-08-07 11:24:33 - Registering alternate key : current date -> current_date -2024-08-07 11:24:33 - Registering alternate key : current time -> current_time -2024-08-07 11:24:33 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@299dd381] under local_date; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@34d3409d] under local_time; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16732340] under local_datetime; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@38e052b2] under offset_datetime; prior registration was null -2024-08-07 11:24:33 - Registering alternate key : local date -> local_date -2024-08-07 11:24:33 - Registering alternate key : local time -> local_time -2024-08-07 11:24:33 - Registering alternate key : local datetime -> local_datetime -2024-08-07 11:24:33 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7fa68ff4] under instant; prior registration was null -2024-08-07 11:24:33 - Registering alternate key : current_instant -> instant -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@2f64f99f] under sql; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@16c1d11] under count; prior registration was org.hibernate.dialect.function.CountFunction@59d09ff3 -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@2fc40856] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@f8fe81e -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5543d800] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 11:24:33 - Registering alternate key : day -> day_of_month -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@34d3409d -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@16732340 -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@7a2fd94c] under trunc; prior registration was null -2024-08-07 11:24:33 - Registering alternate key : truncate -> trunc -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@637c8632] under date_trunc; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 11:24:33 - Registering alternate key : chr -> char -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@156eeff1] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@33214124 -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@34001c5d] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 11:24:33 - Registering alternate key : every -> bool_and -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 11:24:33 - Registering alternate key : any -> bool_or -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@30e15628] under format; prior registration was org.hibernate.dialect.function.FormatFunction@4419cd6e -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@34f8ce89] under listagg; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@10bcbbce] under mode; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@27234b7c] under percentile_cont; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@125a8ab6] under percentile_disc; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@7730da00] under rank; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@52d01430] under dense_rank; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@3fdede3a] under percent_rank; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@41948c13] under cume_dist; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@5a45c218] under array; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@2c6efee3] under array_list; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@6aa18912] under array_agg; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@7c6fc278] under array_position; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@7a78d2aa] under array_positions; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@78f35e39] under array_positions_list; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@11896124] under array_length; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@20462820] under array_concat; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@5b5a89d1] under array_prepend; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@267b678f] under array_append; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@4edd8a0a] under array_contains; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@1a73f3d1] under array_contains_nullable; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@1018f702] under array_overlaps; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@5400db7e] under array_overlaps_nullable; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@73905dff] under array_get; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@12478b4e] under array_set; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@774189d0] under array_remove; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@7f584d0c] under array_remove_index; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4c599679] under array_slice; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@1bcf2c64] under array_replace; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@b5bddfe] under array_trim; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@5570dc21] under array_fill; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@1477d4e6] under array_fill_list; prior registration was null -2024-08-07 11:24:33 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@48da5106] under array_to_string; prior registration was null -2024-08-07 11:24:33 - abs(NUMERIC arg) -2024-08-07 11:24:33 - Double acos(NUMERIC arg) -2024-08-07 11:24:33 - Boolean any(BOOLEAN predicate) -2024-08-07 11:24:33 - array( ... ) -2024-08-07 11:24:33 - array_agg(arg) -2024-08-07 11:24:33 - array_append( ... ) -2024-08-07 11:24:33 - array_concat( ... ) -2024-08-07 11:24:33 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 11:24:33 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 11:24:33 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 11:24:33 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 11:24:33 - array_get(ARRAY array, INTEGER index) -2024-08-07 11:24:33 - Integer array_length(ARRAY array) -2024-08-07 11:24:33 - array_list( ... ) -2024-08-07 11:24:33 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 11:24:33 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 11:24:33 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 11:24:33 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 11:24:33 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 11:24:33 - array_prepend( ... ) -2024-08-07 11:24:33 - array_remove( ... ) -2024-08-07 11:24:33 - array_remove_index( ... ) -2024-08-07 11:24:33 - array_replace( ... ) -2024-08-07 11:24:33 - array_set( ... ) -2024-08-07 11:24:33 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 11:24:33 - String array_to_string( ... ) -2024-08-07 11:24:33 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 11:24:33 - Integer ascii(STRING arg) -2024-08-07 11:24:33 - Double asin(NUMERIC arg) -2024-08-07 11:24:33 - Double atan(NUMERIC arg) -2024-08-07 11:24:33 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 11:24:33 - avg(NUMERIC arg) -2024-08-07 11:24:33 - bit_and(arg) -2024-08-07 11:24:33 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 11:24:33 - bit_or(arg) -2024-08-07 11:24:33 - bitand(arg0, arg1) -2024-08-07 11:24:33 - bitnot(arg) -2024-08-07 11:24:33 - bitor(arg0, arg1) -2024-08-07 11:24:33 - bitxor(arg0, arg1) -2024-08-07 11:24:33 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 11:24:33 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 11:24:33 - cast(arg as Type) -2024-08-07 11:24:33 - ceiling(NUMERIC arg) -2024-08-07 11:24:33 - Character char(INTEGER arg) -2024-08-07 11:24:33 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 11:24:33 - Character chr(INTEGER arg) -2024-08-07 11:24:33 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 11:24:33 - String collate(STRING string as COLLATION collation) -2024-08-07 11:24:33 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 11:24:33 - Double cos(NUMERIC arg) -2024-08-07 11:24:33 - Double cosh(NUMERIC arg) -2024-08-07 11:24:33 - Double cot(NUMERIC arg) -2024-08-07 11:24:33 - Long count([distinct ]{arg|*}) -2024-08-07 11:24:33 - Double cume_dist([arg0[, ...]]) -2024-08-07 11:24:33 - Date curdate() -2024-08-07 11:24:33 - Date current date -2024-08-07 11:24:33 - Time current time -2024-08-07 11:24:33 - Timestamp current timestamp -2024-08-07 11:24:33 - Date current_date -2024-08-07 11:24:33 - Instant current_instant -2024-08-07 11:24:33 - Time current_time -2024-08-07 11:24:33 - Timestamp current_timestamp -2024-08-07 11:24:33 - Time curtime() -2024-08-07 11:24:33 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 11:24:33 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 11:24:33 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 11:24:33 - Integer day(DATE arg) -2024-08-07 11:24:33 - Integer day_of_month(DATE arg) -2024-08-07 11:24:33 - Integer day_of_week(DATE arg) -2024-08-07 11:24:33 - Integer day_of_year(DATE arg) -2024-08-07 11:24:33 - String dayname(DATE arg) -2024-08-07 11:24:33 - Double degrees(NUMERIC arg) -2024-08-07 11:24:33 - Long dense_rank([arg0[, ...]]) -2024-08-07 11:24:33 - Boolean every(BOOLEAN predicate) -2024-08-07 11:24:33 - Double exp(NUMERIC arg) -2024-08-07 11:24:33 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 11:24:33 - first_valueANY value -2024-08-07 11:24:33 - floor(NUMERIC arg) -2024-08-07 11:24:33 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 11:24:33 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 11:24:33 - Integer hour(TIME arg) -2024-08-07 11:24:33 - ifnull(arg0, arg1) -2024-08-07 11:24:33 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 11:24:33 - Instant instant -2024-08-07 11:24:33 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 11:24:33 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 11:24:33 - last_valueANY value -2024-08-07 11:24:33 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 11:24:33 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 11:24:33 - String left(STRING string, INTEGER length) -2024-08-07 11:24:33 - Integer length(STRING_OR_CLOB arg) -2024-08-07 11:24:33 - String listagg(STRING arg0, STRING arg1) -2024-08-07 11:24:33 - Double ln(NUMERIC arg) -2024-08-07 11:24:33 - LocalDate local date -2024-08-07 11:24:33 - LocalDateTime local datetime -2024-08-07 11:24:33 - LocalTime local time -2024-08-07 11:24:33 - LocalDate local_date -2024-08-07 11:24:33 - LocalDateTime local_datetime -2024-08-07 11:24:33 - LocalTime local_time -2024-08-07 11:24:33 - Time localtime -2024-08-07 11:24:33 - Timestamp localtimestamp -2024-08-07 11:24:33 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 11:24:33 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 11:24:33 - Double log10(NUMERIC arg) -2024-08-07 11:24:33 - String lower(STRING string) -2024-08-07 11:24:33 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 11:24:33 - String ltrim(STRING string) -2024-08-07 11:24:33 - max(COMPARABLE arg) -2024-08-07 11:24:33 - Double median(NUMERIC arg) -2024-08-07 11:24:33 - Integer microsecond(TIME arg) -2024-08-07 11:24:33 - min(COMPARABLE arg) -2024-08-07 11:24:33 - Integer minute(TIME arg) -2024-08-07 11:24:33 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 11:24:33 - mode() -2024-08-07 11:24:33 - Integer month(DATE arg) -2024-08-07 11:24:33 - String monthname(DATE arg) -2024-08-07 11:24:33 - Timestamp now() -2024-08-07 11:24:33 - nth_valueANY value, INTEGER nth -2024-08-07 11:24:33 - nullif(arg0, arg1) -2024-08-07 11:24:33 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 11:24:33 - OffsetDateTime offset datetime -2024-08-07 11:24:33 - OffsetDateTime offset_datetime -2024-08-07 11:24:33 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 11:24:33 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 11:24:33 - Double percent_rank([arg0[, ...]]) -2024-08-07 11:24:33 - percentile_cont(NUMERIC arg) -2024-08-07 11:24:33 - percentile_disc(NUMERIC arg) -2024-08-07 11:24:33 - Double pi -2024-08-07 11:24:33 - Integer position(STRING pattern in STRING string) -2024-08-07 11:24:33 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 11:24:33 - Integer quarter(DATE arg) -2024-08-07 11:24:33 - Double radians(NUMERIC arg) -2024-08-07 11:24:33 - Double rand([INTEGER seed]) -2024-08-07 11:24:33 - Long rank([arg0[, ...]]) -2024-08-07 11:24:33 - String repeat(STRING string, INTEGER times) -2024-08-07 11:24:33 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 11:24:33 - String right(STRING string, INTEGER length) -2024-08-07 11:24:33 - round(NUMERIC number[, INTEGER places]) -2024-08-07 11:24:33 - Long row_number() -2024-08-07 11:24:33 - Long rownum() -2024-08-07 11:24:33 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 11:24:33 - String rtrim(STRING string) -2024-08-07 11:24:33 - Integer second(TIME arg) -2024-08-07 11:24:33 - Integer sign(NUMERIC arg) -2024-08-07 11:24:33 - Double sin(NUMERIC arg) -2024-08-07 11:24:33 - Double sinh(NUMERIC arg) -2024-08-07 11:24:33 - String soundex(arg) -2024-08-07 11:24:33 - String space(INTEGER arg) -2024-08-07 11:24:33 - Object sql -2024-08-07 11:24:33 - Double sqrt(NUMERIC arg) -2024-08-07 11:24:33 - Double stddev_pop(NUMERIC arg) -2024-08-07 11:24:33 - Double stddev_samp(NUMERIC arg) -2024-08-07 11:24:33 - String str(arg) -2024-08-07 11:24:33 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 11:24:33 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 11:24:33 - sum(arg) -2024-08-07 11:24:33 - Timestamp sysdate -2024-08-07 11:24:33 - Double tan(NUMERIC arg) -2024-08-07 11:24:33 - Double tanh(NUMERIC arg) -2024-08-07 11:24:33 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 11:24:33 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 11:24:33 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 11:24:33 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 11:24:33 - trunc( ... ) -2024-08-07 11:24:33 - truncate( ... ) -2024-08-07 11:24:33 - String upper(STRING string) -2024-08-07 11:24:33 - Double var_pop(NUMERIC arg) -2024-08-07 11:24:33 - Double var_samp(NUMERIC arg) -2024-08-07 11:24:33 - Integer week(DATE arg) -2024-08-07 11:24:33 - Integer year(DATE arg) -2024-08-07 11:24:33 - Starting QueryInterpretationCache(2048) -2024-08-07 11:24:33 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 11:24:33 - Configured EntityCopyObserver strategy: disallow -2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 11:24:33 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 11:24:33 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 11:24:33 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 11:24:33 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 11:24:33 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 11:24:33 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 11:24:33 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 11:24:33 - Starting post-init callbacks -2024-08-07 11:24:33 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 11:24:33 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 11:24:33 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 11:24:33 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 11:24:33 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 11:24:33 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 11:24:33 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 11:24:33 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 11:24:33 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 82 -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 82 -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 84 -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:33 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:33 - [javax.management.remote.rmi.RMIConnectionImpl@32e6ebe8: connectionId=rmi://127.0.0.1 2] closing. -2024-08-07 11:24:33 - [javax.management.remote.rmi.RMIConnectionImpl@32e6ebe8: connectionId=rmi://127.0.0.1 2] closed. -2024-08-07 11:24:33 - Created new SQL alias : ba1_0 -2024-08-07 11:24:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 11:24:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@38dc1c50] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 11:24:33 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 11:24:33 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 11:24:33 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 11:24:33 - Version select: select id from bill_action where id=? -2024-08-07 11:24:33 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 11:24:33 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 11:24:33 - Delete (0): delete from bill_action where id=? -2024-08-07 11:24:33 - Created new SQL alias : ma1_0 -2024-08-07 11:24:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 11:24:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@435e224d] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 11:24:33 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 11:24:33 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 11:24:33 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 11:24:33 - Version select: select id from member_action where id=? -2024-08-07 11:24:33 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 11:24:33 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 11:24:33 - Delete (0): delete from member_action where id=? -2024-08-07 11:24:33 - Created new SQL alias : e1_0 -2024-08-07 11:24:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 11:24:33 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 11:24:33 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 11:24:33 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 11:24:33 - Version select: select id from event where id=? -2024-08-07 11:24:33 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 11:24:33 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 11:24:33 - Delete (0): delete from event where id=? -2024-08-07 11:24:33 - Created new SQL alias : a1_0 -2024-08-07 11:24:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 11:24:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6c75c5e8] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 11:24:33 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 11:24:33 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 11:24:33 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 11:24:33 - Version select: select id from action where id=? -2024-08-07 11:24:33 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 11:24:33 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 11:24:33 - Delete (0): delete from action where id=? -2024-08-07 11:24:33 - Created new SQL alias : es1_0 -2024-08-07 11:24:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 11:24:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@39c93af6] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 11:24:33 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 11:24:33 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 11:24:33 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 11:24:33 - Version select: select id from event_step where id=? -2024-08-07 11:24:33 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 11:24:33 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 11:24:33 - Delete (0): delete from event_step where id=? -2024-08-07 11:24:33 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 11:24:33 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@34647f58] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@3bede349] -2024-08-07 11:24:33 - Checking 0 named HQL queries -2024-08-07 11:24:33 - Checking 0 named SQL queries -2024-08-07 11:24:33 - - drop table if exists action cascade -2024-08-07 11:24:33 - - drop table if exists bill_action cascade -2024-08-07 11:24:33 - - drop table if exists event cascade -2024-08-07 11:24:33 - - drop table if exists event_step cascade -2024-08-07 11:24:33 - - drop table if exists member_action cascade -2024-08-07 11:24:33 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 11:24:33 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 11:24:33 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 11:24:33 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 11:24:33 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 11:24:33 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 11:24:33 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 11:24:33 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 11:24:33 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 11:24:33 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@5b8ba1d2 -2024-08-07 11:24:33 - Registering SessionFactory: f39fae5f-3cb7-45e0-a4fe-f8156f66a2a2 (<unnamed>) -2024-08-07 11:24:33 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 11:24:33 - Instantiated SessionFactory -2024-08-07 11:24:33 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'actionService' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 11:24:33 - Initializing JpaMetamodelMappingContext… -2024-08-07 11:24:33 - Finished initializing JpaMetamodelMappingContext -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - Statistics initialized [enabled=false] -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 11:24:33 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 11:24:33 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:24:33 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - Looking up named query BillAction.findByAction_Event -2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:24:33 - Did not find named query BillAction.findByAction_Event -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - Looking up named query BillAction.findByAction_Id -2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:24:33 - Did not find named query BillAction.findByAction_Id -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:24:33 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:24:33 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:24:33 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 11:24:33 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 11:24:33 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 11:24:33 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:24:33 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 11:24:33 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 11:24:33 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 11:24:33 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:24:33 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 11:24:33 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 11:24:33 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(725495217097458)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(725495217097458)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(725495217097458)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(725495217097458)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(725495217097458).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:24:33 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 11:24:33 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 11:24:33 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 11:24:33 - Looking up named query MemberAction.findByAction -2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:24:33 - Did not find named query MemberAction.findByAction -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - Looking up named query Event.findByToken -2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:24:33 - Did not find named query Event.findByToken -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 11:24:33 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 11:24:33 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 11:24:33 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:24:33 - Did not find named query Action.findLastByEvent.count -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 11:24:33 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 11:24:33 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 11:24:33 - Looking up named query Action.findByIdAndEvent -2024-08-07 11:24:33 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:24:33 - Did not find named query Action.findByIdAndEvent -2024-08-07 11:24:33 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:24:33 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 11:24:33 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 11:24:33 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 11:24:33 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'eventService' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 11:24:33 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 11:24:33 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 11:24:33 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 11:24:33 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 11:24:33 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 11:24:33 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 11:24:33 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 11:24:33 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 11:24:33 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 11:24:33 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 11:24:33 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'actionController' -2024-08-07 11:24:33 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 11:24:33 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'eventController' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'authService' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 11:24:33 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 11:24:33 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 11:24:33 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 11:24:33 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 11:24:33 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:24:33 - Loaded expression factory via original TCCL -2024-08-07 11:24:33 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 11:24:33 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 11:24:33 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 11:24:33 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 11:24:33 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 11:24:33 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 11:24:33 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 11:24:33 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 11:24:33 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 11:24:33 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 11:24:33 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 11:24:33 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 11:24:33 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 11:24:33 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 11:24:33 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'error' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 11:24:33 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 11:24:33 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 11:24:33 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 11:24:33 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 11:24:33 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:24:33 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 11:24:33 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 11:24:33 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:24:33 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 11:24:33 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 11:24:33 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 11:24:33 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 11:24:33 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 11:24:33 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 11:24:33 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 11:24:33 - - s.h.p.EventController: - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {GET [/api/events/{eventId}]}: findEvent(String) -2024-08-07 11:24:33 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 11:24:33 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 11:24:33 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 11:24:33 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 11:24:33 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 11:24:33 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 11:24:33 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 11:24:33 - 'beanNameHandlerMapping' {} -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 11:24:33 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 11:24:33 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 11:24:33 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 11:24:33 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:24:33 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:24:33 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 11:24:33 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:24:33 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 11:24:33 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 11:24:33 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 11:24:33 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 11:24:33 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 11:24:33 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 11:24:33 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 11:24:33 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 11:24:33 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 11:24:33 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 82 -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 84 -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:33 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 11:24:33 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 11:24:33 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:33 - [javax.management.remote.rmi.RMIConnectionImpl@56aadd88: connectionId=rmi://127.0.0.1 3] closing. -2024-08-07 11:24:33 - [javax.management.remote.rmi.RMIConnectionImpl@56aadd88: connectionId=rmi://127.0.0.1 3] closed. -2024-08-07 11:24:33 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 11:24:33 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 11:24:33 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 11:24:33 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 11:24:33 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 11:24:33 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 11:24:33 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 11:24:33 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 11:24:33 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 11:24:33 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 11:24:33 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:24:33 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 11:24:33 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:24:33 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 11:24:33 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 11:24:33 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 11:24:33 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 11:24:33 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 11:24:33 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 11:24:33 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 11:24:33 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 11:24:33 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 11:24:33 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 11:24:33 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 11:24:33 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 11:24:33 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 11:24:33 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 11:24:33 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 11:24:33 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 11:24:33 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 11:24:33 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 11:24:33 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 11:24:33 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 11:24:33 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 11:24:33 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 11:24:33 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 11:24:33 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 11:24:33 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 11:24:33 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 11:24:33 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 11:24:33 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 11:24:33 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 11:24:33 - Using SLF4J as the default logging framework -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 11:24:33 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 11:24:33 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 11:24:33 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 11:24:33 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 11:24:33 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 11:24:33 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 11:24:33 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 11:24:33 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 11:24:33 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 11:24:33 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 11:24:33 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 11:24:33 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 11:24:33 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 11:24:33 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 11:24:33 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 11:24:33 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 11:24:33 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 11:24:33 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 11:24:33 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 11:24:33 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 11:24:33 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 11:24:33 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 11:24:33 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 11:24:33 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 11:24:33 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 11:24:33 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 11:24:33 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 11:24:33 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 11:24:33 - Registering beans for JMX exposure on startup -2024-08-07 11:24:33 - Auto-detecting user-defined JMX MBeans -2024-08-07 11:24:33 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 11:24:33 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 11:24:33 - Starting beans in phase -2147483647 -2024-08-07 11:24:33 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 11:24:33 - Starting beans in phase 2147481599 -2024-08-07 11:24:33 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 11:24:33 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 11:24:33 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 11:24:33 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 11:24:33 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 11:24:33 - Successfully started bean 'webServerStartStop' -2024-08-07 11:24:33 - Starting beans in phase 2147482623 -2024-08-07 11:24:33 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 11:24:33 - Starting beans in phase 2147483647 -2024-08-07 11:24:34 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 11:24:34 - Started HaengdongApplication in 2.377 seconds (process running for 2.59) -2024-08-07 11:24:34 - Application availability state LivenessState changed to CORRECT -2024-08-07 11:24:34 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 82 -2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 84 -2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 82 -2024-08-07 11:24:34 - RMI TCP Connection(1)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@6a9cef18: connectionId=rmi://127.0.0.1 4] closing. -2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@6a9cef18: connectionId=rmi://127.0.0.1 4] closed. -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:60294] -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:60293] -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 84 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 84 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@4affa994: connectionId=rmi://127.0.0.1 6] closing. -2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@4affa994: connectionId=rmi://127.0.0.1 6] closed. -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 84 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@c5167d8: connectionId=rmi://127.0.0.1 5] closing. -2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@c5167d8: connectionId=rmi://127.0.0.1 5] closed. -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 84 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 82 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@77b10e4c: connectionId=rmi://127.0.0.1 7] closing. -2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@77b10e4c: connectionId=rmi://127.0.0.1 7] closed. -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 82 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@c2d2a29: connectionId=rmi://127.0.0.1 8] closing. -2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@c2d2a29: connectionId=rmi://127.0.0.1 8] closed. -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 82 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 84 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 84 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@79c4c99b: connectionId=rmi://127.0.0.1 9] closing. -2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@79c4c99b: connectionId=rmi://127.0.0.1 9] closed. -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@504679a4: connectionId=rmi://127.0.0.1 10] closing. -2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@504679a4: connectionId=rmi://127.0.0.1 10] closed. -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 84 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 84 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:34 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 11:24:34 - Fetching JDBC Connection from DataSource -2024-08-07 11:24:34 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 11:24:34 - Initializing Servlet 'dispatcherServlet' -2024-08-07 11:24:34 - Detected StandardServletMultipartResolver -2024-08-07 11:24:34 - Detected AcceptHeaderLocaleResolver -2024-08-07 11:24:34 - Detected FixedThemeResolver -2024-08-07 11:24:34 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@177d7e98 -2024-08-07 11:24:34 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@442545ab -2024-08-07 11:24:34 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 11:24:34 - Completed initialization in 1 ms -2024-08-07 11:24:34 - Fetching JDBC Connection from DataSource -2024-08-07 11:24:34 - RMI TCP Connection(3)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@4f2df720: connectionId=rmi://127.0.0.1 11] closing. -2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@4f2df720: connectionId=rmi://127.0.0.1 11] closed. -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 82 -2024-08-07 11:24:34 - RMI TCP Connection(2)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@55f41d6c: connectionId=rmi://127.0.0.1 12] closing. -2024-08-07 11:24:34 - [javax.management.remote.rmi.RMIConnectionImpl@55f41d6c: connectionId=rmi://127.0.0.1 12] closed. -2024-08-07 11:24:54 - RMI TCP Connection(1)-127.0.0.1: (port 60291) connection closed -2024-08-07 11:24:54 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60292,localport=60291] -2024-08-07 11:24:54 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60292,localport=60291] -2024-08-07 11:24:54 - RMI TCP Connection(2)-127.0.0.1: (port 60291) connection closed -2024-08-07 11:24:54 - RMI TCP Connection(3)-127.0.0.1: (port 60291) connection closed -2024-08-07 11:24:54 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60293,localport=60291] -2024-08-07 11:24:55 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60293,localport=60291] -2024-08-07 11:24:54 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60294,localport=60291] -2024-08-07 11:24:55 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60294,localport=60291] -2024-08-07 11:24:55 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:60295] -2024-08-07 11:24:55 - RMI TCP Connection(4)-127.0.0.1: (port 60291) op = 80 -2024-08-07 11:24:55 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:55 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:55 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:55 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:24:55 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7f0766ef -2024-08-07 11:25:02 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 11:25:02 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 11:25:17 - RMI TCP Connection(4)-127.0.0.1: (port 60291) connection closed -2024-08-07 11:25:17 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60295,localport=60291] -2024-08-07 11:25:17 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60295,localport=60291] -2024-08-07 11:25:24 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 11:25:24 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 11:25:24 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.2064990266383354539/conf/jaspic-providers.xml] -2024-08-07 11:25:24 - POST "/api/events", parameters={} -2024-08-07 11:25:24 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 11:25:24 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 11:25:24 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=1234]] -2024-08-07 11:25:24 - Found thread-bound EntityManager [SessionImpl(1068519759<open>)] for JPA transaction -2024-08-07 11:25:24 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 11:25:24 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 11:25:24 - begin -2024-08-07 11:25:24 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@1ed90de] -2024-08-07 11:25:24 - Found thread-bound EntityManager [SessionImpl(1068519759<open>)] for JPA transaction -2024-08-07 11:25:24 - Participating in existing transaction -2024-08-07 11:25:24 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 11:25:24 - Executing identity-insert immediately -2024-08-07 11:25:24 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 11:25:24 - Initializer list is empty -2024-08-07 11:25:24 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@772428ee -2024-08-07 11:25:24 - Extracted JDBC value [0] - [1] -2024-08-07 11:25:24 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@4ae82410 -2024-08-07 11:25:24 - Initiating transaction commit -2024-08-07 11:25:24 - Committing JPA transaction on EntityManager [SessionImpl(1068519759<open>)] -2024-08-07 11:25:24 - committing -2024-08-07 11:25:24 - Processing flush-time cascades -2024-08-07 11:25:24 - Dirty checking collections -2024-08-07 11:25:24 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 11:25:24 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 11:25:24 - Listing entities: -2024-08-07 11:25:24 - server.haengdong.domain.event.Event{password=1234, name=1234, id=1, token=ee55681c-c4ec-47b1-8d41-b8378c8664d6} -2024-08-07 11:25:24 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 11:25:24 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 11:25:24 - Writing [EventResponse[eventId=ee55681c-c4ec-47b1-8d41-b8378c8664d6]] -2024-08-07 11:25:24 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 11:25:24 - Completed 200 OK -2024-08-07 11:25:32 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 11:25:32 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 11:25:48 - POST "/api/events", parameters={} -2024-08-07 11:25:48 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 11:25:48 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 11:25:48 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=1234]] -2024-08-07 11:25:48 - Found thread-bound EntityManager [SessionImpl(696510524<open>)] for JPA transaction -2024-08-07 11:25:48 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 11:25:48 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 11:25:48 - begin -2024-08-07 11:25:48 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@64f26060] -2024-08-07 11:25:48 - Found thread-bound EntityManager [SessionImpl(696510524<open>)] for JPA transaction -2024-08-07 11:25:48 - Participating in existing transaction -2024-08-07 11:25:48 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 11:25:48 - Executing identity-insert immediately -2024-08-07 11:25:48 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 11:25:48 - Initializer list is empty -2024-08-07 11:25:48 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@64a7caf -2024-08-07 11:25:48 - Extracted JDBC value [0] - [2] -2024-08-07 11:25:48 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@1b98eae8 -2024-08-07 11:25:48 - Initiating transaction commit -2024-08-07 11:25:48 - Committing JPA transaction on EntityManager [SessionImpl(696510524<open>)] -2024-08-07 11:25:48 - committing -2024-08-07 11:25:48 - Processing flush-time cascades -2024-08-07 11:25:48 - Dirty checking collections -2024-08-07 11:25:48 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 11:25:48 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 11:25:48 - Listing entities: -2024-08-07 11:25:48 - server.haengdong.domain.event.Event{password=1234, name=1234, id=2, token=29bd2b1c-c308-4b41-82ea-8ffa94370559} -2024-08-07 11:25:48 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 11:25:48 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 11:25:48 - Writing [EventResponse[eventId=29bd2b1c-c308-4b41-82ea-8ffa94370559]] -2024-08-07 11:25:48 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 11:25:48 - Completed 200 OK -2024-08-07 11:26:02 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 11:26:02 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 11:26:17 - POST "/api/events/29bd2b1c-c308-4b41-82ea-8ffa94370559/member-actions", parameters={} -2024-08-07 11:26:17 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 11:26:17 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 11:26:17 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 11:26:17 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 11:26:17 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 11:26:17 - Completed 401 UNAUTHORIZED -2024-08-07 11:26:32 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 11:26:32 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 11:27:02 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 11:27:02 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 11:27:32 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 11:27:32 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 11:28:02 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 11:28:02 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 11:28:04 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 11:28:04 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Wed Aug 07 11:24:31 KST 2024 -2024-08-07 11:28:04 - Stopping beans in phase 2147483647 -2024-08-07 11:28:04 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 11:28:04 - Stopping beans in phase 2147482623 -2024-08-07 11:28:04 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 11:28:04 - Stopping beans in phase 2147481599 -2024-08-07 11:28:04 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 11:28:04 - Stopping beans in phase -2147483647 -2024-08-07 11:28:04 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 11:28:04 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 11:28:04 - Unregistering JMX-exposed beans on shutdown -2024-08-07 11:28:04 - Unregistering JMX-exposed beans -2024-08-07 11:28:04 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 11:28:04 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 11:28:04 - HHH000031: Closing -2024-08-07 11:28:04 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@2ec2b0ef] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@3bede349] -2024-08-07 11:28:04 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 11:28:04 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 11:28:04 - HikariPool-1 - Shutdown initiated... -2024-08-07 11:28:04 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 11:28:04 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 11:28:04 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 11:28:04 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 11:28:04 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 11:28:04 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 11:28:04 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 11:28:04 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 11:28:04 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 11:28:04 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 11:28:04 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 11:28:04 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 11:28:04 - HikariPool-1 - Shutdown completed. -2024-08-07 11:28:04 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 11:30:45 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 11:30:45 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 11:30:45 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 11:30:45 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 11:30:45 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 11:30:45 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 11:30:45 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 11:30:45 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 11:30:45 - Loaded expression factory via original TCCL -2024-08-07 11:30:45 - Starting HaengdongApplication using Java 17.0.12 with PID 45209 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 11:30:45 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 11:30:45 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 11:30:45 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 11:30:45 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-07 11:30:45 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 11:30:45 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 11:30:45 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 11:30:45 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 11:30:45 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 11:30:45 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 11:30:45 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 11:30:45 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 11:30:45 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 11:30:45 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 11:30:45 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 11:30:45 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 11:30:45 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 11:30:46 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 11:30:46 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 11:30:46 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 11:30:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 11:30:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 11:30:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 11:30:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 11:30:46 - Finished Spring Data repository scanning in 15 ms. Found 4 JPA repository interfaces. -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 11:30:46 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 11:30:46 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 11:30:46 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 11:30:46 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 11:30:46 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 11:30:46 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 11:30:46 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@446e7065] -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 11:30:46 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 11:30:46 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 11:30:46 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 11:30:46 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 11:30:46 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 11:30:46 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 11:30:46 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:30:46 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:30:46 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:30:46 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 11:30:46 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 11:30:46 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 11:30:46 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 11:30:46 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 11:30:46 - Tomcat initialized with port 8080 (http) -2024-08-07 11:30:46 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6d874695] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6d874695] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.mapper.MapperListener@3be3e76c] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.mapper.MapperListener@3be3e76c] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 11:30:46 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 11:30:46 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6d874695] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6d874695] to [STARTING] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6d874695] to [STARTED] -2024-08-07 11:30:46 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 11:30:46 - Starting service [Tomcat] -2024-08-07 11:30:46 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 11:30:46 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 11:30:46 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.webresources.StandardRoot@4b28a7bf] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.webresources.StandardRoot@4b28a7bf] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.webresources.StandardRoot@4b28a7bf] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.webresources.DirResourceSet@7767bd4e] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.webresources.DirResourceSet@7767bd4e] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.webresources.DirResourceSet@7767bd4e] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.webresources.DirResourceSet@7767bd4e] to [STARTING] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.webresources.DirResourceSet@7767bd4e] to [STARTED] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.webresources.StandardRoot@4b28a7bf] to [STARTING] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.webresources.StandardRoot@4b28a7bf] to [STARTED] -2024-08-07 11:30:46 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 11:30:46 - Starting this Loader -2024-08-07 11:30:46 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 11:30:46 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 11:30:46 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 11:30:46 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7ac48f05] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7ac48f05] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7ac48f05] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7ac48f05] to [STARTING] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7ac48f05] to [STARTED] -2024-08-07 11:30:46 - Initializing Spring embedded WebApplicationContext -2024-08-07 11:30:46 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 11:30:46 - Root WebApplicationContext: initialization completed in 631 ms -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 11:30:46 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 11:30:46 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 11:30:46 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 11:30:46 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 11:30:46 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 11:30:46 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 11:30:46 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 11:30:46 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 11:30:46 - HikariPool-1 - configuration: -2024-08-07 11:30:46 - allowPoolSuspension.............false -2024-08-07 11:30:46 - autoCommit......................true -2024-08-07 11:30:46 - catalog.........................none -2024-08-07 11:30:46 - connectionInitSql...............none -2024-08-07 11:30:46 - connectionTestQuery.............none -2024-08-07 11:30:46 - connectionTimeout...............30000 -2024-08-07 11:30:46 - dataSource......................none -2024-08-07 11:30:46 - dataSourceClassName.............none -2024-08-07 11:30:46 - dataSourceJNDI..................none -2024-08-07 11:30:46 - dataSourceProperties............{password=<masked>} -2024-08-07 11:30:46 - driverClassName................."org.h2.Driver" -2024-08-07 11:30:46 - exceptionOverrideClassName......none -2024-08-07 11:30:46 - healthCheckProperties...........{} -2024-08-07 11:30:46 - healthCheckRegistry.............none -2024-08-07 11:30:46 - idleTimeout.....................600000 -2024-08-07 11:30:46 - initializationFailTimeout.......1 -2024-08-07 11:30:46 - isolateInternalQueries..........false -2024-08-07 11:30:46 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 11:30:46 - keepaliveTime...................0 -2024-08-07 11:30:46 - leakDetectionThreshold..........0 -2024-08-07 11:30:46 - maxLifetime.....................1800000 -2024-08-07 11:30:46 - maximumPoolSize.................10 -2024-08-07 11:30:46 - metricRegistry..................none -2024-08-07 11:30:46 - metricsTrackerFactory...........none -2024-08-07 11:30:46 - minimumIdle.....................10 -2024-08-07 11:30:46 - password........................<masked> -2024-08-07 11:30:46 - poolName........................"HikariPool-1" -2024-08-07 11:30:46 - readOnly........................false -2024-08-07 11:30:46 - registerMbeans..................false -2024-08-07 11:30:46 - scheduledExecutor...............none -2024-08-07 11:30:46 - schema..........................none -2024-08-07 11:30:46 - threadFactory...................internal -2024-08-07 11:30:46 - transactionIsolation............default -2024-08-07 11:30:46 - username........................"sa" -2024-08-07 11:30:46 - validationTimeout...............5000 -2024-08-07 11:30:46 - HikariPool-1 - Starting... -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:60379] -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 84 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:46 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:46 - [javax.management.remote.rmi.RMIConnectionImpl@241af0a4: connectionId=rmi://127.0.0.1 1] closing. -2024-08-07 11:30:46 - [javax.management.remote.rmi.RMIConnectionImpl@241af0a4: connectionId=rmi://127.0.0.1 1] closed. -2024-08-07 11:30:46 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 11:30:46 - HikariPool-1 - Start completed. -2024-08-07 11:30:46 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 11:30:46 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 11:30:46 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 11:30:46 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 11:30:46 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 11:30:46 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 11:30:46 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 11:30:46 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 11:30:46 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@15f861ee] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@15f861ee] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@15f861ee] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@15f861ee] to [STARTING] -2024-08-07 11:30:46 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@15f861ee] to [STARTED] -2024-08-07 11:30:46 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 11:30:46 - Filter 'requestContextFilter' configured for use -2024-08-07 11:30:46 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 11:30:46 - Filter 'characterEncodingFilter' configured for use -2024-08-07 11:30:46 - Filter 'formContentFilter' configured for use -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 11:30:46 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 11:30:46 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 11:30:46 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 11:30:46 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.mapper.MapperListener@3be3e76c] to [STARTING_PREP] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.mapper.MapperListener@3be3e76c] to [STARTING] -2024-08-07 11:30:46 - Registered host [localhost] -2024-08-07 11:30:46 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 11:30:46 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 11:30:46 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 11:30:46 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 11:30:46 - Setting state for [org.apache.catalina.mapper.MapperListener@3be3e76c] to [STARTED] -2024-08-07 11:30:46 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 11:30:46 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 11:30:46 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 11:30:46 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 11:30:46 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 11:30:46 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 11:30:46 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 11:30:46 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:30:46 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 11:30:46 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 11:30:46 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 11:30:46 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 11:30:46 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 11:30:46 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 11:30:46 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 11:30:46 - HHH000206: 'hibernate.properties' not found -2024-08-07 11:30:46 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 11:30:46 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 11:30:46 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 11:30:46 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 11:30:46 - HHH000026: Second-level cache disabled -2024-08-07 11:30:46 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 11:30:46 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 11:30:46 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 11:30:46 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 11:30:46 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 11:30:46 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 11:30:46 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 11:30:46 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 11:30:46 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 11:30:46 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 11:30:46 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 11:30:46 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 11:30:46 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 11:30:46 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 11:30:46 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 11:30:46 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 11:30:46 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 11:30:46 - Adding type registration image -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 11:30:46 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 11:30:46 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 11:30:46 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 11:30:46 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 11:30:46 - Adding type registration short -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 11:30:46 - Adding type registration short -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 11:30:46 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 11:30:46 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 11:30:46 - Adding type registration int -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 11:30:46 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 11:30:46 - Adding type registration long -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 11:30:46 - Adding type registration long -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 11:30:46 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 11:30:46 - Adding type registration float -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 11:30:46 - Adding type registration float -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 11:30:46 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 11:30:46 - Adding type registration double -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 11:30:46 - Adding type registration double -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 11:30:46 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 11:30:46 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 11:30:46 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 11:30:46 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 11:30:46 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 11:30:46 - Adding type registration character -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 11:30:46 - Adding type registration char -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 11:30:46 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 11:30:46 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 11:30:46 - Adding type registration string -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 11:30:46 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 11:30:46 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 11:30:46 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 11:30:46 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 11:30:46 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 11:30:46 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 11:30:46 - Adding type registration text -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 11:30:46 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 11:30:46 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 11:30:46 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 11:30:46 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 11:30:46 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 11:30:46 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 11:30:46 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 11:30:46 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 11:30:46 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 11:30:46 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 11:30:46 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 11:30:46 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 11:30:46 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 11:30:46 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 11:30:46 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 11:30:46 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 11:30:46 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 11:30:46 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 11:30:46 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 11:30:46 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 11:30:46 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 11:30:46 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 11:30:46 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 11:30:46 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 11:30:46 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 11:30:46 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 11:30:46 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 11:30:46 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 11:30:46 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 11:30:46 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 11:30:46 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 11:30:46 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 11:30:46 - Adding type registration date -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 11:30:46 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 11:30:46 - Adding type registration time -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 11:30:46 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 11:30:46 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 11:30:46 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 11:30:46 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 11:30:46 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 11:30:46 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 11:30:46 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 11:30:46 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 11:30:46 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 11:30:46 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 11:30:46 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 11:30:46 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 11:30:46 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 11:30:46 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 11:30:46 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 11:30:46 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 11:30:46 - Adding type registration class -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-07 11:30:46 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-07 11:30:46 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 11:30:46 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 11:30:46 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 11:30:46 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-07 11:30:46 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-07 11:30:46 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-07 11:30:46 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-07 11:30:46 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-07 11:30:46 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-07 11:30:46 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@2c5708e7 -2024-08-07 11:30:46 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@2c5708e7 -2024-08-07 11:30:46 - Adding type registration url -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-07 11:30:46 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-07 11:30:46 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@4e26564d -2024-08-07 11:30:46 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@42238078 -2024-08-07 11:30:46 - Adding type registration object -> org.hibernate.type.JavaObjectType@79445efb -2024-08-07 11:30:46 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@79445efb -2024-08-07 11:30:46 - Adding type registration null -> org.hibernate.type.NullType@573870cb -2024-08-07 11:30:46 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@5b88af70 -2024-08-07 11:30:46 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@2739ecc0 -2024-08-07 11:30:46 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@2932e15f -2024-08-07 11:30:46 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@3d98729a -2024-08-07 11:30:46 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@2375a976 -2024-08-07 11:30:46 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@4bc21e34 -2024-08-07 11:30:46 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@7544260a -2024-08-07 11:30:46 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@bb6869a -2024-08-07 11:30:46 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 11:30:46 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 11:30:46 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bddf43] into BootstrapContext; was [null] -2024-08-07 11:30:46 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bddf43) [was null] -2024-08-07 11:30:46 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@23708f14] into BootstrapContext; was [null] -2024-08-07 11:30:46 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@3dfc59c5] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@2cff5aa3] -2024-08-07 11:30:46 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 11:30:46 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 11:30:46 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-07 11:30:46 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 11:30:46 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 11:30:46 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bddf43] -2024-08-07 11:30:46 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bddf43] -2024-08-07 11:30:46 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 11:30:46 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 11:30:46 - JDBC version : 4.2 -2024-08-07 11:30:46 - HikariPool-1 - After adding stats (total=5, active=1, idle=4, waiting=0) -2024-08-07 11:30:46 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 11:30:46 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 11:30:46 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 11:30:46 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 11:30:46 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 11:30:46 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 11:30:46 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 11:30:46 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 11:30:46 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 11:30:46 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 11:30:46 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 11:30:46 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 11:30:46 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@5111f814] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@71eafb64] -2024-08-07 11:30:46 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 11:30:46 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 11:30:46 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 11:30:46 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 11:30:46 - Import with entity name Action -2024-08-07 11:30:46 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 11:30:46 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 11:30:46 - Binding column: AnnotatedColumn() -2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 11:30:46 - MetadataSourceProcessor property id with lazy=false -2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 11:30:46 - building BasicValue for id -2024-08-07 11:30:46 - Skipping column re-registration: action.id -2024-08-07 11:30:46 - Building property id -2024-08-07 11:30:46 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 11:30:46 - Binding column: AnnotatedJoinColumn() -2024-08-07 11:30:46 - Binding column: AnnotatedColumn() -2024-08-07 11:30:46 - Building property event -2024-08-07 11:30:46 - Binding column: AnnotatedColumn() -2024-08-07 11:30:46 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 11:30:46 - building BasicValue for sequence -2024-08-07 11:30:46 - Skipping column re-registration: action.sequence -2024-08-07 11:30:46 - Building property sequence -2024-08-07 11:30:46 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 11:30:46 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 11:30:46 - Import with entity name BillAction -2024-08-07 11:30:46 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 11:30:46 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 11:30:46 - Binding column: AnnotatedColumn() -2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 11:30:46 - MetadataSourceProcessor property id with lazy=false -2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 11:30:46 - building BasicValue for id -2024-08-07 11:30:46 - Skipping column re-registration: bill_action.id -2024-08-07 11:30:46 - Building property id -2024-08-07 11:30:46 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 11:30:46 - Binding column: AnnotatedJoinColumn() -2024-08-07 11:30:46 - Binding column: AnnotatedColumn() -2024-08-07 11:30:46 - Building property action -2024-08-07 11:30:46 - Binding column: AnnotatedColumn() -2024-08-07 11:30:46 - MetadataSourceProcessor property price with lazy=false -2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 11:30:46 - building BasicValue for price -2024-08-07 11:30:46 - Skipping column re-registration: bill_action.price -2024-08-07 11:30:46 - Building property price -2024-08-07 11:30:46 - Binding column: AnnotatedColumn() -2024-08-07 11:30:46 - MetadataSourceProcessor property title with lazy=false -2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 11:30:46 - building BasicValue for title -2024-08-07 11:30:46 - Skipping column re-registration: bill_action.title -2024-08-07 11:30:46 - Building property title -2024-08-07 11:30:46 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 11:30:46 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 11:30:46 - Import with entity name MemberAction -2024-08-07 11:30:46 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 11:30:46 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 11:30:46 - Binding column: AnnotatedColumn() -2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 11:30:46 - MetadataSourceProcessor property id with lazy=false -2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 11:30:46 - building BasicValue for id -2024-08-07 11:30:46 - Skipping column re-registration: member_action.id -2024-08-07 11:30:46 - Building property id -2024-08-07 11:30:46 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 11:30:46 - Binding column: AnnotatedJoinColumn() -2024-08-07 11:30:46 - Binding column: AnnotatedColumn() -2024-08-07 11:30:46 - Building property action -2024-08-07 11:30:46 - Binding column: AnnotatedColumn() -2024-08-07 11:30:46 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 11:30:46 - building BasicValue for memberGroupId -2024-08-07 11:30:46 - Skipping column re-registration: member_action.member_group_id -2024-08-07 11:30:46 - Building property memberGroupId -2024-08-07 11:30:46 - Binding column: AnnotatedColumn() -2024-08-07 11:30:46 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 11:30:46 - building BasicValue for memberName -2024-08-07 11:30:46 - Skipping column re-registration: member_action.member_name -2024-08-07 11:30:46 - Building property memberName -2024-08-07 11:30:46 - Binding column: AnnotatedColumn() -2024-08-07 11:30:46 - MetadataSourceProcessor property status with lazy=false -2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 11:30:46 - building BasicValue for status -2024-08-07 11:30:46 - Skipping column re-registration: member_action.status -2024-08-07 11:30:46 - Building property status -2024-08-07 11:30:46 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 11:30:46 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 11:30:46 - Import with entity name Event -2024-08-07 11:30:46 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 11:30:46 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 11:30:46 - Binding column: AnnotatedColumn() -2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 11:30:46 - MetadataSourceProcessor property id with lazy=false -2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 11:30:46 - building BasicValue for id -2024-08-07 11:30:46 - Skipping column re-registration: event.id -2024-08-07 11:30:46 - Building property id -2024-08-07 11:30:46 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 11:30:46 - Binding column: AnnotatedColumn() -2024-08-07 11:30:46 - MetadataSourceProcessor property name with lazy=false -2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 11:30:46 - building BasicValue for name -2024-08-07 11:30:46 - Skipping column re-registration: event.name -2024-08-07 11:30:46 - Building property name -2024-08-07 11:30:46 - Binding column: AnnotatedColumn() -2024-08-07 11:30:46 - MetadataSourceProcessor property password with lazy=false -2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 11:30:46 - building BasicValue for password -2024-08-07 11:30:46 - Skipping column re-registration: event.password -2024-08-07 11:30:46 - Building property password -2024-08-07 11:30:46 - Binding column: AnnotatedColumn() -2024-08-07 11:30:46 - MetadataSourceProcessor property token with lazy=false -2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 11:30:46 - building BasicValue for token -2024-08-07 11:30:46 - Skipping column re-registration: event.token -2024-08-07 11:30:46 - Building property token -2024-08-07 11:30:46 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 11:30:46 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 11:30:46 - Import with entity name EventStep -2024-08-07 11:30:46 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 11:30:46 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 11:30:46 - Binding column: AnnotatedColumn() -2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 11:30:46 - MetadataSourceProcessor property id with lazy=false -2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 11:30:46 - building BasicValue for id -2024-08-07 11:30:46 - Skipping column re-registration: event_step.id -2024-08-07 11:30:46 - Building property id -2024-08-07 11:30:46 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 11:30:46 - Binding column: AnnotatedJoinColumn() -2024-08-07 11:30:46 - Binding column: AnnotatedColumn() -2024-08-07 11:30:46 - Building property event -2024-08-07 11:30:46 - Binding column: AnnotatedColumn() -2024-08-07 11:30:46 - MetadataSourceProcessor property name with lazy=false -2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 11:30:46 - building BasicValue for name -2024-08-07 11:30:46 - Skipping column re-registration: event_step.name -2024-08-07 11:30:46 - Building property name -2024-08-07 11:30:46 - Binding column: AnnotatedColumn() -2024-08-07 11:30:46 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 11:30:46 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 11:30:46 - building BasicValue for sequence -2024-08-07 11:30:46 - Skipping column re-registration: event_step.sequence -2024-08-07 11:30:46 - Building property sequence -2024-08-07 11:30:46 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 11:30:46 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 11:30:46 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 11:30:46 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 11:30:46 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 11:30:46 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 11:30:46 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 11:30:46 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 11:30:46 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 11:30:46 - Building session factory -2024-08-07 11:30:46 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 11:30:46 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@61d61b0e, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@3c2188f, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.9276564684631348590, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=45209, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.9276564684631348590, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@646bf8a6, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 11:30:46 - Session factory constructed with filter configurations : {} -2024-08-07 11:30:46 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 11:30:46 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 11:30:46 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 11:30:46 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 11:30:46 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 11:30:46 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 11:30:46 - Loaded expression factory via original TCCL -2024-08-07 11:30:46 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 11:30:46 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 11:30:46 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 11:30:46 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 11:30:46 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 11:30:46 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 11:30:46 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 11:30:46 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 11:30:46 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@56b48163] under count; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@32121140] under every; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@96c840a] under any; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@31f5ffb9] under sinh; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@19b3d3a4] under cosh; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3a9040f0] under tanh; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@33214124] under pi; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2d3768ce] under log; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 11:30:46 - Registering alternate key : length -> character_length -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@3aa8c337] under position; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@79b0956e] under overlay; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@37f627d0] under trim; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@7f9d40b3] under cast; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@ca2a03f] under collate; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@3293030b] under extract; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@4e3d36c2] under ifnull; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@263e512e] under pad; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@288b8663] under str; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@261099e1] under format; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@7d7c05fa] under timestampadd; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@7fa68ff4] under timestampdiff; prior registration was null -2024-08-07 11:30:46 - Registering alternate key : dateadd -> timestampadd -2024-08-07 11:30:46 - Registering alternate key : datediff -> timestampdiff -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2f64f99f] under current_date; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16c1d11] under current_time; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@123d0816] under current_timestamp; prior registration was null -2024-08-07 11:30:46 - Registering alternate key : current date -> current_date -2024-08-07 11:30:46 - Registering alternate key : current time -> current_time -2024-08-07 11:30:46 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@4601a148] under local_date; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@4e210016] under local_time; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2fc40856] under local_datetime; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5543d800] under offset_datetime; prior registration was null -2024-08-07 11:30:46 - Registering alternate key : local date -> local_date -2024-08-07 11:30:46 - Registering alternate key : local time -> local_time -2024-08-07 11:30:46 - Registering alternate key : local datetime -> local_datetime -2024-08-07 11:30:46 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1e033801] under instant; prior registration was null -2024-08-07 11:30:46 - Registering alternate key : current_instant -> instant -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@1be12e05] under sql; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@66ab088c] under count; prior registration was org.hibernate.dialect.function.CountFunction@56b48163 -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@43312512] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@33214124 -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@13f7c165] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 11:30:46 - Registering alternate key : day -> day_of_month -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@4e210016 -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@2fc40856 -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@30ca66c5] under trunc; prior registration was null -2024-08-07 11:30:46 - Registering alternate key : truncate -> trunc -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4abfa2ff] under date_trunc; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 11:30:46 - Registering alternate key : chr -> char -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@38c1b1a7] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@3aa8c337 -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@73230721] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 11:30:46 - Registering alternate key : every -> bool_and -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 11:30:46 - Registering alternate key : any -> bool_or -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@10bcbbce] under format; prior registration was org.hibernate.dialect.function.FormatFunction@261099e1 -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@31f9f9b3] under listagg; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@62264d4f] under mode; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@2bc0603f] under percentile_cont; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@4ed19540] under percentile_disc; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@69f24965] under rank; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@4eab9aec] under dense_rank; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@5a45c218] under percent_rank; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@2c6efee3] under cume_dist; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@62525dd3] under array; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@56adbb07] under array_list; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@237ee2e1] under array_agg; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@251e2f4a] under array_position; prior registration was null -2024-08-07 11:30:46 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 11:30:46 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@623ded82] under array_positions; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@4e826fd4] under array_positions_list; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5f14590c] under array_length; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@1ce8084a] under array_concat; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@222eda8a] under array_prepend; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@3331800f] under array_append; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@76eee0b1] under array_contains; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@2119b989] under array_contains_nullable; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@152d2a58] under array_overlaps; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@50b2ba2c] under array_overlaps_nullable; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5d373794] under array_get; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@3a012678] under array_set; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@329efc61] under array_remove; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@2c86b0ea] under array_remove_index; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4e481512] under array_slice; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@5570dc21] under array_replace; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1477d4e6] under array_trim; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@3d213a2b] under array_fill; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@27691ee8] under array_fill_list; prior registration was null -2024-08-07 11:30:46 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@5ec3689b] under array_to_string; prior registration was null -2024-08-07 11:30:46 - abs(NUMERIC arg) -2024-08-07 11:30:46 - Double acos(NUMERIC arg) -2024-08-07 11:30:46 - Boolean any(BOOLEAN predicate) -2024-08-07 11:30:46 - array( ... ) -2024-08-07 11:30:46 - array_agg(arg) -2024-08-07 11:30:46 - array_append( ... ) -2024-08-07 11:30:46 - array_concat( ... ) -2024-08-07 11:30:46 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 11:30:46 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 11:30:46 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 11:30:46 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 11:30:46 - array_get(ARRAY array, INTEGER index) -2024-08-07 11:30:46 - Integer array_length(ARRAY array) -2024-08-07 11:30:46 - array_list( ... ) -2024-08-07 11:30:46 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 11:30:46 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 11:30:46 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 11:30:46 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 11:30:46 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 11:30:46 - array_prepend( ... ) -2024-08-07 11:30:46 - array_remove( ... ) -2024-08-07 11:30:46 - array_remove_index( ... ) -2024-08-07 11:30:46 - array_replace( ... ) -2024-08-07 11:30:46 - array_set( ... ) -2024-08-07 11:30:46 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 11:30:46 - String array_to_string( ... ) -2024-08-07 11:30:46 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 11:30:46 - Integer ascii(STRING arg) -2024-08-07 11:30:46 - Double asin(NUMERIC arg) -2024-08-07 11:30:46 - Double atan(NUMERIC arg) -2024-08-07 11:30:46 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 11:30:46 - avg(NUMERIC arg) -2024-08-07 11:30:46 - bit_and(arg) -2024-08-07 11:30:46 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 11:30:46 - bit_or(arg) -2024-08-07 11:30:46 - bitand(arg0, arg1) -2024-08-07 11:30:46 - bitnot(arg) -2024-08-07 11:30:46 - bitor(arg0, arg1) -2024-08-07 11:30:46 - bitxor(arg0, arg1) -2024-08-07 11:30:46 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 11:30:46 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 11:30:46 - cast(arg as Type) -2024-08-07 11:30:46 - ceiling(NUMERIC arg) -2024-08-07 11:30:46 - Character char(INTEGER arg) -2024-08-07 11:30:46 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 11:30:46 - Character chr(INTEGER arg) -2024-08-07 11:30:46 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 11:30:46 - String collate(STRING string as COLLATION collation) -2024-08-07 11:30:46 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 11:30:46 - Double cos(NUMERIC arg) -2024-08-07 11:30:46 - Double cosh(NUMERIC arg) -2024-08-07 11:30:46 - Double cot(NUMERIC arg) -2024-08-07 11:30:46 - Long count([distinct ]{arg|*}) -2024-08-07 11:30:46 - Double cume_dist([arg0[, ...]]) -2024-08-07 11:30:46 - Date curdate() -2024-08-07 11:30:46 - Date current date -2024-08-07 11:30:46 - Time current time -2024-08-07 11:30:46 - Timestamp current timestamp -2024-08-07 11:30:46 - Date current_date -2024-08-07 11:30:46 - Instant current_instant -2024-08-07 11:30:46 - Time current_time -2024-08-07 11:30:46 - Timestamp current_timestamp -2024-08-07 11:30:46 - Time curtime() -2024-08-07 11:30:46 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 11:30:46 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 11:30:46 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 11:30:46 - Integer day(DATE arg) -2024-08-07 11:30:46 - Integer day_of_month(DATE arg) -2024-08-07 11:30:46 - Integer day_of_week(DATE arg) -2024-08-07 11:30:46 - Integer day_of_year(DATE arg) -2024-08-07 11:30:46 - String dayname(DATE arg) -2024-08-07 11:30:46 - Double degrees(NUMERIC arg) -2024-08-07 11:30:46 - Long dense_rank([arg0[, ...]]) -2024-08-07 11:30:46 - Boolean every(BOOLEAN predicate) -2024-08-07 11:30:46 - Double exp(NUMERIC arg) -2024-08-07 11:30:46 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 11:30:46 - first_valueANY value -2024-08-07 11:30:46 - floor(NUMERIC arg) -2024-08-07 11:30:46 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 11:30:46 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 11:30:46 - Integer hour(TIME arg) -2024-08-07 11:30:46 - ifnull(arg0, arg1) -2024-08-07 11:30:46 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 11:30:46 - Instant instant -2024-08-07 11:30:46 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 11:30:46 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 11:30:46 - last_valueANY value -2024-08-07 11:30:46 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 11:30:46 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 11:30:46 - String left(STRING string, INTEGER length) -2024-08-07 11:30:46 - Integer length(STRING_OR_CLOB arg) -2024-08-07 11:30:46 - String listagg(STRING arg0, STRING arg1) -2024-08-07 11:30:46 - Double ln(NUMERIC arg) -2024-08-07 11:30:46 - LocalDate local date -2024-08-07 11:30:46 - LocalDateTime local datetime -2024-08-07 11:30:46 - LocalTime local time -2024-08-07 11:30:46 - LocalDate local_date -2024-08-07 11:30:46 - LocalDateTime local_datetime -2024-08-07 11:30:46 - LocalTime local_time -2024-08-07 11:30:46 - Time localtime -2024-08-07 11:30:46 - Timestamp localtimestamp -2024-08-07 11:30:46 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 11:30:46 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 11:30:46 - Double log10(NUMERIC arg) -2024-08-07 11:30:46 - String lower(STRING string) -2024-08-07 11:30:46 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 11:30:46 - String ltrim(STRING string) -2024-08-07 11:30:46 - max(COMPARABLE arg) -2024-08-07 11:30:46 - Double median(NUMERIC arg) -2024-08-07 11:30:46 - Integer microsecond(TIME arg) -2024-08-07 11:30:46 - min(COMPARABLE arg) -2024-08-07 11:30:46 - Integer minute(TIME arg) -2024-08-07 11:30:46 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 11:30:46 - mode() -2024-08-07 11:30:46 - Integer month(DATE arg) -2024-08-07 11:30:46 - String monthname(DATE arg) -2024-08-07 11:30:46 - Timestamp now() -2024-08-07 11:30:46 - nth_valueANY value, INTEGER nth -2024-08-07 11:30:46 - nullif(arg0, arg1) -2024-08-07 11:30:46 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 11:30:46 - OffsetDateTime offset datetime -2024-08-07 11:30:46 - OffsetDateTime offset_datetime -2024-08-07 11:30:46 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 11:30:46 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 11:30:46 - Double percent_rank([arg0[, ...]]) -2024-08-07 11:30:46 - percentile_cont(NUMERIC arg) -2024-08-07 11:30:46 - percentile_disc(NUMERIC arg) -2024-08-07 11:30:46 - Double pi -2024-08-07 11:30:46 - Integer position(STRING pattern in STRING string) -2024-08-07 11:30:46 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 11:30:46 - Integer quarter(DATE arg) -2024-08-07 11:30:46 - Double radians(NUMERIC arg) -2024-08-07 11:30:46 - Double rand([INTEGER seed]) -2024-08-07 11:30:46 - Long rank([arg0[, ...]]) -2024-08-07 11:30:46 - String repeat(STRING string, INTEGER times) -2024-08-07 11:30:46 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 11:30:46 - String right(STRING string, INTEGER length) -2024-08-07 11:30:46 - round(NUMERIC number[, INTEGER places]) -2024-08-07 11:30:46 - Long row_number() -2024-08-07 11:30:46 - Long rownum() -2024-08-07 11:30:46 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 11:30:46 - String rtrim(STRING string) -2024-08-07 11:30:46 - Integer second(TIME arg) -2024-08-07 11:30:46 - Integer sign(NUMERIC arg) -2024-08-07 11:30:46 - Double sin(NUMERIC arg) -2024-08-07 11:30:46 - Double sinh(NUMERIC arg) -2024-08-07 11:30:46 - String soundex(arg) -2024-08-07 11:30:46 - String space(INTEGER arg) -2024-08-07 11:30:46 - Object sql -2024-08-07 11:30:46 - Double sqrt(NUMERIC arg) -2024-08-07 11:30:46 - Double stddev_pop(NUMERIC arg) -2024-08-07 11:30:46 - Double stddev_samp(NUMERIC arg) -2024-08-07 11:30:46 - String str(arg) -2024-08-07 11:30:46 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 11:30:46 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 11:30:46 - sum(arg) -2024-08-07 11:30:46 - Timestamp sysdate -2024-08-07 11:30:46 - Double tan(NUMERIC arg) -2024-08-07 11:30:46 - Double tanh(NUMERIC arg) -2024-08-07 11:30:46 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 11:30:46 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 11:30:46 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 11:30:46 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 11:30:46 - trunc( ... ) -2024-08-07 11:30:46 - truncate( ... ) -2024-08-07 11:30:46 - String upper(STRING string) -2024-08-07 11:30:46 - Double var_pop(NUMERIC arg) -2024-08-07 11:30:46 - Double var_samp(NUMERIC arg) -2024-08-07 11:30:46 - Integer week(DATE arg) -2024-08-07 11:30:46 - Integer year(DATE arg) -2024-08-07 11:30:46 - Starting QueryInterpretationCache(2048) -2024-08-07 11:30:46 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 11:30:46 - Configured EntityCopyObserver strategy: disallow -2024-08-07 11:30:46 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 11:30:46 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 11:30:46 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 82 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 84 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:46 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 11:30:46 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:46 - [javax.management.remote.rmi.RMIConnectionImpl@5ac4cd01: connectionId=rmi://127.0.0.1 2] closing. -2024-08-07 11:30:46 - [javax.management.remote.rmi.RMIConnectionImpl@5ac4cd01: connectionId=rmi://127.0.0.1 2] closed. -2024-08-07 11:30:47 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 11:30:47 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 11:30:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 11:30:47 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 11:30:47 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 11:30:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 11:30:47 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 11:30:47 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 11:30:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 11:30:47 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 11:30:47 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 11:30:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 11:30:47 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 11:30:47 - Starting post-init callbacks -2024-08-07 11:30:47 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 11:30:47 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 11:30:47 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 11:30:47 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 11:30:47 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 11:30:47 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 11:30:47 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 11:30:47 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 11:30:47 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 11:30:47 - Created new SQL alias : ba1_0 -2024-08-07 11:30:47 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 11:30:47 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@45689582] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 11:30:47 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 11:30:47 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 11:30:47 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 11:30:47 - Version select: select id from bill_action where id=? -2024-08-07 11:30:47 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 11:30:47 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 11:30:47 - Delete (0): delete from bill_action where id=? -2024-08-07 11:30:47 - Created new SQL alias : ma1_0 -2024-08-07 11:30:47 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 11:30:47 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7fba30fe] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 11:30:47 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 11:30:47 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 11:30:47 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 11:30:47 - Version select: select id from member_action where id=? -2024-08-07 11:30:47 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 11:30:47 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 11:30:47 - Delete (0): delete from member_action where id=? -2024-08-07 11:30:47 - Created new SQL alias : e1_0 -2024-08-07 11:30:47 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 11:30:47 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 11:30:47 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 11:30:47 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 11:30:47 - Version select: select id from event where id=? -2024-08-07 11:30:47 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 11:30:47 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 11:30:47 - Delete (0): delete from event where id=? -2024-08-07 11:30:47 - Created new SQL alias : a1_0 -2024-08-07 11:30:47 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 11:30:47 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@76ccde41] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 11:30:47 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 11:30:47 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 11:30:47 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 11:30:47 - Version select: select id from action where id=? -2024-08-07 11:30:47 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 11:30:47 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 11:30:47 - Delete (0): delete from action where id=? -2024-08-07 11:30:47 - Created new SQL alias : es1_0 -2024-08-07 11:30:47 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 11:30:47 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@3e8eea59] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 11:30:47 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 11:30:47 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 11:30:47 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 11:30:47 - Version select: select id from event_step where id=? -2024-08-07 11:30:47 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 11:30:47 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 11:30:47 - Delete (0): delete from event_step where id=? -2024-08-07 11:30:47 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 11:30:47 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@5111f814] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@76d220eb] -2024-08-07 11:30:47 - Checking 0 named HQL queries -2024-08-07 11:30:47 - Checking 0 named SQL queries -2024-08-07 11:30:47 - - drop table if exists action cascade -2024-08-07 11:30:47 - - drop table if exists bill_action cascade -2024-08-07 11:30:47 - - drop table if exists event cascade -2024-08-07 11:30:47 - - drop table if exists event_step cascade -2024-08-07 11:30:47 - - drop table if exists member_action cascade -2024-08-07 11:30:47 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 11:30:47 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 11:30:47 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 11:30:47 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 11:30:47 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 11:30:47 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 11:30:47 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 11:30:47 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 11:30:47 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 11:30:47 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@77feca04 -2024-08-07 11:30:47 - Registering SessionFactory: 8b58fbb8-39d5-4618-9efd-2abf7c341d29 (<unnamed>) -2024-08-07 11:30:47 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 11:30:47 - Instantiated SessionFactory -2024-08-07 11:30:47 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'actionService' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 11:30:47 - Initializing JpaMetamodelMappingContext… -2024-08-07 11:30:47 - Finished initializing JpaMetamodelMappingContext -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - Statistics initialized [enabled=false] -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 11:30:47 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 11:30:47 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - Looking up named query BillAction.findByAction_Event -2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:30:47 - Did not find named query BillAction.findByAction_Event -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - Looking up named query BillAction.findByAction_Id -2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:30:47 - Did not find named query BillAction.findByAction_Id -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:30:47 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:30:47 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 11:30:47 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 11:30:47 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(725868986071750)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(725868986071750)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(725868986071750)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(725868986071750)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(725868986071750).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:30:47 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 11:30:47 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 11:30:47 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 11:30:47 - Looking up named query MemberAction.findByAction -2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:30:47 - Did not find named query MemberAction.findByAction -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:30:47 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:30:47 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:30:47 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 11:30:47 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 11:30:47 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 11:30:47 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:30:47 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 11:30:47 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 11:30:47 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 11:30:47 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 11:30:47 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - Looking up named query Event.findByToken -2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:30:47 - Did not find named query Event.findByToken -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 11:30:47 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 11:30:47 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 11:30:47 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:30:47 - Did not find named query Action.findLastByEvent.count -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 11:30:47 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 11:30:47 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 11:30:47 - Looking up named query Action.findByIdAndEvent -2024-08-07 11:30:47 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 11:30:47 - Did not find named query Action.findByIdAndEvent -2024-08-07 11:30:47 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 11:30:47 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 11:30:47 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 11:30:47 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 11:30:47 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'eventService' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 11:30:47 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 11:30:47 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 11:30:47 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 11:30:47 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 11:30:47 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 11:30:47 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 11:30:47 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 11:30:47 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 11:30:47 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 11:30:47 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 11:30:47 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'actionController' -2024-08-07 11:30:47 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 11:30:47 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'eventController' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'authService' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 11:30:47 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 11:30:47 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 11:30:47 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 11:30:47 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 11:30:47 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:30:47 - Loaded expression factory via original TCCL -2024-08-07 11:30:47 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 11:30:47 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 11:30:47 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 11:30:47 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 11:30:47 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 11:30:47 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 11:30:47 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 11:30:47 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 11:30:47 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 11:30:47 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 11:30:47 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 11:30:47 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 11:30:47 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 11:30:47 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 11:30:47 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'error' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 11:30:47 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 11:30:47 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 11:30:47 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 11:30:47 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 11:30:47 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:30:47 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 11:30:47 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 82 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 82 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 11:30:47 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:30:47 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 11:30:47 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 82 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 84 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 82 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 82 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:47 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 82 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:47 - [javax.management.remote.rmi.RMIConnectionImpl@108d5a75: connectionId=rmi://127.0.0.1 3] closing. -2024-08-07 11:30:47 - [javax.management.remote.rmi.RMIConnectionImpl@108d5a75: connectionId=rmi://127.0.0.1 3] closed. -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 11:30:47 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 11:30:47 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 11:30:47 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 11:30:47 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 11:30:47 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 11:30:47 - - s.h.p.EventController: - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) -2024-08-07 11:30:47 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 11:30:47 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 11:30:47 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 11:30:47 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 11:30:47 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 11:30:47 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 11:30:47 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 11:30:47 - 'beanNameHandlerMapping' {} -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 11:30:47 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 11:30:47 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 11:30:47 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 11:30:47 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:30:47 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:30:47 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 11:30:47 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:30:47 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 11:30:47 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 11:30:47 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 11:30:47 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 11:30:47 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 11:30:47 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 11:30:47 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 11:30:47 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 11:30:47 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 11:30:47 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 11:30:47 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 11:30:47 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 11:30:47 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 11:30:47 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 11:30:47 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 11:30:47 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 11:30:47 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 11:30:47 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 11:30:47 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 11:30:47 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 11:30:47 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 11:30:47 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:30:47 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 11:30:47 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:30:47 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 11:30:47 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 11:30:47 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 11:30:47 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 11:30:47 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 11:30:47 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 11:30:47 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 11:30:47 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 11:30:47 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 11:30:47 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 11:30:47 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 11:30:47 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 11:30:47 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 11:30:47 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 11:30:47 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 11:30:47 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 11:30:47 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 11:30:47 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 11:30:47 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 11:30:47 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 11:30:47 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 11:30:47 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 11:30:47 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 11:30:47 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 11:30:47 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 11:30:47 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 11:30:47 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 11:30:47 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 11:30:47 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 11:30:47 - Using SLF4J as the default logging framework -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 11:30:47 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 11:30:47 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 11:30:47 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 11:30:47 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 11:30:47 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 11:30:47 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 11:30:47 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 11:30:47 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 11:30:47 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 11:30:47 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 11:30:47 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 11:30:47 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 11:30:47 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 11:30:47 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 11:30:47 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 11:30:47 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 11:30:47 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 11:30:47 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 11:30:47 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 11:30:47 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 11:30:47 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 11:30:47 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 11:30:47 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 11:30:47 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 11:30:47 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 11:30:47 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 11:30:47 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 11:30:47 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 11:30:47 - Registering beans for JMX exposure on startup -2024-08-07 11:30:47 - Auto-detecting user-defined JMX MBeans -2024-08-07 11:30:47 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 11:30:47 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 11:30:47 - Starting beans in phase -2147483647 -2024-08-07 11:30:47 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 11:30:47 - Starting beans in phase 2147481599 -2024-08-07 11:30:47 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 11:30:47 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 11:30:47 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 11:30:47 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 11:30:47 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 11:30:47 - Successfully started bean 'webServerStartStop' -2024-08-07 11:30:47 - Starting beans in phase 2147482623 -2024-08-07 11:30:47 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 11:30:47 - Starting beans in phase 2147483647 -2024-08-07 11:30:47 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.web.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 11:30:47 - Started HaengdongApplication in 2.224 seconds (process running for 2.452) -2024-08-07 11:30:47 - Application availability state LivenessState changed to CORRECT -2024-08-07 11:30:47 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 82 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 82 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 84 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:47 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 11:30:47 - RMI TCP Connection(1)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:47 - [javax.management.remote.rmi.RMIConnectionImpl@617b62e2: connectionId=rmi://127.0.0.1 4] closing. -2024-08-07 11:30:47 - [javax.management.remote.rmi.RMIConnectionImpl@617b62e2: connectionId=rmi://127.0.0.1 4] closed. -2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:60381] -2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:60380] -2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 84 -2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 84 -2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:47 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:47 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@28699749: connectionId=rmi://127.0.0.1 6] closing. -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@28699749: connectionId=rmi://127.0.0.1 6] closed. -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 84 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@c202951: connectionId=rmi://127.0.0.1 5] closing. -2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@c202951: connectionId=rmi://127.0.0.1 5] closed. -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 84 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@df26538: connectionId=rmi://127.0.0.1 7] closing. -2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@df26538: connectionId=rmi://127.0.0.1 7] closed. -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@810ddcb: connectionId=rmi://127.0.0.1 8] closing. -2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@810ddcb: connectionId=rmi://127.0.0.1 8] closed. -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 82 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 82 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 82 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 84 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 84 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@7d41ca7b: connectionId=rmi://127.0.0.1 10] closing. -2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@7d41ca7b: connectionId=rmi://127.0.0.1 10] closed. -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 84 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@559a7b02: connectionId=rmi://127.0.0.1 9] closing. -2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@559a7b02: connectionId=rmi://127.0.0.1 9] closed. -2024-08-07 11:30:48 - Fetching JDBC Connection from DataSource -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 84 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - Fetching JDBC Connection from DataSource -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 11:30:48 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 11:30:48 - Initializing Servlet 'dispatcherServlet' -2024-08-07 11:30:48 - Detected StandardServletMultipartResolver -2024-08-07 11:30:48 - Detected AcceptHeaderLocaleResolver -2024-08-07 11:30:48 - Detected FixedThemeResolver -2024-08-07 11:30:48 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@a6017f9 -2024-08-07 11:30:48 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@6c8a806c -2024-08-07 11:30:48 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 11:30:48 - Completed initialization in 1 ms -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@7e63fd2e: connectionId=rmi://127.0.0.1 11] closing. -2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@7e63fd2e: connectionId=rmi://127.0.0.1 11] closed. -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@65c367de: connectionId=rmi://127.0.0.1 12] closing. -2024-08-07 11:30:48 - [javax.management.remote.rmi.RMIConnectionImpl@65c367de: connectionId=rmi://127.0.0.1 12] closed. -2024-08-07 11:30:48 - RMI TCP Connection(1)-127.0.0.1: (port 60378) connection closed -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: (port 60378) connection closed -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: (port 60378) connection closed -2024-08-07 11:30:48 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60379,localport=60378] -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60380,localport=60378] -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60381,localport=60378] -2024-08-07 11:30:48 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:60382] -2024-08-07 11:30:48 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60379,localport=60378] -2024-08-07 11:30:48 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60381,localport=60378] -2024-08-07 11:30:48 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60380,localport=60378] -2024-08-07 11:30:48 - RMI TCP Connection(4)-127.0.0.1: (port 60378) op = 80 -2024-08-07 11:30:48 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:48 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6af87130 -2024-08-07 11:30:55 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 11:30:55 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 11:30:55 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.9276564684631348590/conf/jaspic-providers.xml] -2024-08-07 11:30:55 - POST "/api/events", parameters={} -2024-08-07 11:30:55 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 11:30:55 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 11:30:55 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=1234]] -2024-08-07 11:30:55 - Found thread-bound EntityManager [SessionImpl(1038802823<open>)] for JPA transaction -2024-08-07 11:30:55 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 11:30:55 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 11:30:55 - begin -2024-08-07 11:30:55 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@614f7099] -2024-08-07 11:30:55 - Found thread-bound EntityManager [SessionImpl(1038802823<open>)] for JPA transaction -2024-08-07 11:30:55 - Participating in existing transaction -2024-08-07 11:30:55 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 11:30:55 - Executing identity-insert immediately -2024-08-07 11:30:56 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 11:30:56 - Initializer list is empty -2024-08-07 11:30:56 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@6a31ad31 -2024-08-07 11:30:56 - Extracted JDBC value [0] - [1] -2024-08-07 11:30:56 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@14f00044 -2024-08-07 11:30:56 - Initiating transaction commit -2024-08-07 11:30:56 - Committing JPA transaction on EntityManager [SessionImpl(1038802823<open>)] -2024-08-07 11:30:56 - committing -2024-08-07 11:30:56 - Processing flush-time cascades -2024-08-07 11:30:56 - Dirty checking collections -2024-08-07 11:30:56 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 11:30:56 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 11:30:56 - Listing entities: -2024-08-07 11:30:56 - server.haengdong.domain.event.Event{password=1234, name=1234, id=1, token=96ab0f71-6457-4303-bf0e-60cf6562d0f9} -2024-08-07 11:30:56 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 11:30:56 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 11:30:56 - Writing [EventResponse[eventId=96ab0f71-6457-4303-bf0e-60cf6562d0f9]] -2024-08-07 11:30:56 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 11:30:56 - Completed 200 OK -2024-08-07 11:31:15 - POST "/api/events/96ab0f71-6457-4303-bf0e-60cf6562d0f9/member-actions", parameters={} -2024-08-07 11:31:15 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 11:31:15 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 11:31:15 - Read "application/json;charset=UTF-8" to [MemberActionsSaveRequest[members=[이상], status=IN]] -2024-08-07 11:31:15 - Found thread-bound EntityManager [SessionImpl(406035361<open>)] for JPA transaction -2024-08-07 11:31:15 - Creating new transaction with name [server.haengdong.application.MemberActionService.saveMemberAction]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 11:31:15 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 11:31:15 - begin -2024-08-07 11:31:15 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@32eba863] -2024-08-07 11:31:15 - Created new SQL alias : e1_0 -2024-08-07 11:31:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(725869027332541))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 11:31:15 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@49d53364 -2024-08-07 11:31:15 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(725869027332541).token) -2024-08-07 11:31:15 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(725869027332541)] - | +-BasicFetch [server.haengdong.domain.event.Event(725869027332541).name] - | +-BasicFetch [server.haengdong.domain.event.Event(725869027332541).password] - | \-BasicFetch [server.haengdong.domain.event.Event(725869027332541).token] - -2024-08-07 11:31:15 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(725869027332541)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 11:31:15 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 11:31:15 - Initializer list: - server.haengdong.domain.event.Event(725869027332541) -> EntityResultInitializer(server.haengdong.domain.event.Event(725869027332541))@1226585597 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 11:31:15 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 11:31:15 - Extracted JDBC value [0] - [1] -2024-08-07 11:31:15 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(725869027332541)): 1 -2024-08-07 11:31:15 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(725869027332541)#1] : 805903210 -2024-08-07 11:31:15 - Extracted JDBC value [1] - [1234] -2024-08-07 11:31:15 - Extracted JDBC value [2] - [1234] -2024-08-07 11:31:15 - Extracted JDBC value [3] - [96ab0f71-6457-4303-bf0e-60cf6562d0f9] -2024-08-07 11:31:15 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(725869027332541)#1 -2024-08-07 11:31:15 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@7413f67b -2024-08-07 11:31:15 - Processing flush-time cascades -2024-08-07 11:31:15 - Dirty checking collections -2024-08-07 11:31:15 - Created new SQL alias : ma1_0 -2024-08-07 11:31:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction(m))] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 11:31:15 - Created new SQL alias : a1_0 -2024-08-07 11:31:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6d02def6] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 11:31:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4c3bead3] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 11:31:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@8b867fd] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 11:31:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@8b867fd] for NavigablePath [server.haengdong.domain.action.MemberAction(m).action(725868986071750).event] overrode previous registration : org.hibernate.sql.ast.tree.from.LazyTableGroup@4c3bead3 -2024-08-07 11:31:15 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 11:31:15 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 11:31:15 - Determining mapping-model type for SqmPath : SqmEntityValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action(725868986071750).event) -2024-08-07 11:31:15 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction(m)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.MemberAction(m).action(725868986071750)] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction(m).status] - -2024-08-07 11:31:15 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction(m)) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction(m).action(725868986071750)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.MemberAction(m).action(725868986071750).event) { - } - join LazyTableGroup (e2 : server.haengdong.domain.action.MemberAction(m).action(725868986071750).event) { - } - } - } - } - } - } - } - -2024-08-07 11:31:15 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 11:31:15 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 11:31:15 - Listing entities: -2024-08-07 11:31:15 - server.haengdong.domain.event.Event{password=1234, name=1234, id=1, token=96ab0f71-6457-4303-bf0e-60cf6562d0f9} -2024-08-07 11:31:15 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 11:31:15 - Initializer list: - server.haengdong.domain.action.MemberAction(m).action(725868986071750) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(725868986071750))@1693709220 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1460808758) - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@898677779 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(725868986071750).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(725868986071750).event)@164187974 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@1918694152) - -2024-08-07 11:31:15 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 11:31:15 - Processing flush-time cascades -2024-08-07 11:31:15 - Dirty checking collections -2024-08-07 11:31:15 - Created new SQL alias : a1_0 -2024-08-07 11:31:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action(a))] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 11:31:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@ae36614] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 11:31:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@39315a79] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 11:31:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@39315a79] for NavigablePath [server.haengdong.domain.action.Action(a).event] overrode previous registration : org.hibernate.sql.ast.tree.from.LazyTableGroup@ae36614 -2024-08-07 11:31:15 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 11:31:15 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 11:31:15 - Determining mapping-model type for SqmPath : SqmEntityValuedSimplePath(server.haengdong.domain.action.Action(a).event) -2024-08-07 11:31:15 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action(a)] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action(a).event] - | \-BasicFetch [server.haengdong.domain.action.Action(a).sequence] - -2024-08-07 11:31:15 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action(a)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action(a).event) { - } - join LazyTableGroup (e2 : server.haengdong.domain.action.Action(a).event) { - } - } - } - } - } - -2024-08-07 11:31:15 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 11:31:15 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 11:31:15 - Listing entities: -2024-08-07 11:31:15 - server.haengdong.domain.event.Event{password=1234, name=1234, id=1, token=96ab0f71-6457-4303-bf0e-60cf6562d0f9} -2024-08-07 11:31:15 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 11:31:15 - Initializer list: - server.haengdong.domain.action.Action(a) -> EntityResultInitializer(server.haengdong.domain.action.Action(a))@427362830 (SingleTableEntityPersister(server.haengdong.domain.action.Action)) - server.haengdong.domain.action.Action(a).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.Action(a).event)@130665168 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@1918694152) - -2024-08-07 11:31:15 - - select - a1_0.id, - a1_0.event_id, - a1_0.sequence - from - action a1_0 - where - a1_0.event_id=? - order by - a1_0.sequence desc - fetch - first 1 rows only -2024-08-07 11:31:15 - Found thread-bound EntityManager [SessionImpl(406035361<open>)] for JPA transaction -2024-08-07 11:31:15 - Participating in existing transaction -2024-08-07 11:31:15 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 11:31:15 - Executing identity-insert immediately -2024-08-07 11:31:15 - - insert - into - action - (event_id, sequence, id) - values - (?, ?, default) -2024-08-07 11:31:15 - Initializer list is empty -2024-08-07 11:31:15 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@6c83f5cf -2024-08-07 11:31:15 - Extracted JDBC value [0] - [1] -2024-08-07 11:31:15 - Extracted generated values [server.haengdong.domain.action.Action]: [Ljava.lang.Object;@6679ed57 -2024-08-07 11:31:15 - Executing identity-insert immediately -2024-08-07 11:31:15 - - insert - into - member_action - (action_id, member_group_id, member_name, status, id) - values - (?, ?, ?, ?, default) -2024-08-07 11:31:15 - Initializer list is empty -2024-08-07 11:31:15 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@63b778b2 -2024-08-07 11:31:15 - Extracted JDBC value [0] - [1] -2024-08-07 11:31:15 - Extracted generated values [server.haengdong.domain.action.MemberAction]: [Ljava.lang.Object;@3b1237c4 -2024-08-07 11:31:15 - Initiating transaction commit -2024-08-07 11:31:15 - Committing JPA transaction on EntityManager [SessionImpl(406035361<open>)] -2024-08-07 11:31:15 - committing -2024-08-07 11:31:15 - Processing flush-time cascades -2024-08-07 11:31:15 - Dirty checking collections -2024-08-07 11:31:15 - Flushed: 0 insertions, 0 updates, 0 deletions to 3 objects -2024-08-07 11:31:15 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 11:31:15 - Listing entities: -2024-08-07 11:31:15 - server.haengdong.domain.action.Action{sequence=1, id=1, event=server.haengdong.domain.event.Event#1} -2024-08-07 11:31:15 - server.haengdong.domain.event.Event{password=1234, name=1234, id=1, token=96ab0f71-6457-4303-bf0e-60cf6562d0f9} -2024-08-07 11:31:15 - server.haengdong.domain.action.MemberAction{action=server.haengdong.domain.action.Action#1, memberGroupId=1722997875745, memberName=이상, id=1, status=IN} -2024-08-07 11:31:15 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 11:31:15 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 11:31:15 - Nothing to write: null body -2024-08-07 11:31:15 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 11:31:15 - Completed 200 OK -2024-08-07 11:31:16 - RMI TCP Connection(4)-127.0.0.1: (port 60378) connection closed -2024-08-07 11:31:16 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60382,localport=60378] -2024-08-07 11:31:16 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60382,localport=60378] -2024-08-07 11:31:16 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 11:31:16 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 11:31:26 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 11:31:26 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Wed Aug 07 11:30:45 KST 2024 -2024-08-07 11:31:26 - Stopping beans in phase 2147483647 -2024-08-07 11:31:26 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 11:31:26 - Stopping beans in phase 2147482623 -2024-08-07 11:31:26 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 11:31:26 - Stopping beans in phase 2147481599 -2024-08-07 11:31:26 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 11:31:26 - Stopping beans in phase -2147483647 -2024-08-07 11:31:26 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 11:31:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 11:31:26 - Unregistering JMX-exposed beans on shutdown -2024-08-07 11:31:26 - Unregistering JMX-exposed beans -2024-08-07 11:31:26 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 11:31:26 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 11:31:26 - HHH000031: Closing -2024-08-07 11:31:26 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@66bdbc4] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@76d220eb] -2024-08-07 11:31:26 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 11:31:26 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 11:31:26 - HikariPool-1 - Shutdown initiated... -2024-08-07 11:31:26 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 11:31:26 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 11:31:26 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 11:31:26 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 11:31:26 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 11:31:26 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 11:31:26 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 11:31:26 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 11:31:26 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 11:31:26 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 11:31:26 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 11:31:26 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 11:31:26 - HikariPool-1 - Shutdown completed. -2024-08-07 11:31:26 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 16:13:19 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 16:13:19 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 16:13:19 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:13:19 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:13:19 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:13:19 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:13:19 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:13:19 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:13:19 - Starting HaengdongApplication using Java 17.0.12 with PID 59597 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 16:13:19 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 16:13:19 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 16:13:19 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 16:13:19 - Loaded expression factory via original TCCL -2024-08-07 16:13:19 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 16:13:19 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:13:19 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:13:19 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:13:19 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:13:19 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:13:19 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 16:13:19 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 16:13:19 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 16:13:19 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 16:13:19 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 16:13:19 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 16:13:19 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 16:13:19 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 16:13:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 16:13:19 - Finished Spring Data repository scanning in 17 ms. Found 4 JPA repository interfaces. -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 16:13:19 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 16:13:19 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 16:13:19 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 16:13:19 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 16:13:19 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 16:13:19 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 16:13:19 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 16:13:19 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 16:13:19 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@24876a7e] -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 16:13:19 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 16:13:19 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 16:13:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 16:13:19 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 16:13:19 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 16:13:19 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 16:13:19 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: accepted socket from [192.168.5.4:64212] -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 16:13:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 16:13:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:19 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 84 -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:19 - connectionId=rmi://192.168.5.4 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:13:19 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:19 - [javax.management.remote.rmi.RMIConnectionImpl@5b275301: connectionId=rmi://192.168.5.4 1] closing. -2024-08-07 16:13:19 - [javax.management.remote.rmi.RMIConnectionImpl@5b275301: connectionId=rmi://192.168.5.4 1] closed. -2024-08-07 16:13:19 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 16:13:19 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 16:13:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 16:13:19 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 16:13:19 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:13:19 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:13:19 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:13:19 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 16:13:19 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 16:13:19 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 16:13:19 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 16:13:19 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 16:13:19 - Tomcat initialized with port 8080 (http) -2024-08-07 16:13:19 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4245bf68] to [INITIALIZING] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4245bf68] to [INITIALIZED] -2024-08-07 16:13:19 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 16:13:19 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 16:13:19 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.mapper.MapperListener@3cc9632d] to [INITIALIZING] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.mapper.MapperListener@3cc9632d] to [INITIALIZED] -2024-08-07 16:13:19 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 16:13:19 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 16:13:19 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 16:13:19 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 16:13:19 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 16:13:19 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 16:13:19 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4245bf68] to [STARTING_PREP] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4245bf68] to [STARTING] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4245bf68] to [STARTED] -2024-08-07 16:13:19 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 16:13:19 - Starting service [Tomcat] -2024-08-07 16:13:19 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 16:13:19 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 16:13:19 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 16:13:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:13:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:13:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:13:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:13:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:13:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 16:13:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 16:13:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 16:13:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 16:13:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 16:13:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@9a9aa68] to [INITIALIZING] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@9a9aa68] to [INITIALIZED] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@9a9aa68] to [STARTING_PREP] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@5b0902b4] to [INITIALIZING] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@5b0902b4] to [INITIALIZED] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@5b0902b4] to [STARTING_PREP] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@5b0902b4] to [STARTING] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@5b0902b4] to [STARTED] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@9a9aa68] to [STARTING] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@9a9aa68] to [STARTED] -2024-08-07 16:13:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:13:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:13:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:13:19 - Starting this Loader -2024-08-07 16:13:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:13:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:13:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:13:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:13:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:13:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:13:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:13:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:13:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:13:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:13:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:13:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:13:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:13:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:13:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:13:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:13:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:13:19 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 16:13:19 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6c5ca0b6] to [INITIALIZING] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6c5ca0b6] to [INITIALIZED] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6c5ca0b6] to [STARTING_PREP] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6c5ca0b6] to [STARTING] -2024-08-07 16:13:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6c5ca0b6] to [STARTED] -2024-08-07 16:13:19 - Initializing Spring embedded WebApplicationContext -2024-08-07 16:13:19 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 16:13:19 - Root WebApplicationContext: initialization completed in 791 ms -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:13:19 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 16:13:19 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 16:13:19 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 16:13:19 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:13:19 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 16:13:19 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:13:19 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 16:13:19 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:13:19 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:13:19 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:13:19 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:13:19 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 16:13:19 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 16:13:19 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 16:13:19 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:13:19 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:13:19 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 16:13:19 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 16:13:19 - HikariPool-1 - configuration: -2024-08-07 16:13:19 - allowPoolSuspension.............false -2024-08-07 16:13:19 - autoCommit......................true -2024-08-07 16:13:19 - catalog.........................none -2024-08-07 16:13:19 - connectionInitSql...............none -2024-08-07 16:13:19 - connectionTestQuery.............none -2024-08-07 16:13:19 - connectionTimeout...............30000 -2024-08-07 16:13:19 - dataSource......................none -2024-08-07 16:13:19 - dataSourceClassName.............none -2024-08-07 16:13:19 - dataSourceJNDI..................none -2024-08-07 16:13:19 - dataSourceProperties............{password=<masked>} -2024-08-07 16:13:19 - driverClassName................."org.h2.Driver" -2024-08-07 16:13:19 - exceptionOverrideClassName......none -2024-08-07 16:13:19 - healthCheckProperties...........{} -2024-08-07 16:13:19 - healthCheckRegistry.............none -2024-08-07 16:13:19 - idleTimeout.....................600000 -2024-08-07 16:13:19 - initializationFailTimeout.......1 -2024-08-07 16:13:19 - isolateInternalQueries..........false -2024-08-07 16:13:19 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 16:13:19 - keepaliveTime...................0 -2024-08-07 16:13:19 - leakDetectionThreshold..........0 -2024-08-07 16:13:19 - maxLifetime.....................1800000 -2024-08-07 16:13:19 - maximumPoolSize.................10 -2024-08-07 16:13:19 - metricRegistry..................none -2024-08-07 16:13:19 - metricsTrackerFactory...........none -2024-08-07 16:13:19 - minimumIdle.....................10 -2024-08-07 16:13:19 - password........................<masked> -2024-08-07 16:13:19 - poolName........................"HikariPool-1" -2024-08-07 16:13:19 - readOnly........................false -2024-08-07 16:13:19 - registerMbeans..................false -2024-08-07 16:13:19 - scheduledExecutor...............none -2024-08-07 16:13:19 - schema..........................none -2024-08-07 16:13:19 - threadFactory...................internal -2024-08-07 16:13:19 - transactionIsolation............default -2024-08-07 16:13:19 - username........................"sa" -2024-08-07 16:13:19 - validationTimeout...............5000 -2024-08-07 16:13:19 - HikariPool-1 - Starting... -2024-08-07 16:13:19 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 16:13:19 - HikariPool-1 - Start completed. -2024-08-07 16:13:19 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 16:13:19 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 16:13:19 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:13:19 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 16:13:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 16:13:20 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:13:20 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:13:20 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:13:20 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 16:13:20 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 16:13:20 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 16:13:20 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 16:13:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 16:13:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 16:13:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 16:13:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 16:13:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 16:13:20 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 16:13:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 16:13:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 16:13:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 16:13:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 16:13:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 16:13:20 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:13:20 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:13:20 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:13:20 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@13c90c06] to [INITIALIZING] -2024-08-07 16:13:20 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@13c90c06] to [INITIALIZED] -2024-08-07 16:13:20 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@13c90c06] to [STARTING_PREP] -2024-08-07 16:13:20 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@13c90c06] to [STARTING] -2024-08-07 16:13:20 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@13c90c06] to [STARTED] -2024-08-07 16:13:20 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:13:20 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:13:20 - Filter 'requestContextFilter' configured for use -2024-08-07 16:13:20 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 16:13:20 - Filter 'characterEncodingFilter' configured for use -2024-08-07 16:13:20 - Filter 'formContentFilter' configured for use -2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:13:20 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:13:20 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:13:20 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:13:20 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:13:20 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:13:20 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:13:20 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:13:20 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:13:20 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:13:20 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:13:20 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:13:20 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:13:20 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:13:20 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:13:20 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:13:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 16:13:20 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 16:13:20 - Setting state for [org.apache.catalina.mapper.MapperListener@3cc9632d] to [STARTING_PREP] -2024-08-07 16:13:20 - Setting state for [org.apache.catalina.mapper.MapperListener@3cc9632d] to [STARTING] -2024-08-07 16:13:20 - Registered host [localhost] -2024-08-07 16:13:20 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 16:13:20 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 16:13:20 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 16:13:20 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 16:13:20 - Setting state for [org.apache.catalina.mapper.MapperListener@3cc9632d] to [STARTED] -2024-08-07 16:13:20 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 16:13:20 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 16:13:20 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 16:13:20 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 16:13:20 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 16:13:20 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:13:20 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:13:20 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 16:13:20 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 16:13:20 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 16:13:20 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 16:13:20 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 16:13:20 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 16:13:20 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 16:13:20 - HHH000206: 'hibernate.properties' not found -2024-08-07 16:13:20 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 16:13:20 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 16:13:20 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 16:13:20 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 16:13:20 - HHH000026: Second-level cache disabled -2024-08-07 16:13:20 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 16:13:20 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 16:13:20 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:13:20 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:13:20 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:13:20 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 16:13:20 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 16:13:20 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 16:13:20 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 16:13:20 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 16:13:20 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 16:13:20 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 16:13:20 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 16:13:20 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 16:13:20 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 16:13:20 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 16:13:20 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 16:13:20 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 16:13:20 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 16:13:20 - Adding type registration image -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 16:13:20 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 16:13:20 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 16:13:20 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 16:13:20 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 16:13:20 - Adding type registration short -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 16:13:20 - Adding type registration short -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 16:13:20 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 16:13:20 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 16:13:20 - Adding type registration int -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 16:13:20 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 16:13:20 - Adding type registration long -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 16:13:20 - Adding type registration long -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 16:13:20 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 16:13:20 - Adding type registration float -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 16:13:20 - Adding type registration float -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 16:13:20 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 16:13:20 - Adding type registration double -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 16:13:20 - Adding type registration double -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 16:13:20 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 16:13:20 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 16:13:20 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 16:13:20 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 16:13:20 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 16:13:20 - Adding type registration character -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 16:13:20 - Adding type registration char -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 16:13:20 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 16:13:20 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 16:13:20 - Adding type registration string -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 16:13:20 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 16:13:20 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 16:13:20 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:13:20 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:13:20 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:13:20 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 16:13:20 - Adding type registration text -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 16:13:20 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 16:13:20 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 16:13:20 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 16:13:20 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 16:13:20 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 16:13:20 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 16:13:20 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 16:13:20 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 16:13:20 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 16:13:20 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 16:13:20 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 16:13:20 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 16:13:20 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 16:13:20 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 16:13:20 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 16:13:20 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:13:20 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:13:20 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 16:13:20 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 16:13:20 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 16:13:20 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 16:13:20 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 16:13:20 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 16:13:20 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 16:13:20 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 16:13:20 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 16:13:20 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 16:13:20 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 16:13:20 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 16:13:20 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 16:13:20 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 16:13:20 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 16:13:20 - Adding type registration date -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 16:13:20 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 16:13:20 - Adding type registration time -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 16:13:20 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 16:13:20 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:13:20 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:13:20 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:13:20 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 16:13:20 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 16:13:20 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 16:13:20 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 16:13:20 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 16:13:20 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 16:13:20 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 16:13:20 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 16:13:20 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 16:13:20 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 16:13:20 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 16:13:20 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 16:13:20 - Adding type registration class -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 16:13:20 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 16:13:20 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 16:13:20 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 16:13:20 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 16:13:20 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-07 16:13:20 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-07 16:13:20 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 16:13:20 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 16:13:20 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-07 16:13:20 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-07 16:13:20 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-07 16:13:20 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-07 16:13:20 - Adding type registration url -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-07 16:13:20 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-07 16:13:20 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@2c5708e7 -2024-08-07 16:13:20 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-07 16:13:20 - Adding type registration object -> org.hibernate.type.JavaObjectType@2b400bd0 -2024-08-07 16:13:20 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@2b400bd0 -2024-08-07 16:13:20 - Adding type registration null -> org.hibernate.type.NullType@41e7a544 -2024-08-07 16:13:20 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@3b66ac74 -2024-08-07 16:13:20 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@573870cb -2024-08-07 16:13:20 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@5b88af70 -2024-08-07 16:13:20 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@2739ecc0 -2024-08-07 16:13:20 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@2932e15f -2024-08-07 16:13:20 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@3d98729a -2024-08-07 16:13:20 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@2375a976 -2024-08-07 16:13:20 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@4bc21e34 -2024-08-07 16:13:20 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@5c3710b3] into BootstrapContext; was [null] -2024-08-07 16:13:20 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@5c3710b3) [was null] -2024-08-07 16:13:20 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@32646ecf] into BootstrapContext; was [null] -2024-08-07 16:13:20 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@68f9e807] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@23708f14] -2024-08-07 16:13:20 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 16:13:20 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 16:13:20 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-07 16:13:20 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 16:13:20 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 16:13:20 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@5c3710b3] -2024-08-07 16:13:20 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@5c3710b3] -2024-08-07 16:13:20 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 16:13:20 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 16:13:20 - JDBC version : 4.2 -2024-08-07 16:13:20 - HikariPool-1 - After adding stats (total=5, active=1, idle=4, waiting=0) -2024-08-07 16:13:20 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 16:13:20 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 16:13:20 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 16:13:20 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 16:13:20 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 16:13:20 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 16:13:20 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 16:13:20 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 16:13:20 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 16:13:20 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 16:13:20 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 16:13:20 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 16:13:20 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@3d50a3d9] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@3661b732] -2024-08-07 16:13:20 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 16:13:20 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 16:13:20 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 16:13:20 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 16:13:20 - Import with entity name Action -2024-08-07 16:13:20 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 16:13:20 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:13:20 - Binding column: AnnotatedColumn() -2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:13:20 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 16:13:20 - building BasicValue for id -2024-08-07 16:13:20 - Skipping column re-registration: action.id -2024-08-07 16:13:20 - Building property id -2024-08-07 16:13:20 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:20 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:13:20 - Binding column: AnnotatedColumn() -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:20 - Building property event -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:20 - Binding column: AnnotatedColumn() -2024-08-07 16:13:20 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 16:13:20 - building BasicValue for sequence -2024-08-07 16:13:20 - Skipping column re-registration: action.sequence -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 84 -2024-08-07 16:13:20 - Building property sequence -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:20 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:20 - connectionId=rmi://192.168.5.4 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:20 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:20 - Import with entity name BillAction -2024-08-07 16:13:20 - [javax.management.remote.rmi.RMIConnectionImpl@1bdebf03: connectionId=rmi://192.168.5.4 2] closing. -2024-08-07 16:13:20 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 16:13:20 - [javax.management.remote.rmi.RMIConnectionImpl@1bdebf03: connectionId=rmi://192.168.5.4 2] closed. -2024-08-07 16:13:20 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:13:20 - Binding column: AnnotatedColumn() -2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:13:20 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 16:13:20 - building BasicValue for id -2024-08-07 16:13:20 - Skipping column re-registration: bill_action.id -2024-08-07 16:13:20 - Building property id -2024-08-07 16:13:20 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:13:20 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:13:20 - Binding column: AnnotatedColumn() -2024-08-07 16:13:20 - Building property action -2024-08-07 16:13:20 - Binding column: AnnotatedColumn() -2024-08-07 16:13:20 - MetadataSourceProcessor property price with lazy=false -2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 16:13:20 - building BasicValue for price -2024-08-07 16:13:20 - Skipping column re-registration: bill_action.price -2024-08-07 16:13:20 - Building property price -2024-08-07 16:13:20 - Binding column: AnnotatedColumn() -2024-08-07 16:13:20 - MetadataSourceProcessor property title with lazy=false -2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 16:13:20 - building BasicValue for title -2024-08-07 16:13:20 - Skipping column re-registration: bill_action.title -2024-08-07 16:13:20 - Building property title -2024-08-07 16:13:20 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:13:20 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 16:13:20 - Import with entity name MemberAction -2024-08-07 16:13:20 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 16:13:20 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:13:20 - Binding column: AnnotatedColumn() -2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:13:20 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 16:13:20 - building BasicValue for id -2024-08-07 16:13:20 - Skipping column re-registration: member_action.id -2024-08-07 16:13:20 - Building property id -2024-08-07 16:13:20 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:13:20 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:13:20 - Binding column: AnnotatedColumn() -2024-08-07 16:13:20 - Building property action -2024-08-07 16:13:20 - Binding column: AnnotatedColumn() -2024-08-07 16:13:20 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 16:13:20 - building BasicValue for memberGroupId -2024-08-07 16:13:20 - Skipping column re-registration: member_action.member_group_id -2024-08-07 16:13:20 - Building property memberGroupId -2024-08-07 16:13:20 - Binding column: AnnotatedColumn() -2024-08-07 16:13:20 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 16:13:20 - building BasicValue for memberName -2024-08-07 16:13:20 - Skipping column re-registration: member_action.member_name -2024-08-07 16:13:20 - Building property memberName -2024-08-07 16:13:20 - Binding column: AnnotatedColumn() -2024-08-07 16:13:20 - MetadataSourceProcessor property status with lazy=false -2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 16:13:20 - building BasicValue for status -2024-08-07 16:13:20 - Skipping column re-registration: member_action.status -2024-08-07 16:13:20 - Building property status -2024-08-07 16:13:20 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:13:20 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 16:13:20 - Import with entity name Event -2024-08-07 16:13:20 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 16:13:20 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:13:20 - Binding column: AnnotatedColumn() -2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:13:20 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 16:13:20 - building BasicValue for id -2024-08-07 16:13:20 - Skipping column re-registration: event.id -2024-08-07 16:13:20 - Building property id -2024-08-07 16:13:20 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:13:20 - Binding column: AnnotatedColumn() -2024-08-07 16:13:20 - MetadataSourceProcessor property name with lazy=false -2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 16:13:20 - building BasicValue for name -2024-08-07 16:13:20 - Skipping column re-registration: event.name -2024-08-07 16:13:20 - Building property name -2024-08-07 16:13:20 - Binding column: AnnotatedColumn() -2024-08-07 16:13:20 - MetadataSourceProcessor property password with lazy=false -2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 16:13:20 - building BasicValue for password -2024-08-07 16:13:20 - Skipping column re-registration: event.password -2024-08-07 16:13:20 - Building property password -2024-08-07 16:13:20 - Binding column: AnnotatedColumn() -2024-08-07 16:13:20 - MetadataSourceProcessor property token with lazy=false -2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 16:13:20 - building BasicValue for token -2024-08-07 16:13:20 - Skipping column re-registration: event.token -2024-08-07 16:13:20 - Building property token -2024-08-07 16:13:20 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 16:13:20 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 16:13:20 - Import with entity name EventStep -2024-08-07 16:13:20 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 16:13:20 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:13:20 - Binding column: AnnotatedColumn() -2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:13:20 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 16:13:20 - building BasicValue for id -2024-08-07 16:13:20 - Skipping column re-registration: event_step.id -2024-08-07 16:13:20 - Building property id -2024-08-07 16:13:20 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:13:20 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:13:20 - Binding column: AnnotatedColumn() -2024-08-07 16:13:20 - Building property event -2024-08-07 16:13:20 - Binding column: AnnotatedColumn() -2024-08-07 16:13:20 - MetadataSourceProcessor property name with lazy=false -2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 16:13:20 - building BasicValue for name -2024-08-07 16:13:20 - Skipping column re-registration: event_step.name -2024-08-07 16:13:20 - Building property name -2024-08-07 16:13:20 - Binding column: AnnotatedColumn() -2024-08-07 16:13:20 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 16:13:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 16:13:20 - building BasicValue for sequence -2024-08-07 16:13:20 - Skipping column re-registration: event_step.sequence -2024-08-07 16:13:20 - Building property sequence -2024-08-07 16:13:20 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 16:13:20 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 16:13:20 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 16:13:20 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 16:13:20 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 16:13:20 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 16:13:20 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 16:13:20 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 16:13:20 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 16:13:20 - Building session factory -2024-08-07 16:13:20 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 16:13:20 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 16:13:20 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:13:20 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@2979c6ef, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@1af6974c, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1097716332110316034, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=59597, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1097716332110316034, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@61d61b0e, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 16:13:20 - Session factory constructed with filter configurations : {} -2024-08-07 16:13:20 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:13:20 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:13:20 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:13:20 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:13:20 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:13:20 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:13:20 - Loaded expression factory via original TCCL -2024-08-07 16:13:20 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:13:20 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:13:20 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:13:20 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:13:20 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:13:20 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:13:20 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@b6b746b] under count; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@29bf90fc] under every; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@6e22d6bf] under any; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3f838072] under sinh; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@46c9ee28] under cosh; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@31f5ffb9] under tanh; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@19b3d3a4] under pi; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3a9040f0] under log; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 16:13:20 - Registering alternate key : length -> character_length -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@5216532a] under position; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@e2344da] under overlay; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@21d48c40] under trim; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@5382a35f] under cast; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7901a5ab] under collate; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@3e24bab6] under extract; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@391e2a] under ifnull; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 16:13:20 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@25dc2c0] under pad; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@6a8bcb64] under str; prior registration was null -2024-08-07 16:13:20 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@149238fe] under format; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@b814e23] under timestampadd; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@16732340] under timestampdiff; prior registration was null -2024-08-07 16:13:20 - Registering alternate key : dateadd -> timestampadd -2024-08-07 16:13:20 - Registering alternate key : datediff -> timestampdiff -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5eb9bf7d] under current_date; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@64f613da] under current_time; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2f64f99f] under current_timestamp; prior registration was null -2024-08-07 16:13:20 - Registering alternate key : current date -> current_date -2024-08-07 16:13:20 - Registering alternate key : current time -> current_time -2024-08-07 16:13:20 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16c1d11] under local_date; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@123d0816] under local_time; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@4601a148] under local_datetime; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@4e210016] under offset_datetime; prior registration was null -2024-08-07 16:13:20 - Registering alternate key : local date -> local_date -2024-08-07 16:13:20 - Registering alternate key : local time -> local_time -2024-08-07 16:13:20 - Registering alternate key : local datetime -> local_datetime -2024-08-07 16:13:20 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2fc40856] under instant; prior registration was null -2024-08-07 16:13:20 - Registering alternate key : current_instant -> instant -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@57ed8f95] under sql; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@1c25deb0] under count; prior registration was org.hibernate.dialect.function.CountFunction@b6b746b -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@6fe337a5] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@19b3d3a4 -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7d60bd5a] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 16:13:20 - Registering alternate key : day -> day_of_month -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@123d0816 -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@4601a148 -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@34f8ce89] under trunc; prior registration was null -2024-08-07 16:13:20 - Registering alternate key : truncate -> trunc -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@22ed2886] under date_trunc; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 16:13:20 - Registering alternate key : chr -> char -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@30ca66c5] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@5216532a -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4abfa2ff] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 16:13:20 - Registering alternate key : every -> bool_and -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 16:13:20 - Registering alternate key : any -> bool_or -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@38c1b1a7] under format; prior registration was org.hibernate.dialect.function.FormatFunction@149238fe -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@792b9dd3] under listagg; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@41948c13] under mode; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@3085befb] under percentile_cont; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@62264d4f] under percentile_disc; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@322eb1a] under rank; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@2b4ba2d9] under dense_rank; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@69f24965] under percent_rank; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@4eab9aec] under cume_dist; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@440d2d64] under array; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@1a712f12] under array_list; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@68fc636a] under array_agg; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@6b03c35c] under array_position; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@7ea8224b] under array_positions; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@4c0ab04f] under array_positions_list; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@384f0e32] under array_length; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@4803bf73] under array_concat; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@10b5ff4d] under array_prepend; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@58835bba] under array_append; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@5400db7e] under array_contains; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@a84b6de] under array_contains_nullable; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@40d04cf8] under array_overlaps; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@75507e68] under array_overlaps_nullable; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@64921450] under array_get; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@2681185e] under array_set; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@15fd3088] under array_remove; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@b5bddfe] under array_remove_index; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4fe3f9ef] under array_slice; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@b75f3f4] under array_replace; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@691a5c3a] under array_trim; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@31cddb11] under array_fill; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@510bd87a] under array_fill_list; prior registration was null -2024-08-07 16:13:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@4ef277ef] under array_to_string; prior registration was null -2024-08-07 16:13:20 - abs(NUMERIC arg) -2024-08-07 16:13:20 - Double acos(NUMERIC arg) -2024-08-07 16:13:20 - Boolean any(BOOLEAN predicate) -2024-08-07 16:13:20 - array( ... ) -2024-08-07 16:13:20 - array_agg(arg) -2024-08-07 16:13:20 - array_append( ... ) -2024-08-07 16:13:20 - array_concat( ... ) -2024-08-07 16:13:20 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 16:13:20 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 16:13:20 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 16:13:20 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 16:13:20 - array_get(ARRAY array, INTEGER index) -2024-08-07 16:13:20 - Integer array_length(ARRAY array) -2024-08-07 16:13:20 - array_list( ... ) -2024-08-07 16:13:20 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 16:13:20 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 16:13:20 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 16:13:20 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 16:13:20 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 16:13:20 - array_prepend( ... ) -2024-08-07 16:13:20 - array_remove( ... ) -2024-08-07 16:13:20 - array_remove_index( ... ) -2024-08-07 16:13:20 - array_replace( ... ) -2024-08-07 16:13:20 - array_set( ... ) -2024-08-07 16:13:20 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 16:13:20 - String array_to_string( ... ) -2024-08-07 16:13:20 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 16:13:20 - Integer ascii(STRING arg) -2024-08-07 16:13:20 - Double asin(NUMERIC arg) -2024-08-07 16:13:20 - Double atan(NUMERIC arg) -2024-08-07 16:13:20 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 16:13:20 - avg(NUMERIC arg) -2024-08-07 16:13:20 - bit_and(arg) -2024-08-07 16:13:20 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 16:13:20 - bit_or(arg) -2024-08-07 16:13:20 - bitand(arg0, arg1) -2024-08-07 16:13:20 - bitnot(arg) -2024-08-07 16:13:20 - bitor(arg0, arg1) -2024-08-07 16:13:20 - bitxor(arg0, arg1) -2024-08-07 16:13:20 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 16:13:20 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 16:13:20 - cast(arg as Type) -2024-08-07 16:13:20 - ceiling(NUMERIC arg) -2024-08-07 16:13:20 - Character char(INTEGER arg) -2024-08-07 16:13:20 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 16:13:20 - Character chr(INTEGER arg) -2024-08-07 16:13:20 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 16:13:20 - String collate(STRING string as COLLATION collation) -2024-08-07 16:13:20 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 16:13:20 - Double cos(NUMERIC arg) -2024-08-07 16:13:20 - Double cosh(NUMERIC arg) -2024-08-07 16:13:20 - Double cot(NUMERIC arg) -2024-08-07 16:13:20 - Long count([distinct ]{arg|*}) -2024-08-07 16:13:20 - Double cume_dist([arg0[, ...]]) -2024-08-07 16:13:20 - Date curdate() -2024-08-07 16:13:20 - Date current date -2024-08-07 16:13:20 - Time current time -2024-08-07 16:13:20 - Timestamp current timestamp -2024-08-07 16:13:20 - Date current_date -2024-08-07 16:13:20 - Instant current_instant -2024-08-07 16:13:20 - Time current_time -2024-08-07 16:13:20 - Timestamp current_timestamp -2024-08-07 16:13:20 - Time curtime() -2024-08-07 16:13:20 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 16:13:20 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 16:13:20 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 16:13:20 - Integer day(DATE arg) -2024-08-07 16:13:20 - Integer day_of_month(DATE arg) -2024-08-07 16:13:20 - Integer day_of_week(DATE arg) -2024-08-07 16:13:20 - Integer day_of_year(DATE arg) -2024-08-07 16:13:20 - String dayname(DATE arg) -2024-08-07 16:13:20 - Double degrees(NUMERIC arg) -2024-08-07 16:13:20 - Long dense_rank([arg0[, ...]]) -2024-08-07 16:13:20 - Boolean every(BOOLEAN predicate) -2024-08-07 16:13:20 - Double exp(NUMERIC arg) -2024-08-07 16:13:20 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 16:13:20 - first_valueANY value -2024-08-07 16:13:20 - floor(NUMERIC arg) -2024-08-07 16:13:20 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 16:13:20 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 16:13:20 - Integer hour(TIME arg) -2024-08-07 16:13:20 - ifnull(arg0, arg1) -2024-08-07 16:13:20 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 16:13:20 - Instant instant -2024-08-07 16:13:20 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 16:13:20 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 16:13:20 - last_valueANY value -2024-08-07 16:13:20 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 16:13:20 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 16:13:20 - String left(STRING string, INTEGER length) -2024-08-07 16:13:20 - Integer length(STRING_OR_CLOB arg) -2024-08-07 16:13:20 - String listagg(STRING arg0, STRING arg1) -2024-08-07 16:13:20 - Double ln(NUMERIC arg) -2024-08-07 16:13:20 - LocalDate local date -2024-08-07 16:13:20 - LocalDateTime local datetime -2024-08-07 16:13:20 - LocalTime local time -2024-08-07 16:13:20 - LocalDate local_date -2024-08-07 16:13:20 - LocalDateTime local_datetime -2024-08-07 16:13:20 - LocalTime local_time -2024-08-07 16:13:20 - Time localtime -2024-08-07 16:13:20 - Timestamp localtimestamp -2024-08-07 16:13:20 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 16:13:20 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 16:13:20 - Double log10(NUMERIC arg) -2024-08-07 16:13:20 - String lower(STRING string) -2024-08-07 16:13:20 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 16:13:20 - String ltrim(STRING string) -2024-08-07 16:13:20 - max(COMPARABLE arg) -2024-08-07 16:13:20 - Double median(NUMERIC arg) -2024-08-07 16:13:20 - Integer microsecond(TIME arg) -2024-08-07 16:13:20 - min(COMPARABLE arg) -2024-08-07 16:13:20 - Integer minute(TIME arg) -2024-08-07 16:13:20 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 16:13:20 - mode() -2024-08-07 16:13:20 - Integer month(DATE arg) -2024-08-07 16:13:20 - String monthname(DATE arg) -2024-08-07 16:13:20 - Timestamp now() -2024-08-07 16:13:20 - nth_valueANY value, INTEGER nth -2024-08-07 16:13:20 - nullif(arg0, arg1) -2024-08-07 16:13:20 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 16:13:20 - OffsetDateTime offset datetime -2024-08-07 16:13:20 - OffsetDateTime offset_datetime -2024-08-07 16:13:20 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 16:13:20 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 16:13:20 - Double percent_rank([arg0[, ...]]) -2024-08-07 16:13:20 - percentile_cont(NUMERIC arg) -2024-08-07 16:13:20 - percentile_disc(NUMERIC arg) -2024-08-07 16:13:20 - Double pi -2024-08-07 16:13:20 - Integer position(STRING pattern in STRING string) -2024-08-07 16:13:20 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 16:13:20 - Integer quarter(DATE arg) -2024-08-07 16:13:20 - Double radians(NUMERIC arg) -2024-08-07 16:13:20 - Double rand([INTEGER seed]) -2024-08-07 16:13:20 - Long rank([arg0[, ...]]) -2024-08-07 16:13:20 - String repeat(STRING string, INTEGER times) -2024-08-07 16:13:20 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 16:13:20 - String right(STRING string, INTEGER length) -2024-08-07 16:13:20 - round(NUMERIC number[, INTEGER places]) -2024-08-07 16:13:20 - Long row_number() -2024-08-07 16:13:20 - Long rownum() -2024-08-07 16:13:20 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 16:13:20 - String rtrim(STRING string) -2024-08-07 16:13:20 - Integer second(TIME arg) -2024-08-07 16:13:20 - Integer sign(NUMERIC arg) -2024-08-07 16:13:20 - Double sin(NUMERIC arg) -2024-08-07 16:13:20 - Double sinh(NUMERIC arg) -2024-08-07 16:13:20 - String soundex(arg) -2024-08-07 16:13:20 - String space(INTEGER arg) -2024-08-07 16:13:20 - Object sql -2024-08-07 16:13:20 - Double sqrt(NUMERIC arg) -2024-08-07 16:13:20 - Double stddev_pop(NUMERIC arg) -2024-08-07 16:13:20 - Double stddev_samp(NUMERIC arg) -2024-08-07 16:13:20 - String str(arg) -2024-08-07 16:13:20 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 16:13:20 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 16:13:20 - sum(arg) -2024-08-07 16:13:20 - Timestamp sysdate -2024-08-07 16:13:20 - Double tan(NUMERIC arg) -2024-08-07 16:13:20 - Double tanh(NUMERIC arg) -2024-08-07 16:13:20 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 16:13:20 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 16:13:20 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 16:13:20 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 16:13:20 - trunc( ... ) -2024-08-07 16:13:20 - truncate( ... ) -2024-08-07 16:13:20 - String upper(STRING string) -2024-08-07 16:13:20 - Double var_pop(NUMERIC arg) -2024-08-07 16:13:20 - Double var_samp(NUMERIC arg) -2024-08-07 16:13:20 - Integer week(DATE arg) -2024-08-07 16:13:20 - Integer year(DATE arg) -2024-08-07 16:13:20 - Starting QueryInterpretationCache(2048) -2024-08-07 16:13:20 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:13:20 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:13:20 - Configured EntityCopyObserver strategy: disallow -2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:13:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:13:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:13:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:13:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 16:13:20 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:13:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:13:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 16:13:20 - Starting post-init callbacks -2024-08-07 16:13:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 16:13:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 16:13:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:13:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 16:13:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 16:13:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 16:13:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 16:13:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 16:13:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 16:13:20 - Created new SQL alias : ba1_0 -2024-08-07 16:13:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 16:13:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@33b4c775] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 16:13:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 16:13:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 16:13:20 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 16:13:20 - Version select: select id from bill_action where id=? -2024-08-07 16:13:20 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 16:13:20 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 16:13:20 - Delete (0): delete from bill_action where id=? -2024-08-07 16:13:20 - Created new SQL alias : ma1_0 -2024-08-07 16:13:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 16:13:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@288e50c1] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:13:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 16:13:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 16:13:20 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 16:13:20 - Version select: select id from member_action where id=? -2024-08-07 16:13:20 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 16:13:20 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 16:13:20 - Delete (0): delete from member_action where id=? -2024-08-07 16:13:20 - Created new SQL alias : e1_0 -2024-08-07 16:13:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 16:13:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 16:13:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 16:13:20 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 16:13:20 - Version select: select id from event where id=? -2024-08-07 16:13:20 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 16:13:20 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 16:13:20 - Delete (0): delete from event where id=? -2024-08-07 16:13:20 - Created new SQL alias : a1_0 -2024-08-07 16:13:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 16:13:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@66ce4b4] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 16:13:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 16:13:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 16:13:20 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 16:13:20 - Version select: select id from action where id=? -2024-08-07 16:13:20 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 16:13:20 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 16:13:20 - Delete (0): delete from action where id=? -2024-08-07 16:13:20 - Created new SQL alias : es1_0 -2024-08-07 16:13:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 16:13:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@76ccde41] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 16:13:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 16:13:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 16:13:20 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 16:13:20 - Version select: select id from event_step where id=? -2024-08-07 16:13:20 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 16:13:20 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 16:13:20 - Delete (0): delete from event_step where id=? -2024-08-07 16:13:20 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 16:13:20 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@3d50a3d9] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@4ee80a94] -2024-08-07 16:13:20 - Checking 0 named HQL queries -2024-08-07 16:13:20 - Checking 0 named SQL queries -2024-08-07 16:13:20 - - drop table if exists action cascade -2024-08-07 16:13:20 - - drop table if exists bill_action cascade -2024-08-07 16:13:20 - - drop table if exists event cascade -2024-08-07 16:13:20 - - drop table if exists event_step cascade -2024-08-07 16:13:20 - - drop table if exists member_action cascade -2024-08-07 16:13:20 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 16:13:20 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 16:13:20 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 16:13:20 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 16:13:20 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 16:13:20 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 16:13:20 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 16:13:20 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 16:13:20 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 16:13:20 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@8aa3013 -2024-08-07 16:13:20 - Registering SessionFactory: a28bc0fa-f66c-4a03-b95a-642397ad3db0 (<unnamed>) -2024-08-07 16:13:20 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 16:13:20 - Instantiated SessionFactory -2024-08-07 16:13:20 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'actionService' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 16:13:20 - Initializing JpaMetamodelMappingContext… -2024-08-07 16:13:20 - Finished initializing JpaMetamodelMappingContext -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - Statistics initialized [enabled=false] -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 16:13:20 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 16:13:20 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:13:20 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - Looking up named query BillAction.findByAction_Event -2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:13:20 - Did not find named query BillAction.findByAction_Event -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - Looking up named query BillAction.findByAction_Id -2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:13:20 - Did not find named query BillAction.findByAction_Id -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:13:20 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:13:20 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:13:20 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 84 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:20 - connectionId=rmi://192.168.5.4 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:13:20 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:20 - [javax.management.remote.rmi.RMIConnectionImpl@198cc444: connectionId=rmi://192.168.5.4 3] closing. -2024-08-07 16:13:20 - [javax.management.remote.rmi.RMIConnectionImpl@198cc444: connectionId=rmi://192.168.5.4 3] closed. -2024-08-07 16:13:20 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 16:13:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:13:20 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:13:20 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 16:13:20 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 16:13:20 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 16:13:20 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:13:20 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 16:13:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:13:20 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(740772055272541)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(740772055272541)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(740772055272541)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(740772055272541)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(740772055272541).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:13:20 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 16:13:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:13:20 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:13:20 - Looking up named query MemberAction.findByAction -2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:13:20 - Did not find named query MemberAction.findByAction -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - Looking up named query Event.findByToken -2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:13:20 - Did not find named query Event.findByToken -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 16:13:20 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 16:13:20 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:13:20 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:13:20 - Did not find named query Action.findLastByEvent.count -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 16:13:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:13:20 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:13:20 - Looking up named query Action.findByIdAndEvent -2024-08-07 16:13:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:13:20 - Did not find named query Action.findByIdAndEvent -2024-08-07 16:13:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:13:20 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 16:13:20 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 16:13:20 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 16:13:20 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'eventService' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 16:13:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 16:13:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 16:13:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 16:13:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 16:13:20 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 16:13:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 16:13:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:13:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 16:13:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 16:13:20 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 16:13:20 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 16:13:20 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'actionController' -2024-08-07 16:13:20 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 16:13:20 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'eventController' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'authService' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 16:13:20 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 16:13:20 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 16:13:20 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 16:13:20 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:13:20 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 16:13:20 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 16:13:20 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:13:20 - Loaded expression factory via original TCCL -2024-08-07 16:13:20 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 16:13:20 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 16:13:20 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:13:20 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 16:13:20 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:13:20 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:13:20 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:13:20 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:13:20 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:13:20 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:13:20 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:13:20 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:13:20 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:13:20 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:13:20 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'error' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 16:13:20 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 16:13:20 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 16:13:20 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 16:13:20 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 16:13:20 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 16:13:20 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:13:20 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:13:20 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 16:13:20 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:13:20 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:13:20 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 16:13:20 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:13:20 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:13:20 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:13:20 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 16:13:20 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 16:13:20 - - s.h.p.EventController: - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) -2024-08-07 16:13:20 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 16:13:20 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 16:13:20 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 16:13:20 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:13:20 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:13:20 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 16:13:20 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:13:20 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:13:21 - 'beanNameHandlerMapping' {} -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 16:13:21 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:13:21 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 16:13:21 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 16:13:21 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:13:21 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:13:21 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 16:13:21 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:13:21 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 16:13:21 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 16:13:21 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 16:13:21 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:13:21 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:13:21 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:13:21 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 16:13:21 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:13:21 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 16:13:21 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 16:13:21 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 16:13:21 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 16:13:21 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 16:13:21 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 16:13:21 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 16:13:21 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:13:21 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 16:13:21 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 16:13:21 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 16:13:21 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 16:13:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 16:13:21 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 16:13:21 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:13:21 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 16:13:21 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:13:21 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 16:13:21 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 16:13:21 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 16:13:21 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 16:13:21 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 16:13:21 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 16:13:21 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 16:13:21 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 16:13:21 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 16:13:21 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 16:13:21 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 16:13:21 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 16:13:21 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 16:13:21 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:13:21 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:13:21 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 16:13:21 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 16:13:21 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 16:13:21 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 16:13:21 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 16:13:21 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 16:13:21 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 16:13:21 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 16:13:21 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 16:13:21 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 16:13:21 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 16:13:21 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:13:21 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:13:21 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 16:13:21 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 16:13:21 - Using SLF4J as the default logging framework -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 16:13:21 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 16:13:21 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 16:13:21 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 16:13:21 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 16:13:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 16:13:21 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 16:13:21 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 16:13:21 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 16:13:21 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 16:13:21 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 16:13:21 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 16:13:21 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 16:13:21 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 16:13:21 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 16:13:21 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 16:13:21 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 16:13:21 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 16:13:21 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 16:13:21 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 16:13:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:13:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:13:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 16:13:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 16:13:21 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 16:13:21 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:13:21 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:13:21 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 16:13:21 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 16:13:21 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 16:13:21 - Registering beans for JMX exposure on startup -2024-08-07 16:13:21 - Auto-detecting user-defined JMX MBeans -2024-08-07 16:13:21 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 16:13:21 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 16:13:21 - Starting beans in phase -2147483647 -2024-08-07 16:13:21 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 16:13:21 - Starting beans in phase 2147481599 -2024-08-07 16:13:21 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 16:13:21 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 16:13:21 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 16:13:21 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 16:13:21 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 16:13:21 - Successfully started bean 'webServerStartStop' -2024-08-07 16:13:21 - Starting beans in phase 2147482623 -2024-08-07 16:13:21 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 16:13:21 - Starting beans in phase 2147483647 -2024-08-07 16:13:21 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 16:13:21 - Started HaengdongApplication in 2.524 seconds (process running for 2.77) -2024-08-07 16:13:21 - Application availability state LivenessState changed to CORRECT -2024-08-07 16:13:21 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 84 -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@219dd221: connectionId=rmi://192.168.5.4 4] closing. -2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@219dd221: connectionId=rmi://192.168.5.4 4] closed. -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: accepted socket from [192.168.5.4:64213] -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: accepted socket from [192.168.5.4:64214] -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 84 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 84 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@72822683: connectionId=rmi://192.168.5.4 5] closing. -2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@72822683: connectionId=rmi://192.168.5.4 5] closed. -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 84 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@4df8c9ee: connectionId=rmi://192.168.5.4 6] closing. -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@4df8c9ee: connectionId=rmi://192.168.5.4 6] closed. -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 84 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@4b665039: connectionId=rmi://192.168.5.4 7] closing. -2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@4b665039: connectionId=rmi://192.168.5.4 7] closed. -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 8 unwrapping query with defaultClassLoader. -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@55d5fa5d: connectionId=rmi://192.168.5.4 8] closing. -2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@55d5fa5d: connectionId=rmi://192.168.5.4 8] closed. -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 84 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 84 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@334adde8: connectionId=rmi://192.168.5.4 10] closing. -2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@d4b931b: connectionId=rmi://192.168.5.4 9] closing. -2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@334adde8: connectionId=rmi://192.168.5.4 10] closed. -2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@d4b931b: connectionId=rmi://192.168.5.4 9] closed. -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 84 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 84 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 11 unwrapping query with defaultClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 12 unwrapping query with defaultClassLoader. -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:21 - connectionId=rmi://192.168.5.4 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 16:13:21 - Fetching JDBC Connection from DataSource -2024-08-07 16:13:21 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 16:13:21 - Initializing Servlet 'dispatcherServlet' -2024-08-07 16:13:21 - Detected StandardServletMultipartResolver -2024-08-07 16:13:21 - Detected AcceptHeaderLocaleResolver -2024-08-07 16:13:21 - Detected FixedThemeResolver -2024-08-07 16:13:21 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@75ba33b8 -2024-08-07 16:13:21 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@1054864f -2024-08-07 16:13:21 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 16:13:21 - Completed initialization in 1 ms -2024-08-07 16:13:21 - Fetching JDBC Connection from DataSource -2024-08-07 16:13:21 - RMI TCP Connection(2)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@264a0294: connectionId=rmi://192.168.5.4 11] closing. -2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@264a0294: connectionId=rmi://192.168.5.4 11] closed. -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 82 -2024-08-07 16:13:21 - RMI TCP Connection(3)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@3b55932a: connectionId=rmi://192.168.5.4 12] closing. -2024-08-07 16:13:21 - [javax.management.remote.rmi.RMIConnectionImpl@3b55932a: connectionId=rmi://192.168.5.4 12] closed. -2024-08-07 16:13:49 - RMI TCP Connection(2)-192.168.5.4: (port 64211) connection closed -2024-08-07 16:13:49 - RMI TCP Connection(1)-192.168.5.4: (port 64211) connection closed -2024-08-07 16:13:49 - RMI TCP Connection(3)-192.168.5.4: (port 64211) connection closed -2024-08-07 16:13:49 - RMI TCP Connection(3)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64214,localport=64211] -2024-08-07 16:13:49 - RMI TCP Connection(2)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64213,localport=64211] -2024-08-07 16:13:49 - RMI TCP Connection(1)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64212,localport=64211] -2024-08-07 16:13:49 - RMI TCP Connection(1)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64212,localport=64211] -2024-08-07 16:13:49 - RMI TCP Connection(2)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64213,localport=64211] -2024-08-07 16:13:49 - RMI TCP Connection(3)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64214,localport=64211] -2024-08-07 16:13:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:13:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:13:51 - RMI TCP Connection(4)-192.168.5.4: accepted socket from [192.168.5.4:64215] -2024-08-07 16:13:51 - RMI TCP Connection(4)-192.168.5.4: (port 64211) op = 80 -2024-08-07 16:13:51 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:51 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:51 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:51 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:13:51 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@373060a4 -2024-08-07 16:14:06 - RMI TCP Connection(4)-192.168.5.4: (port 64211) connection closed -2024-08-07 16:14:06 - RMI TCP Connection(4)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64215,localport=64211] -2024-08-07 16:14:06 - RMI TCP Connection(4)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64215,localport=64211] -2024-08-07 16:14:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:14:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:14:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:14:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:15:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:15:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:15:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:15:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:16:08 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1097716332110316034/conf/jaspic-providers.xml] -2024-08-07 16:16:08 - OPTIONS "/api/events/13ed8833-ea17-4532-bf4c-34ec1a18167c/actions", parameters={} -2024-08-07 16:16:08 - OPTIONS "/api/events/13ed8833-ea17-4532-bf4c-34ec1a18167c", parameters={} -2024-08-07 16:16:08 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:16:08 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:16:08 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:16:08 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:16:08 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:16:08 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:16:08 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:16:08 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:16:08 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:16:08 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:16:08 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:16:08 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:16:08 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:16:08 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:16:08 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:16:08 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:16:10 - OPTIONS "/api/events/13ed8833-ea17-4532-bf4c-34ec1a18167c", parameters={} -2024-08-07 16:16:10 - OPTIONS "/api/events/13ed8833-ea17-4532-bf4c-34ec1a18167c/actions", parameters={} -2024-08-07 16:16:10 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:16:10 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:16:10 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:16:10 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:16:10 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:16:10 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:16:10 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:16:10 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:16:10 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:16:10 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:16:10 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:16:10 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:16:10 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:16:10 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:16:10 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:16:10 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:16:19 - OPTIONS "/api/events", parameters={} -2024-08-07 16:16:19 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:16:19 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:16:19 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:16:19 - Completed 200 OK -2024-08-07 16:16:19 - POST "/api/events", parameters={} -2024-08-07 16:16:19 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:16:19 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:16:19 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=ditgh, password=null]] -2024-08-07 16:16:19 - ValidationMessages not found. -2024-08-07 16:16:19 - ContributorValidationMessages not found. -2024-08-07 16:16:19 - org.hibernate.validator.ValidationMessages found. -2024-08-07 16:16:19 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#handleMethodArgumentNotValidException(MethodArgumentNotValidException) -2024-08-07 16:16:19 - Validation failed for argument [0] in public org.springframework.http.ResponseEntity<server.haengdong.presentation.response.EventResponse> server.haengdong.presentation.EventController.saveEvent(server.haengdong.presentation.request.EventSaveRequest): [Field error in object 'eventSaveRequest' on field 'password': rejected value [null]; codes [NotBlank.eventSaveRequest.password,NotBlank.password,NotBlank.java.lang.String,NotBlank]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [eventSaveRequest.password,password]; arguments []; default message [password]]; default message [공백일 수 없습니다]] -org.springframework.web.bind.MethodArgumentNotValidException: Validation failed for argument [0] in public org.springframework.http.ResponseEntity<server.haengdong.presentation.response.EventResponse> server.haengdong.presentation.EventController.saveEvent(server.haengdong.presentation.request.EventSaveRequest): [Field error in object 'eventSaveRequest' on field 'password': rejected value [null]; codes [NotBlank.eventSaveRequest.password,NotBlank.password,NotBlank.java.lang.String,NotBlank]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [eventSaveRequest.password,password]; arguments []; default message [password]]; default message [공백일 수 없습니다]] - at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.resolveArgument(RequestResponseBodyMethodProcessor.java:144) - at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) - at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:224) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:178) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:16:19 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:16:19 - Writing [ErrorResponse[code=R_001, message=password 공백일 수 없습니다]] -2024-08-07 16:16:19 - Resolved [org.springframework.web.bind.MethodArgumentNotValidException: Validation failed for argument [0] in public org.springframework.http.ResponseEntity<server.haengdong.presentation.response.EventResponse> server.haengdong.presentation.EventController.saveEvent(server.haengdong.presentation.request.EventSaveRequest): [Field error in object 'eventSaveRequest' on field 'password': rejected value [null]; codes [NotBlank.eventSaveRequest.password,NotBlank.password,NotBlank.java.lang.String,NotBlank]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [eventSaveRequest.password,password]; arguments []; default message [password]]; default message [공백일 수 없습니다]] ] -2024-08-07 16:16:19 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:16:19 - Completed 400 BAD_REQUEST -2024-08-07 16:16:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:16:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:16:35 - OPTIONS "/api/events/13ed8833-ea17-4532-bf4c-34ec1a18167c", parameters={} -2024-08-07 16:16:35 - OPTIONS "/api/events/13ed8833-ea17-4532-bf4c-34ec1a18167c/actions", parameters={} -2024-08-07 16:16:35 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:16:35 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:16:35 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:16:35 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:16:35 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:16:35 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:16:35 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:16:35 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:16:35 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:16:35 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:16:35 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:16:35 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:16:35 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:16:35 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:16:35 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:16:35 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:16:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:16:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:17:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:17:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:17:22 - OPTIONS "/api/events", parameters={} -2024-08-07 16:17:22 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:17:22 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:17:22 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:17:22 - Completed 200 OK -2024-08-07 16:17:22 - POST "/api/events", parameters={} -2024-08-07 16:17:22 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:17:22 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:17:22 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=백호야 CORS 해결해줘, password=9998]] -2024-08-07 16:17:22 - Found thread-bound EntityManager [SessionImpl(1341226683<open>)] for JPA transaction -2024-08-07 16:17:22 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 16:17:22 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:17:22 - begin -2024-08-07 16:17:22 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@7e2e813e] -2024-08-07 16:17:22 - Found thread-bound EntityManager [SessionImpl(1341226683<open>)] for JPA transaction -2024-08-07 16:17:22 - Participating in existing transaction -2024-08-07 16:17:22 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 16:17:22 - Executing identity-insert immediately -2024-08-07 16:17:22 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 16:17:22 - Initializer list is empty -2024-08-07 16:17:22 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@22a9ea5c -2024-08-07 16:17:22 - Extracted JDBC value [0] - [1] -2024-08-07 16:17:22 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@6c0d2e83 -2024-08-07 16:17:22 - Initiating transaction commit -2024-08-07 16:17:22 - Committing JPA transaction on EntityManager [SessionImpl(1341226683<open>)] -2024-08-07 16:17:22 - committing -2024-08-07 16:17:22 - Processing flush-time cascades -2024-08-07 16:17:22 - Dirty checking collections -2024-08-07 16:17:22 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 16:17:22 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 16:17:22 - Listing entities: -2024-08-07 16:17:22 - server.haengdong.domain.event.Event{password=9998, name=백호야 CORS 해결해줘, id=1, token=96e98bf4-3743-4b34-b92a-2483b084ea30} -2024-08-07 16:17:22 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:17:22 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:17:22 - Writing [EventResponse[eventId=96e98bf4-3743-4b34-b92a-2483b084ea30]] -2024-08-07 16:17:22 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:17:22 - Completed 200 OK -2024-08-07 16:17:24 - OPTIONS "/api/events/96e98bf4-3743-4b34-b92a-2483b084ea30", parameters={} -2024-08-07 16:17:24 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:17:24 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:17:24 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:17:24 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:17:24 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:17:24 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:17:24 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:17:24 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:17:24 - OPTIONS "/api/events/96e98bf4-3743-4b34-b92a-2483b084ea30/actions", parameters={} -2024-08-07 16:17:24 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:17:24 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:17:24 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:17:24 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:17:24 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:17:24 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:17:24 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:17:24 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:17:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:17:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:18:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:18:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:18:34 - POST "/api/events", parameters={} -2024-08-07 16:18:34 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:18:34 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:18:34 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=백호 화이팅, password=3333]] -2024-08-07 16:18:34 - Found thread-bound EntityManager [SessionImpl(66154355<open>)] for JPA transaction -2024-08-07 16:18:34 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 16:18:34 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:18:34 - begin -2024-08-07 16:18:34 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@137f3bfe] -2024-08-07 16:18:34 - Found thread-bound EntityManager [SessionImpl(66154355<open>)] for JPA transaction -2024-08-07 16:18:34 - Participating in existing transaction -2024-08-07 16:18:34 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 16:18:34 - Executing identity-insert immediately -2024-08-07 16:18:34 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 16:18:34 - Initializer list is empty -2024-08-07 16:18:34 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@450e621b -2024-08-07 16:18:34 - Extracted JDBC value [0] - [2] -2024-08-07 16:18:34 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@74179cf8 -2024-08-07 16:18:34 - Initiating transaction commit -2024-08-07 16:18:34 - Committing JPA transaction on EntityManager [SessionImpl(66154355<open>)] -2024-08-07 16:18:34 - committing -2024-08-07 16:18:34 - Processing flush-time cascades -2024-08-07 16:18:34 - Dirty checking collections -2024-08-07 16:18:34 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 16:18:34 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 16:18:34 - Listing entities: -2024-08-07 16:18:34 - server.haengdong.domain.event.Event{password=3333, name=백호 화이팅, id=2, token=460861ab-c18e-4be4-9094-779f5a87bd20} -2024-08-07 16:18:34 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:18:34 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:18:34 - Writing [EventResponse[eventId=460861ab-c18e-4be4-9094-779f5a87bd20]] -2024-08-07 16:18:34 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:18:34 - Completed 200 OK -2024-08-07 16:18:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:18:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:19:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:19:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:19:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:19:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:20:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:20:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:20:22 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:20:22 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:20:22 - POST "/api/events", parameters={} -2024-08-07 16:20:22 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:20:22 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:20:22 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=null]] -2024-08-07 16:20:22 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#handleMethodArgumentNotValidException(MethodArgumentNotValidException) -2024-08-07 16:20:22 - Validation failed for argument [0] in public org.springframework.http.ResponseEntity<server.haengdong.presentation.response.EventResponse> server.haengdong.presentation.EventController.saveEvent(server.haengdong.presentation.request.EventSaveRequest): [Field error in object 'eventSaveRequest' on field 'password': rejected value [null]; codes [NotBlank.eventSaveRequest.password,NotBlank.password,NotBlank.java.lang.String,NotBlank]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [eventSaveRequest.password,password]; arguments []; default message [password]]; default message [공백일 수 없습니다]] -org.springframework.web.bind.MethodArgumentNotValidException: Validation failed for argument [0] in public org.springframework.http.ResponseEntity<server.haengdong.presentation.response.EventResponse> server.haengdong.presentation.EventController.saveEvent(server.haengdong.presentation.request.EventSaveRequest): [Field error in object 'eventSaveRequest' on field 'password': rejected value [null]; codes [NotBlank.eventSaveRequest.password,NotBlank.password,NotBlank.java.lang.String,NotBlank]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [eventSaveRequest.password,password]; arguments []; default message [password]]; default message [공백일 수 없습니다]] - at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.resolveArgument(RequestResponseBodyMethodProcessor.java:144) - at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) - at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:224) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:178) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:20:22 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:20:22 - Writing [ErrorResponse[code=R_001, message=password 공백일 수 없습니다]] -2024-08-07 16:20:22 - Resolved [org.springframework.web.bind.MethodArgumentNotValidException: Validation failed for argument [0] in public org.springframework.http.ResponseEntity<server.haengdong.presentation.response.EventResponse> server.haengdong.presentation.EventController.saveEvent(server.haengdong.presentation.request.EventSaveRequest): [Field error in object 'eventSaveRequest' on field 'password': rejected value [null]; codes [NotBlank.eventSaveRequest.password,NotBlank.password,NotBlank.java.lang.String,NotBlank]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [eventSaveRequest.password,password]; arguments []; default message [password]]; default message [공백일 수 없습니다]] ] -2024-08-07 16:20:22 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:20:22 - Completed 400 BAD_REQUEST -2024-08-07 16:20:34 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:20:34 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:20:34 - POST "/api/events", parameters={} -2024-08-07 16:20:34 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:20:34 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:20:34 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=12345]] -2024-08-07 16:20:34 - Found thread-bound EntityManager [SessionImpl(78012176<open>)] for JPA transaction -2024-08-07 16:20:34 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 16:20:34 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:20:34 - begin -2024-08-07 16:20:34 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@2a452096] -2024-08-07 16:20:34 - Initiating transaction rollback -2024-08-07 16:20:34 - Rolling back JPA transaction on EntityManager [SessionImpl(78012176<open>)] -2024-08-07 16:20:34 - rolling back -2024-08-07 16:20:34 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:20:34 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException) -2024-08-07 16:20:34 - 비밀번호는 4자리 숫자만 가능합니다. -server.haengdong.exception.HaengdongException: 비밀번호는 4자리 숫자만 가능합니다. - at server.haengdong.domain.event.Event.validatePassword(Event.java:61) - at server.haengdong.domain.event.Event.<init>(Event.java:37) - at server.haengdong.application.request.EventAppRequest.toEvent(EventAppRequest.java:8) - at server.haengdong.application.EventService.saveEvent(EventService.java:40) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at server.haengdong.application.EventService$$SpringCGLIB$$0.saveEvent(<generated>) - at server.haengdong.presentation.EventController.saveEvent(EventController.java:37) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:20:34 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:20:34 - Writing [ErrorResponse[code=R_001, message=잘못된 요청입니다.]] -2024-08-07 16:20:34 - Resolved [server.haengdong.exception.HaengdongException: 비밀번호는 4자리 숫자만 가능합니다.] -2024-08-07 16:20:34 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:20:34 - Completed 400 BAD_REQUEST -2024-08-07 16:20:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:20:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:21:11 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:21:11 - POST "/api/events", parameters={} -2024-08-07 16:21:11 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:21:11 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:21:11 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:21:11 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=12345]] -2024-08-07 16:21:11 - Found thread-bound EntityManager [SessionImpl(198571365<open>)] for JPA transaction -2024-08-07 16:21:11 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 16:21:11 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:21:11 - begin -2024-08-07 16:21:11 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@42d0805b] -2024-08-07 16:21:11 - Initiating transaction rollback -2024-08-07 16:21:11 - Rolling back JPA transaction on EntityManager [SessionImpl(198571365<open>)] -2024-08-07 16:21:11 - rolling back -2024-08-07 16:21:11 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:21:11 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException) -2024-08-07 16:21:11 - 비밀번호는 4자리 숫자만 가능합니다. -server.haengdong.exception.HaengdongException: 비밀번호는 4자리 숫자만 가능합니다. - at server.haengdong.domain.event.Event.validatePassword(Event.java:61) - at server.haengdong.domain.event.Event.<init>(Event.java:37) - at server.haengdong.application.request.EventAppRequest.toEvent(EventAppRequest.java:8) - at server.haengdong.application.EventService.saveEvent(EventService.java:40) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at server.haengdong.application.EventService$$SpringCGLIB$$0.saveEvent(<generated>) - at server.haengdong.presentation.EventController.saveEvent(EventController.java:37) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:21:11 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:21:11 - Writing [ErrorResponse[code=R_001, message=잘못된 요청입니다.]] -2024-08-07 16:21:11 - Resolved [server.haengdong.exception.HaengdongException: 비밀번호는 4자리 숫자만 가능합니다.] -2024-08-07 16:21:11 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:21:11 - Completed 400 BAD_REQUEST -2024-08-07 16:21:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:21:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:21:37 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:21:37 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:21:37 - GET "/api/events", parameters={} -2024-08-07 16:21:37 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-07 16:21:37 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:21:37 - Writing [ErrorResponse[code=R_002, message=잘못된 엔드포인트입니다.]] -2024-08-07 16:21:37 - Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'GET' is not supported] -2024-08-07 16:21:37 - Completed 400 BAD_REQUEST -2024-08-07 16:21:40 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:21:40 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:21:40 - POST "/api/events", parameters={} -2024-08-07 16:21:40 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:21:40 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:21:40 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=12345]] -2024-08-07 16:21:40 - Found thread-bound EntityManager [SessionImpl(1223445385<open>)] for JPA transaction -2024-08-07 16:21:40 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 16:21:40 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:21:40 - begin -2024-08-07 16:21:40 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@7ab1821b] -2024-08-07 16:21:40 - Initiating transaction rollback -2024-08-07 16:21:40 - Rolling back JPA transaction on EntityManager [SessionImpl(1223445385<open>)] -2024-08-07 16:21:40 - rolling back -2024-08-07 16:21:40 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:21:40 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException) -2024-08-07 16:21:40 - 비밀번호는 4자리 숫자만 가능합니다. -server.haengdong.exception.HaengdongException: 비밀번호는 4자리 숫자만 가능합니다. - at server.haengdong.domain.event.Event.validatePassword(Event.java:61) - at server.haengdong.domain.event.Event.<init>(Event.java:37) - at server.haengdong.application.request.EventAppRequest.toEvent(EventAppRequest.java:8) - at server.haengdong.application.EventService.saveEvent(EventService.java:40) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at server.haengdong.application.EventService$$SpringCGLIB$$0.saveEvent(<generated>) - at server.haengdong.presentation.EventController.saveEvent(EventController.java:37) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:21:40 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:21:40 - Writing [ErrorResponse[code=R_001, message=잘못된 요청입니다.]] -2024-08-07 16:21:40 - Resolved [server.haengdong.exception.HaengdongException: 비밀번호는 4자리 숫자만 가능합니다.] -2024-08-07 16:21:40 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:21:40 - Completed 400 BAD_REQUEST -2024-08-07 16:21:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:21:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:21:53 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:21:53 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:21:53 - POST "/api/events", parameters={} -2024-08-07 16:21:53 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:21:53 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:21:53 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=12345]] -2024-08-07 16:21:53 - Found thread-bound EntityManager [SessionImpl(782871237<open>)] for JPA transaction -2024-08-07 16:21:53 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 16:21:53 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:21:53 - begin -2024-08-07 16:21:53 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@18cb5987] -2024-08-07 16:21:53 - Initiating transaction rollback -2024-08-07 16:21:53 - Rolling back JPA transaction on EntityManager [SessionImpl(782871237<open>)] -2024-08-07 16:21:53 - rolling back -2024-08-07 16:21:53 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:21:53 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException) -2024-08-07 16:21:53 - 비밀번호는 4자리 숫자만 가능합니다. -server.haengdong.exception.HaengdongException: 비밀번호는 4자리 숫자만 가능합니다. - at server.haengdong.domain.event.Event.validatePassword(Event.java:61) - at server.haengdong.domain.event.Event.<init>(Event.java:37) - at server.haengdong.application.request.EventAppRequest.toEvent(EventAppRequest.java:8) - at server.haengdong.application.EventService.saveEvent(EventService.java:40) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at server.haengdong.application.EventService$$SpringCGLIB$$0.saveEvent(<generated>) - at server.haengdong.presentation.EventController.saveEvent(EventController.java:37) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:21:53 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:21:53 - Writing [ErrorResponse[code=R_001, message=잘못된 요청입니다.]] -2024-08-07 16:21:53 - Resolved [server.haengdong.exception.HaengdongException: 비밀번호는 4자리 숫자만 가능합니다.] -2024-08-07 16:21:53 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:21:53 - Completed 400 BAD_REQUEST -2024-08-07 16:22:01 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:22:01 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:22:01 - POST "/api/events", parameters={} -2024-08-07 16:22:01 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:22:01 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:22:01 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=1234]] -2024-08-07 16:22:01 - Found thread-bound EntityManager [SessionImpl(2041182061<open>)] for JPA transaction -2024-08-07 16:22:01 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 16:22:01 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:22:01 - begin -2024-08-07 16:22:01 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@50bafee6] -2024-08-07 16:22:01 - Found thread-bound EntityManager [SessionImpl(2041182061<open>)] for JPA transaction -2024-08-07 16:22:01 - Participating in existing transaction -2024-08-07 16:22:01 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 16:22:01 - Executing identity-insert immediately -2024-08-07 16:22:01 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 16:22:01 - Initializer list is empty -2024-08-07 16:22:01 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@48aff115 -2024-08-07 16:22:01 - Extracted JDBC value [0] - [3] -2024-08-07 16:22:01 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@1d5c1e80 -2024-08-07 16:22:01 - Initiating transaction commit -2024-08-07 16:22:01 - Committing JPA transaction on EntityManager [SessionImpl(2041182061<open>)] -2024-08-07 16:22:01 - committing -2024-08-07 16:22:01 - Processing flush-time cascades -2024-08-07 16:22:01 - Dirty checking collections -2024-08-07 16:22:01 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 16:22:01 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 16:22:01 - Listing entities: -2024-08-07 16:22:01 - server.haengdong.domain.event.Event{password=1234, name=1234, id=3, token=a4770df6-9e69-4f92-885b-b7165bd03e72} -2024-08-07 16:22:01 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:22:01 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:22:01 - Writing [EventResponse[eventId=a4770df6-9e69-4f92-885b-b7165bd03e72]] -2024-08-07 16:22:01 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:22:01 - Completed 200 OK -2024-08-07 16:22:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:22:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:22:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:22:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:23:14 - POST "/api/events", parameters={} -2024-08-07 16:23:14 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:23:14 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:23:14 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=소하야 고마워, password=4444]] -2024-08-07 16:23:14 - Found thread-bound EntityManager [SessionImpl(1428328362<open>)] for JPA transaction -2024-08-07 16:23:14 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 16:23:14 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:23:14 - begin -2024-08-07 16:23:14 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@7e7c77b0] -2024-08-07 16:23:14 - Found thread-bound EntityManager [SessionImpl(1428328362<open>)] for JPA transaction -2024-08-07 16:23:14 - Participating in existing transaction -2024-08-07 16:23:14 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 16:23:14 - Executing identity-insert immediately -2024-08-07 16:23:14 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 16:23:14 - Initializer list is empty -2024-08-07 16:23:14 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@39eddc10 -2024-08-07 16:23:14 - Extracted JDBC value [0] - [4] -2024-08-07 16:23:14 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@59b01cc6 -2024-08-07 16:23:14 - Initiating transaction commit -2024-08-07 16:23:14 - Committing JPA transaction on EntityManager [SessionImpl(1428328362<open>)] -2024-08-07 16:23:14 - committing -2024-08-07 16:23:14 - Processing flush-time cascades -2024-08-07 16:23:14 - Dirty checking collections -2024-08-07 16:23:14 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 16:23:14 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 16:23:14 - Listing entities: -2024-08-07 16:23:14 - server.haengdong.domain.event.Event{password=4444, name=소하야 고마워, id=4, token=419797bc-2a5f-441f-9686-ee3e91d4ebbb} -2024-08-07 16:23:14 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:23:14 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:23:14 - Writing [EventResponse[eventId=419797bc-2a5f-441f-9686-ee3e91d4ebbb]] -2024-08-07 16:23:14 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:23:14 - Completed 200 OK -2024-08-07 16:23:15 - OPTIONS "/api/events/419797bc-2a5f-441f-9686-ee3e91d4ebbb", parameters={} -2024-08-07 16:23:15 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:23:15 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:23:15 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:23:15 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:23:15 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:23:15 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:23:15 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:23:15 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:23:15 - OPTIONS "/api/events/419797bc-2a5f-441f-9686-ee3e91d4ebbb/actions", parameters={} -2024-08-07 16:23:15 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:23:15 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:23:15 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:23:15 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:23:15 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:23:15 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:23:15 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:23:15 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:23:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:23:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:23:37 - OPTIONS "/api/events/419797bc-2a5f-441f-9686-ee3e91d4ebbb/actions", parameters={} -2024-08-07 16:23:37 - OPTIONS "/api/events/419797bc-2a5f-441f-9686-ee3e91d4ebbb", parameters={} -2024-08-07 16:23:37 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:23:37 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:23:37 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:23:37 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:23:37 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:23:37 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:23:37 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:23:37 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:23:37 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:23:37 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:23:37 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:23:37 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:23:37 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:23:37 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:23:37 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:23:37 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:23:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:23:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:24:09 - OPTIONS "/api/events/419797bc-2a5f-441f-9686-ee3e91d4ebbb/actions", parameters={} -2024-08-07 16:24:09 - OPTIONS "/api/events/419797bc-2a5f-441f-9686-ee3e91d4ebbb", parameters={} -2024-08-07 16:24:09 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:24:09 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:24:09 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:24:09 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:24:09 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:24:09 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:24:09 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:24:09 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:24:09 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:24:09 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:24:09 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:24:09 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:24:09 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:24:09 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:24:09 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:24:09 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:24:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:24:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:24:31 - OPTIONS "/api/events/419797bc-2a5f-441f-9686-ee3e91d4ebbb/actions", parameters={} -2024-08-07 16:24:31 - OPTIONS "/api/events/419797bc-2a5f-441f-9686-ee3e91d4ebbb", parameters={} -2024-08-07 16:24:31 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:24:31 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:24:31 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:24:31 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:24:31 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:24:31 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:24:31 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:24:31 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:24:31 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:24:31 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:24:31 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:24:31 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:24:31 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:24:31 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:24:31 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:24:31 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:24:41 - OPTIONS "/api/events/a4770df6-9e69-4f92-885b-b7165bd03e72/actions", parameters={} -2024-08-07 16:24:41 - OPTIONS "/api/events/a4770df6-9e69-4f92-885b-b7165bd03e72", parameters={} -2024-08-07 16:24:41 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:24:41 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:24:41 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:24:41 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:24:41 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:24:41 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:24:41 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:24:41 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:24:41 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:24:41 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:24:41 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:24:41 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:24:41 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:24:41 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:24:41 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:24:41 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:24:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:24:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:25:06 - OPTIONS "/api/events/a4770df6-9e69-4f92-885b-b7165bd03e72", parameters={} -2024-08-07 16:25:06 - OPTIONS "/api/events/a4770df6-9e69-4f92-885b-b7165bd03e72/actions", parameters={} -2024-08-07 16:25:06 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:25:06 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:25:06 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:25:06 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:25:06 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:25:06 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:25:06 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:25:06 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:25:06 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:25:06 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:25:06 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:25:06 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:25:06 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:25:06 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:25:06 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:25:06 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:25:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:25:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:25:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:25:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:25:59 - OPTIONS "/api/events/a4770df6-9e69-4f92-885b-b7165bd03e72/actions", parameters={} -2024-08-07 16:25:59 - OPTIONS "/api/events/a4770df6-9e69-4f92-885b-b7165bd03e72", parameters={} -2024-08-07 16:25:59 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:25:59 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:25:59 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:25:59 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:25:59 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:25:59 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:25:59 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:25:59 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:25:59 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:25:59 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:25:59 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:25:59 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:25:59 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:25:59 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:25:59 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:25:59 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:26:05 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 16:26:05 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Wed Aug 07 16:13:19 KST 2024 -2024-08-07 16:26:05 - Stopping beans in phase 2147483647 -2024-08-07 16:26:05 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 16:26:05 - Stopping beans in phase 2147482623 -2024-08-07 16:26:05 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 16:26:05 - Stopping beans in phase 2147481599 -2024-08-07 16:26:05 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 16:26:05 - Stopping beans in phase -2147483647 -2024-08-07 16:26:05 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 16:26:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 16:26:05 - Unregistering JMX-exposed beans on shutdown -2024-08-07 16:26:05 - Unregistering JMX-exposed beans -2024-08-07 16:26:05 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 16:26:05 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 16:26:05 - HHH000031: Closing -2024-08-07 16:26:05 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@3bef3ff3] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@4ee80a94] -2024-08-07 16:26:05 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 16:26:05 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 16:26:05 - HikariPool-1 - Shutdown initiated... -2024-08-07 16:26:05 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:26:05 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:26:05 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:26:05 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:26:05 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:26:05 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:26:05 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:26:05 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:26:05 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:26:05 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:26:05 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:26:05 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 16:26:05 - HikariPool-1 - Shutdown completed. -2024-08-07 16:26:05 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 16:26:07 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 16:26:07 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 16:26:07 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:26:07 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:26:07 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:26:07 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:26:07 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:26:07 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:26:07 - Loaded expression factory via original TCCL -2024-08-07 16:26:07 - Starting HaengdongApplication using Java 17.0.12 with PID 60533 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 16:26:07 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 16:26:07 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 16:26:07 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 16:26:07 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 16:26:07 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:26:07 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:26:07 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:26:07 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:26:07 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:26:07 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 16:26:07 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 16:26:07 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 16:26:07 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 16:26:07 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 16:26:07 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 16:26:07 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 16:26:07 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 16:26:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 16:26:07 - Finished Spring Data repository scanning in 15 ms. Found 4 JPA repository interfaces. -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 16:26:07 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 16:26:07 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 16:26:07 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 16:26:07 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 16:26:07 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 16:26:07 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 16:26:07 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@67f9cb52] -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 16:26:07 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 16:26:07 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 16:26:07 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 16:26:07 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 16:26:07 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 16:26:07 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 16:26:07 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:26:07 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:26:07 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:26:07 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 16:26:07 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 16:26:07 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 16:26:07 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 16:26:07 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 16:26:07 - Tomcat initialized with port 8080 (http) -2024-08-07 16:26:07 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@aa1bb14] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@aa1bb14] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.mapper.MapperListener@4245bf68] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.mapper.MapperListener@4245bf68] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 16:26:07 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 16:26:07 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@aa1bb14] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@aa1bb14] to [STARTING] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@aa1bb14] to [STARTED] -2024-08-07 16:26:07 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 16:26:07 - Starting service [Tomcat] -2024-08-07 16:26:07 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 16:26:07 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 16:26:07 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.webresources.StandardRoot@3360283] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.webresources.StandardRoot@3360283] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.webresources.StandardRoot@3360283] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.webresources.DirResourceSet@23ee2ccf] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.webresources.DirResourceSet@23ee2ccf] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.webresources.DirResourceSet@23ee2ccf] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.webresources.DirResourceSet@23ee2ccf] to [STARTING] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.webresources.DirResourceSet@23ee2ccf] to [STARTED] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.webresources.StandardRoot@3360283] to [STARTING] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.webresources.StandardRoot@3360283] to [STARTED] -2024-08-07 16:26:07 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:26:07 - Starting this Loader -2024-08-07 16:26:07 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:26:07 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:26:07 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 16:26:07 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@55c1ced9] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@55c1ced9] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@55c1ced9] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@55c1ced9] to [STARTING] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@55c1ced9] to [STARTED] -2024-08-07 16:26:07 - Initializing Spring embedded WebApplicationContext -2024-08-07 16:26:07 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 16:26:07 - Root WebApplicationContext: initialization completed in 620 ms -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 16:26:07 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 16:26:07 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 16:26:07 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 16:26:07 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:26:07 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 16:26:07 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 16:26:07 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 16:26:07 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 16:26:07 - HikariPool-1 - configuration: -2024-08-07 16:26:07 - allowPoolSuspension.............false -2024-08-07 16:26:07 - autoCommit......................true -2024-08-07 16:26:07 - catalog.........................none -2024-08-07 16:26:07 - connectionInitSql...............none -2024-08-07 16:26:07 - connectionTestQuery.............none -2024-08-07 16:26:07 - connectionTimeout...............30000 -2024-08-07 16:26:07 - dataSource......................none -2024-08-07 16:26:07 - dataSourceClassName.............none -2024-08-07 16:26:07 - dataSourceJNDI..................none -2024-08-07 16:26:07 - dataSourceProperties............{password=<masked>} -2024-08-07 16:26:07 - driverClassName................."org.h2.Driver" -2024-08-07 16:26:07 - exceptionOverrideClassName......none -2024-08-07 16:26:07 - healthCheckProperties...........{} -2024-08-07 16:26:07 - healthCheckRegistry.............none -2024-08-07 16:26:07 - idleTimeout.....................600000 -2024-08-07 16:26:07 - initializationFailTimeout.......1 -2024-08-07 16:26:07 - isolateInternalQueries..........false -2024-08-07 16:26:07 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 16:26:07 - keepaliveTime...................0 -2024-08-07 16:26:07 - leakDetectionThreshold..........0 -2024-08-07 16:26:07 - maxLifetime.....................1800000 -2024-08-07 16:26:07 - maximumPoolSize.................10 -2024-08-07 16:26:07 - metricRegistry..................none -2024-08-07 16:26:07 - metricsTrackerFactory...........none -2024-08-07 16:26:07 - minimumIdle.....................10 -2024-08-07 16:26:07 - password........................<masked> -2024-08-07 16:26:07 - poolName........................"HikariPool-1" -2024-08-07 16:26:07 - readOnly........................false -2024-08-07 16:26:07 - registerMbeans..................false -2024-08-07 16:26:07 - scheduledExecutor...............none -2024-08-07 16:26:07 - schema..........................none -2024-08-07 16:26:07 - threadFactory...................internal -2024-08-07 16:26:07 - transactionIsolation............default -2024-08-07 16:26:07 - username........................"sa" -2024-08-07 16:26:07 - validationTimeout...............5000 -2024-08-07 16:26:07 - HikariPool-1 - Starting... -2024-08-07 16:26:07 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 16:26:07 - HikariPool-1 - Start completed. -2024-08-07 16:26:07 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 16:26:07 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 16:26:07 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:26:07 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: accepted socket from [192.168.5.4:64293] -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 84 -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:07 - connectionId=rmi://192.168.5.4 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:26:07 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 16:26:07 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 16:26:07 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:07 - [javax.management.remote.rmi.RMIConnectionImpl@564ee06a: connectionId=rmi://192.168.5.4 1] closing. -2024-08-07 16:26:07 - [javax.management.remote.rmi.RMIConnectionImpl@564ee06a: connectionId=rmi://192.168.5.4 1] closed. -2024-08-07 16:26:07 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 16:26:07 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 16:26:07 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@416b1265] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@416b1265] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@416b1265] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@416b1265] to [STARTING] -2024-08-07 16:26:07 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@416b1265] to [STARTED] -2024-08-07 16:26:07 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:26:07 - Filter 'requestContextFilter' configured for use -2024-08-07 16:26:07 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 16:26:07 - Filter 'characterEncodingFilter' configured for use -2024-08-07 16:26:07 - Filter 'formContentFilter' configured for use -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:26:07 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:26:07 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:26:07 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 16:26:07 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.mapper.MapperListener@4245bf68] to [STARTING_PREP] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.mapper.MapperListener@4245bf68] to [STARTING] -2024-08-07 16:26:07 - Registered host [localhost] -2024-08-07 16:26:07 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 16:26:07 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 16:26:07 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 16:26:07 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 16:26:07 - Setting state for [org.apache.catalina.mapper.MapperListener@4245bf68] to [STARTED] -2024-08-07 16:26:07 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 16:26:07 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 16:26:07 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:26:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 16:26:07 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 16:26:07 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 16:26:07 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:26:07 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:26:07 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 16:26:07 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 16:26:07 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 16:26:07 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 16:26:07 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 16:26:07 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 16:26:07 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 16:26:07 - HHH000206: 'hibernate.properties' not found -2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 16:26:07 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 16:26:07 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 16:26:07 - HHH000026: Second-level cache disabled -2024-08-07 16:26:07 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 16:26:07 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 16:26:07 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 16:26:07 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 16:26:07 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 16:26:07 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 16:26:07 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 16:26:07 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 16:26:07 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 16:26:07 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 16:26:07 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 16:26:07 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 16:26:07 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 16:26:07 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 16:26:07 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 16:26:07 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 16:26:07 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 16:26:07 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:26:07 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:26:07 - Adding type registration image -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 16:26:07 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 16:26:07 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 16:26:07 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 16:26:07 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 16:26:07 - Adding type registration short -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 16:26:07 - Adding type registration short -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 16:26:07 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 16:26:07 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 16:26:07 - Adding type registration int -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 16:26:07 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 16:26:07 - Adding type registration long -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 16:26:07 - Adding type registration long -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 16:26:07 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 16:26:07 - Adding type registration float -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 16:26:07 - Adding type registration float -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 16:26:07 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 16:26:07 - Adding type registration double -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 16:26:07 - Adding type registration double -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 16:26:07 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 16:26:07 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 16:26:07 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 16:26:07 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 16:26:07 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 16:26:07 - Adding type registration character -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 16:26:07 - Adding type registration char -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 16:26:07 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 16:26:07 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 16:26:07 - Adding type registration string -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:26:07 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:26:07 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 16:26:07 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 16:26:07 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 16:26:07 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 16:26:07 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 16:26:07 - Adding type registration text -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 16:26:07 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 16:26:07 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 16:26:07 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 16:26:07 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 16:26:07 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 16:26:07 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 16:26:07 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 16:26:07 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 16:26:07 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 16:26:07 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 16:26:07 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 16:26:07 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:26:07 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:26:07 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 16:26:07 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 16:26:07 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 16:26:07 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 16:26:07 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 16:26:07 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 16:26:07 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 16:26:07 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 16:26:07 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 16:26:07 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 16:26:07 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 16:26:07 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 16:26:07 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 16:26:07 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 16:26:07 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-07 16:26:07 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 16:26:07 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 16:26:07 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-07 16:26:07 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-07 16:26:07 - Adding type registration date -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-07 16:26:07 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-07 16:26:07 - Adding type registration time -> org.hibernate.type.BasicTypeReference@2c5708e7 -2024-08-07 16:26:07 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@2c5708e7 -2024-08-07 16:26:07 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-07 16:26:07 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-07 16:26:07 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-07 16:26:07 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@4e26564d -2024-08-07 16:26:07 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@4e26564d -2024-08-07 16:26:07 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@4e26564d -2024-08-07 16:26:07 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@42238078 -2024-08-07 16:26:07 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@5627b8eb -2024-08-07 16:26:07 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@49fe0bcd -2024-08-07 16:26:07 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@49fe0bcd -2024-08-07 16:26:07 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@3516b881 -2024-08-07 16:26:07 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@3516b881 -2024-08-07 16:26:07 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@3516b881 -2024-08-07 16:26:07 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@6be8ce1b -2024-08-07 16:26:07 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@e3c36d -2024-08-07 16:26:07 - Adding type registration class -> org.hibernate.type.BasicTypeReference@397a10df -2024-08-07 16:26:07 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@397a10df -2024-08-07 16:26:07 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@39a865c1 -2024-08-07 16:26:07 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@39a865c1 -2024-08-07 16:26:07 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@39a865c1 -2024-08-07 16:26:07 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@141dfcf9 -2024-08-07 16:26:07 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@141dfcf9 -2024-08-07 16:26:07 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@a7bbdbc -2024-08-07 16:26:07 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@a7bbdbc -2024-08-07 16:26:07 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@63eea8c4 -2024-08-07 16:26:07 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@63eea8c4 -2024-08-07 16:26:07 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@19924f15 -2024-08-07 16:26:07 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@19924f15 -2024-08-07 16:26:07 - Adding type registration url -> org.hibernate.type.BasicTypeReference@621392ea -2024-08-07 16:26:07 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@621392ea -2024-08-07 16:26:07 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@35524549 -2024-08-07 16:26:07 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@23ec63af -2024-08-07 16:26:07 - Adding type registration object -> org.hibernate.type.JavaObjectType@2932e15f -2024-08-07 16:26:07 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@2932e15f -2024-08-07 16:26:07 - Adding type registration null -> org.hibernate.type.NullType@2a6dbb7c -2024-08-07 16:26:07 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@5178345d -2024-08-07 16:26:07 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@7b2d58e6 -2024-08-07 16:26:07 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@708f7386 -2024-08-07 16:26:07 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@377e90b0 -2024-08-07 16:26:07 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@27b490de -2024-08-07 16:26:07 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@36cf16a6 -2024-08-07 16:26:07 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@3dd750ba -2024-08-07 16:26:07 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@7eefaca0 -2024-08-07 16:26:07 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@12e2f5ab] into BootstrapContext; was [null] -2024-08-07 16:26:07 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@12e2f5ab) [was null] -2024-08-07 16:26:07 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@69c1ea07] into BootstrapContext; was [null] -2024-08-07 16:26:07 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@5cbe72b9] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@27fc0217] -2024-08-07 16:26:08 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 16:26:08 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 16:26:08 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 16:26:08 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 16:26:08 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-07 16:26:08 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 16:26:08 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 16:26:08 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@12e2f5ab] -2024-08-07 16:26:08 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@12e2f5ab] -2024-08-07 16:26:08 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 16:26:08 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 16:26:08 - JDBC version : 4.2 -2024-08-07 16:26:08 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 16:26:08 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 16:26:08 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 16:26:08 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 16:26:08 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 16:26:08 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 16:26:08 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 16:26:08 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 16:26:08 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 16:26:08 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 16:26:08 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 16:26:08 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@5444f1c3] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@6a5c2d2d] -2024-08-07 16:26:08 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-07 16:26:08 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 16:26:08 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 16:26:08 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 16:26:08 - Import with entity name Action -2024-08-07 16:26:08 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 16:26:08 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:26:08 - Binding column: AnnotatedColumn() -2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:26:08 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 16:26:08 - building BasicValue for id -2024-08-07 16:26:08 - Skipping column re-registration: action.id -2024-08-07 16:26:08 - Building property id -2024-08-07 16:26:08 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:26:08 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:26:08 - Binding column: AnnotatedColumn() -2024-08-07 16:26:08 - Building property event -2024-08-07 16:26:08 - Binding column: AnnotatedColumn() -2024-08-07 16:26:08 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 16:26:08 - building BasicValue for sequence -2024-08-07 16:26:08 - Skipping column re-registration: action.sequence -2024-08-07 16:26:08 - Building property sequence -2024-08-07 16:26:08 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:26:08 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 16:26:08 - Import with entity name BillAction -2024-08-07 16:26:08 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 16:26:08 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:26:08 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 16:26:08 - Binding column: AnnotatedColumn() -2024-08-07 16:26:08 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:26:08 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 16:26:08 - building BasicValue for id -2024-08-07 16:26:08 - Skipping column re-registration: bill_action.id -2024-08-07 16:26:08 - Building property id -2024-08-07 16:26:08 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:26:08 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:26:08 - Binding column: AnnotatedColumn() -2024-08-07 16:26:08 - Building property action -2024-08-07 16:26:08 - Binding column: AnnotatedColumn() -2024-08-07 16:26:08 - MetadataSourceProcessor property price with lazy=false -2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 16:26:08 - building BasicValue for price -2024-08-07 16:26:08 - Skipping column re-registration: bill_action.price -2024-08-07 16:26:08 - Building property price -2024-08-07 16:26:08 - Binding column: AnnotatedColumn() -2024-08-07 16:26:08 - MetadataSourceProcessor property title with lazy=false -2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 16:26:08 - building BasicValue for title -2024-08-07 16:26:08 - Skipping column re-registration: bill_action.title -2024-08-07 16:26:08 - Building property title -2024-08-07 16:26:08 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:26:08 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 16:26:08 - Import with entity name MemberAction -2024-08-07 16:26:08 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 16:26:08 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:26:08 - Binding column: AnnotatedColumn() -2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:26:08 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 16:26:08 - building BasicValue for id -2024-08-07 16:26:08 - Skipping column re-registration: member_action.id -2024-08-07 16:26:08 - Building property id -2024-08-07 16:26:08 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:26:08 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:26:08 - Binding column: AnnotatedColumn() -2024-08-07 16:26:08 - Building property action -2024-08-07 16:26:08 - Binding column: AnnotatedColumn() -2024-08-07 16:26:08 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 16:26:08 - building BasicValue for memberGroupId -2024-08-07 16:26:08 - Skipping column re-registration: member_action.member_group_id -2024-08-07 16:26:08 - Building property memberGroupId -2024-08-07 16:26:08 - Binding column: AnnotatedColumn() -2024-08-07 16:26:08 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 16:26:08 - building BasicValue for memberName -2024-08-07 16:26:08 - Skipping column re-registration: member_action.member_name -2024-08-07 16:26:08 - Building property memberName -2024-08-07 16:26:08 - Binding column: AnnotatedColumn() -2024-08-07 16:26:08 - MetadataSourceProcessor property status with lazy=false -2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 16:26:08 - building BasicValue for status -2024-08-07 16:26:08 - Skipping column re-registration: member_action.status -2024-08-07 16:26:08 - Building property status -2024-08-07 16:26:08 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:26:08 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 16:26:08 - Import with entity name Event -2024-08-07 16:26:08 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 16:26:08 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:26:08 - Binding column: AnnotatedColumn() -2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:26:08 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 16:26:08 - building BasicValue for id -2024-08-07 16:26:08 - Skipping column re-registration: event.id -2024-08-07 16:26:08 - Building property id -2024-08-07 16:26:08 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:26:08 - Binding column: AnnotatedColumn() -2024-08-07 16:26:08 - MetadataSourceProcessor property name with lazy=false -2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 16:26:08 - building BasicValue for name -2024-08-07 16:26:08 - Skipping column re-registration: event.name -2024-08-07 16:26:08 - Building property name -2024-08-07 16:26:08 - Binding column: AnnotatedColumn() -2024-08-07 16:26:08 - MetadataSourceProcessor property password with lazy=false -2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 16:26:08 - building BasicValue for password -2024-08-07 16:26:08 - Skipping column re-registration: event.password -2024-08-07 16:26:08 - Building property password -2024-08-07 16:26:08 - Binding column: AnnotatedColumn() -2024-08-07 16:26:08 - MetadataSourceProcessor property token with lazy=false -2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 16:26:08 - building BasicValue for token -2024-08-07 16:26:08 - Skipping column re-registration: event.token -2024-08-07 16:26:08 - Building property token -2024-08-07 16:26:08 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 16:26:08 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 16:26:08 - Import with entity name EventStep -2024-08-07 16:26:08 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 16:26:08 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:26:08 - Binding column: AnnotatedColumn() -2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:26:08 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 16:26:08 - building BasicValue for id -2024-08-07 16:26:08 - Skipping column re-registration: event_step.id -2024-08-07 16:26:08 - Building property id -2024-08-07 16:26:08 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:26:08 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:26:08 - Binding column: AnnotatedColumn() -2024-08-07 16:26:08 - Building property event -2024-08-07 16:26:08 - Binding column: AnnotatedColumn() -2024-08-07 16:26:08 - MetadataSourceProcessor property name with lazy=false -2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 16:26:08 - building BasicValue for name -2024-08-07 16:26:08 - Skipping column re-registration: event_step.name -2024-08-07 16:26:08 - Building property name -2024-08-07 16:26:08 - Binding column: AnnotatedColumn() -2024-08-07 16:26:08 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 16:26:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 16:26:08 - building BasicValue for sequence -2024-08-07 16:26:08 - Skipping column re-registration: event_step.sequence -2024-08-07 16:26:08 - Building property sequence -2024-08-07 16:26:08 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 16:26:08 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 16:26:08 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 16:26:08 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 16:26:08 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 16:26:08 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 16:26:08 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 16:26:08 - Building session factory -2024-08-07 16:26:08 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 16:26:08 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 16:26:08 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:26:08 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@59c00010, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@244268a8, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.5206385678613123290, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=60533, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.5206385678613123290, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@563ab6d5, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 16:26:08 - Session factory constructed with filter configurations : {} -2024-08-07 16:26:08 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:26:08 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:26:08 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:26:08 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:26:08 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:26:08 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:26:08 - Loaded expression factory via original TCCL -2024-08-07 16:26:08 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:26:08 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:26:08 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:26:08 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:26:08 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:26:08 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:26:08 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@394b9e22] under count; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@63896cf7] under every; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@3f838072] under any; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3aa8c337] under sinh; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@78e7b83] under cosh; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6761f75b] under tanh; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7c8a91e2] under pi; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@c7443f] under log; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 16:26:08 - Registering alternate key : length -> character_length -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@37f627d0] under position; prior registration was null -2024-08-07 16:26:08 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 16:26:08 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@3e24bab6] under overlay; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@391e2a] under trim; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@62c42a3] under cast; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6a8bcb64] under collate; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@78b2d29e] under extract; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@25b402ea] under ifnull; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@1e965426] under pad; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@261099e1] under str; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@64f613da] under format; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@4601a148] under timestampadd; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@1c25deb0] under timestampdiff; prior registration was null -2024-08-07 16:26:08 - Registering alternate key : dateadd -> timestampadd -2024-08-07 16:26:08 - Registering alternate key : datediff -> timestampdiff -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@6fe337a5] under current_date; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7d60bd5a] under current_time; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@43312512] under current_timestamp; prior registration was null -2024-08-07 16:26:08 - Registering alternate key : current date -> current_date -2024-08-07 16:26:08 - Registering alternate key : current time -> current_time -2024-08-07 16:26:08 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@13f7c165] under local_date; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@655f92a1] under local_time; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1d2d793d] under local_datetime; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@57fec63f] under offset_datetime; prior registration was null -2024-08-07 16:26:08 - Registering alternate key : local date -> local_date -2024-08-07 16:26:08 - Registering alternate key : local time -> local_time -2024-08-07 16:26:08 - Registering alternate key : local datetime -> local_datetime -2024-08-07 16:26:08 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7a2fd94c] under instant; prior registration was null -2024-08-07 16:26:08 - Registering alternate key : current_instant -> instant -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@30e15628] under sql; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@37ab1b10] under count; prior registration was org.hibernate.dialect.function.CountFunction@394b9e22 -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@34f8ce89] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7c8a91e2 -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@22ed2886] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 16:26:08 - Registering alternate key : day -> day_of_month -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@655f92a1 -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@1d2d793d -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@3085befb] under trunc; prior registration was null -2024-08-07 16:26:08 - Registering alternate key : truncate -> trunc -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@62264d4f] under date_trunc; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 16:26:08 - Registering alternate key : chr -> char -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2bc0603f] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@37f627d0 -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4ed19540] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 16:26:08 - Registering alternate key : every -> bool_and -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 16:26:08 - Registering alternate key : any -> bool_or -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@533e8807] under format; prior registration was org.hibernate.dialect.function.FormatFunction@64f613da -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@5a45c218] under listagg; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@5c20505f] under mode; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@cce92b5] under percentile_cont; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@2202c92f] under percentile_disc; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@56adbb07] under rank; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@7be6dabb] under dense_rank; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@68fc636a] under percent_rank; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@18301763] under cume_dist; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@23ee92df] under array; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@1a6a4595] under array_list; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@5644f664] under array_agg; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@63af52a6] under array_position; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@384f0e32] under array_positions; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@58835bba] under array_positions_list; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@222eda8a] under array_length; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@1e09c0b] under array_concat; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@76eee0b1] under array_prepend; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@2119b989] under array_append; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@7304ca87] under array_contains; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@7c07023] under array_contains_nullable; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@396c1228] under array_overlaps; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@1701beb3] under array_overlaps_nullable; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@f13e0a2] under array_get; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@2c86b0ea] under array_set; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@691a5c3a] under array_remove; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@9fd3b61] under array_remove_index; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4a34de5e] under array_slice; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@77648321] under array_replace; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@43201f84] under array_trim; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@421d7900] under array_fill; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@45964b9e] under array_fill_list; prior registration was null -2024-08-07 16:26:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@4c6eaa65] under array_to_string; prior registration was null -2024-08-07 16:26:08 - abs(NUMERIC arg) -2024-08-07 16:26:08 - Double acos(NUMERIC arg) -2024-08-07 16:26:08 - Boolean any(BOOLEAN predicate) -2024-08-07 16:26:08 - array( ... ) -2024-08-07 16:26:08 - array_agg(arg) -2024-08-07 16:26:08 - array_append( ... ) -2024-08-07 16:26:08 - array_concat( ... ) -2024-08-07 16:26:08 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 16:26:08 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 16:26:08 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 16:26:08 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 16:26:08 - array_get(ARRAY array, INTEGER index) -2024-08-07 16:26:08 - Integer array_length(ARRAY array) -2024-08-07 16:26:08 - array_list( ... ) -2024-08-07 16:26:08 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 16:26:08 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 16:26:08 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 16:26:08 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 16:26:08 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 16:26:08 - array_prepend( ... ) -2024-08-07 16:26:08 - array_remove( ... ) -2024-08-07 16:26:08 - array_remove_index( ... ) -2024-08-07 16:26:08 - array_replace( ... ) -2024-08-07 16:26:08 - array_set( ... ) -2024-08-07 16:26:08 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 16:26:08 - String array_to_string( ... ) -2024-08-07 16:26:08 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 16:26:08 - Integer ascii(STRING arg) -2024-08-07 16:26:08 - Double asin(NUMERIC arg) -2024-08-07 16:26:08 - Double atan(NUMERIC arg) -2024-08-07 16:26:08 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 16:26:08 - avg(NUMERIC arg) -2024-08-07 16:26:08 - bit_and(arg) -2024-08-07 16:26:08 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 16:26:08 - bit_or(arg) -2024-08-07 16:26:08 - bitand(arg0, arg1) -2024-08-07 16:26:08 - bitnot(arg) -2024-08-07 16:26:08 - bitor(arg0, arg1) -2024-08-07 16:26:08 - bitxor(arg0, arg1) -2024-08-07 16:26:08 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 16:26:08 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 16:26:08 - cast(arg as Type) -2024-08-07 16:26:08 - ceiling(NUMERIC arg) -2024-08-07 16:26:08 - Character char(INTEGER arg) -2024-08-07 16:26:08 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 16:26:08 - Character chr(INTEGER arg) -2024-08-07 16:26:08 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 16:26:08 - String collate(STRING string as COLLATION collation) -2024-08-07 16:26:08 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 16:26:08 - Double cos(NUMERIC arg) -2024-08-07 16:26:08 - Double cosh(NUMERIC arg) -2024-08-07 16:26:08 - Double cot(NUMERIC arg) -2024-08-07 16:26:08 - Long count([distinct ]{arg|*}) -2024-08-07 16:26:08 - Double cume_dist([arg0[, ...]]) -2024-08-07 16:26:08 - Date curdate() -2024-08-07 16:26:08 - Date current date -2024-08-07 16:26:08 - Time current time -2024-08-07 16:26:08 - Timestamp current timestamp -2024-08-07 16:26:08 - Date current_date -2024-08-07 16:26:08 - Instant current_instant -2024-08-07 16:26:08 - Time current_time -2024-08-07 16:26:08 - Timestamp current_timestamp -2024-08-07 16:26:08 - Time curtime() -2024-08-07 16:26:08 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 16:26:08 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 16:26:08 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 16:26:08 - Integer day(DATE arg) -2024-08-07 16:26:08 - Integer day_of_month(DATE arg) -2024-08-07 16:26:08 - Integer day_of_week(DATE arg) -2024-08-07 16:26:08 - Integer day_of_year(DATE arg) -2024-08-07 16:26:08 - String dayname(DATE arg) -2024-08-07 16:26:08 - Double degrees(NUMERIC arg) -2024-08-07 16:26:08 - Long dense_rank([arg0[, ...]]) -2024-08-07 16:26:08 - Boolean every(BOOLEAN predicate) -2024-08-07 16:26:08 - Double exp(NUMERIC arg) -2024-08-07 16:26:08 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 16:26:08 - first_valueANY value -2024-08-07 16:26:08 - floor(NUMERIC arg) -2024-08-07 16:26:08 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 16:26:08 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 16:26:08 - Integer hour(TIME arg) -2024-08-07 16:26:08 - ifnull(arg0, arg1) -2024-08-07 16:26:08 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 16:26:08 - Instant instant -2024-08-07 16:26:08 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 16:26:08 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 16:26:08 - last_valueANY value -2024-08-07 16:26:08 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 16:26:08 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 16:26:08 - String left(STRING string, INTEGER length) -2024-08-07 16:26:08 - Integer length(STRING_OR_CLOB arg) -2024-08-07 16:26:08 - String listagg(STRING arg0, STRING arg1) -2024-08-07 16:26:08 - Double ln(NUMERIC arg) -2024-08-07 16:26:08 - LocalDate local date -2024-08-07 16:26:08 - LocalDateTime local datetime -2024-08-07 16:26:08 - LocalTime local time -2024-08-07 16:26:08 - LocalDate local_date -2024-08-07 16:26:08 - LocalDateTime local_datetime -2024-08-07 16:26:08 - LocalTime local_time -2024-08-07 16:26:08 - Time localtime -2024-08-07 16:26:08 - Timestamp localtimestamp -2024-08-07 16:26:08 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 16:26:08 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 16:26:08 - Double log10(NUMERIC arg) -2024-08-07 16:26:08 - String lower(STRING string) -2024-08-07 16:26:08 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 16:26:08 - String ltrim(STRING string) -2024-08-07 16:26:08 - max(COMPARABLE arg) -2024-08-07 16:26:08 - Double median(NUMERIC arg) -2024-08-07 16:26:08 - Integer microsecond(TIME arg) -2024-08-07 16:26:08 - min(COMPARABLE arg) -2024-08-07 16:26:08 - Integer minute(TIME arg) -2024-08-07 16:26:08 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 16:26:08 - mode() -2024-08-07 16:26:08 - Integer month(DATE arg) -2024-08-07 16:26:08 - String monthname(DATE arg) -2024-08-07 16:26:08 - Timestamp now() -2024-08-07 16:26:08 - nth_valueANY value, INTEGER nth -2024-08-07 16:26:08 - nullif(arg0, arg1) -2024-08-07 16:26:08 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 16:26:08 - OffsetDateTime offset datetime -2024-08-07 16:26:08 - OffsetDateTime offset_datetime -2024-08-07 16:26:08 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 16:26:08 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 16:26:08 - Double percent_rank([arg0[, ...]]) -2024-08-07 16:26:08 - percentile_cont(NUMERIC arg) -2024-08-07 16:26:08 - percentile_disc(NUMERIC arg) -2024-08-07 16:26:08 - Double pi -2024-08-07 16:26:08 - Integer position(STRING pattern in STRING string) -2024-08-07 16:26:08 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 16:26:08 - Integer quarter(DATE arg) -2024-08-07 16:26:08 - Double radians(NUMERIC arg) -2024-08-07 16:26:08 - Double rand([INTEGER seed]) -2024-08-07 16:26:08 - Long rank([arg0[, ...]]) -2024-08-07 16:26:08 - String repeat(STRING string, INTEGER times) -2024-08-07 16:26:08 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 16:26:08 - String right(STRING string, INTEGER length) -2024-08-07 16:26:08 - round(NUMERIC number[, INTEGER places]) -2024-08-07 16:26:08 - Long row_number() -2024-08-07 16:26:08 - Long rownum() -2024-08-07 16:26:08 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 16:26:08 - String rtrim(STRING string) -2024-08-07 16:26:08 - Integer second(TIME arg) -2024-08-07 16:26:08 - Integer sign(NUMERIC arg) -2024-08-07 16:26:08 - Double sin(NUMERIC arg) -2024-08-07 16:26:08 - Double sinh(NUMERIC arg) -2024-08-07 16:26:08 - String soundex(arg) -2024-08-07 16:26:08 - String space(INTEGER arg) -2024-08-07 16:26:08 - Object sql -2024-08-07 16:26:08 - Double sqrt(NUMERIC arg) -2024-08-07 16:26:08 - Double stddev_pop(NUMERIC arg) -2024-08-07 16:26:08 - Double stddev_samp(NUMERIC arg) -2024-08-07 16:26:08 - String str(arg) -2024-08-07 16:26:08 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 16:26:08 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 16:26:08 - sum(arg) -2024-08-07 16:26:08 - Timestamp sysdate -2024-08-07 16:26:08 - Double tan(NUMERIC arg) -2024-08-07 16:26:08 - Double tanh(NUMERIC arg) -2024-08-07 16:26:08 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 16:26:08 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 16:26:08 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 16:26:08 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 16:26:08 - trunc( ... ) -2024-08-07 16:26:08 - truncate( ... ) -2024-08-07 16:26:08 - String upper(STRING string) -2024-08-07 16:26:08 - Double var_pop(NUMERIC arg) -2024-08-07 16:26:08 - Double var_samp(NUMERIC arg) -2024-08-07 16:26:08 - Integer week(DATE arg) -2024-08-07 16:26:08 - Integer year(DATE arg) -2024-08-07 16:26:08 - Starting QueryInterpretationCache(2048) -2024-08-07 16:26:08 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 16:26:08 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 16:26:08 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:26:08 - Configured EntityCopyObserver strategy: disallow -2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:26:08 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:26:08 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:26:08 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:26:08 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:26:08 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 16:26:08 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:26:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:26:08 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 16:26:08 - Starting post-init callbacks -2024-08-07 16:26:08 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 16:26:08 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 16:26:08 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:26:08 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 16:26:08 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 16:26:08 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 16:26:08 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 16:26:08 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 16:26:08 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 82 -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 84 -2024-08-07 16:26:08 - Created new SQL alias : ba1_0 -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:08 - connectionId=rmi://192.168.5.4 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:26:08 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:08 - [javax.management.remote.rmi.RMIConnectionImpl@f4637a6: connectionId=rmi://192.168.5.4 2] closing. -2024-08-07 16:26:08 - [javax.management.remote.rmi.RMIConnectionImpl@f4637a6: connectionId=rmi://192.168.5.4 2] closed. -2024-08-07 16:26:08 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5c8d685e] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 16:26:08 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 16:26:08 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 16:26:08 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 16:26:08 - Version select: select id from bill_action where id=? -2024-08-07 16:26:08 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 16:26:08 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 16:26:08 - Delete (0): delete from bill_action where id=? -2024-08-07 16:26:08 - Created new SQL alias : ma1_0 -2024-08-07 16:26:08 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 16:26:08 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2f51b100] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:26:08 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 16:26:08 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 16:26:08 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 16:26:08 - Version select: select id from member_action where id=? -2024-08-07 16:26:08 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 16:26:08 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 16:26:08 - Delete (0): delete from member_action where id=? -2024-08-07 16:26:08 - Created new SQL alias : e1_0 -2024-08-07 16:26:08 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 16:26:08 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 16:26:08 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 16:26:08 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 16:26:08 - Version select: select id from event where id=? -2024-08-07 16:26:08 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 16:26:08 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 16:26:08 - Delete (0): delete from event where id=? -2024-08-07 16:26:08 - Created new SQL alias : a1_0 -2024-08-07 16:26:08 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 16:26:08 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6c3627c] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 16:26:08 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 16:26:08 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 16:26:08 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 16:26:08 - Version select: select id from action where id=? -2024-08-07 16:26:08 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 16:26:08 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 16:26:08 - Delete (0): delete from action where id=? -2024-08-07 16:26:08 - Created new SQL alias : es1_0 -2024-08-07 16:26:08 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 16:26:08 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4010f232] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 16:26:08 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 16:26:08 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 16:26:08 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 16:26:08 - Version select: select id from event_step where id=? -2024-08-07 16:26:08 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 16:26:08 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 16:26:08 - Delete (0): delete from event_step where id=? -2024-08-07 16:26:08 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 16:26:08 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@5444f1c3] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@7f38545a] -2024-08-07 16:26:08 - Checking 0 named HQL queries -2024-08-07 16:26:08 - Checking 0 named SQL queries -2024-08-07 16:26:08 - - drop table if exists action cascade -2024-08-07 16:26:08 - - drop table if exists bill_action cascade -2024-08-07 16:26:08 - - drop table if exists event cascade -2024-08-07 16:26:08 - - drop table if exists event_step cascade -2024-08-07 16:26:08 - - drop table if exists member_action cascade -2024-08-07 16:26:08 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 16:26:08 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 16:26:08 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 16:26:08 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 16:26:08 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 16:26:08 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 16:26:08 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 16:26:08 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 16:26:08 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 16:26:08 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@67201002 -2024-08-07 16:26:08 - Registering SessionFactory: a2d5f74c-7ddf-4be9-8ba0-71cb45629d36 (<unnamed>) -2024-08-07 16:26:08 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 16:26:08 - Instantiated SessionFactory -2024-08-07 16:26:08 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'actionService' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 16:26:08 - Initializing JpaMetamodelMappingContext… -2024-08-07 16:26:08 - Finished initializing JpaMetamodelMappingContext -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - Statistics initialized [enabled=false] -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 16:26:08 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 16:26:08 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:26:08 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - Looking up named query BillAction.findByAction_Event -2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:26:08 - Did not find named query BillAction.findByAction_Event -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - Looking up named query BillAction.findByAction_Id -2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:26:08 - Did not find named query BillAction.findByAction_Id -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:26:08 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:26:08 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:26:08 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 16:26:08 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 16:26:08 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:26:08 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:26:08 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 16:26:08 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 16:26:08 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 16:26:08 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:26:08 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 16:26:08 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:26:08 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(741539891543833)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(741539891543833)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(741539891543833)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(741539891543833)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(741539891543833).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:26:08 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 16:26:08 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:26:08 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:26:08 - Looking up named query MemberAction.findByAction -2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:26:08 - Did not find named query MemberAction.findByAction -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - Looking up named query Event.findByToken -2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:26:08 - Did not find named query Event.findByToken -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 16:26:08 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 16:26:08 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:26:08 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:26:08 - Did not find named query Action.findLastByEvent.count -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 16:26:08 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:26:08 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:26:08 - Looking up named query Action.findByIdAndEvent -2024-08-07 16:26:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:26:08 - Did not find named query Action.findByIdAndEvent -2024-08-07 16:26:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:26:08 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 16:26:08 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 16:26:08 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 16:26:08 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'eventService' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 16:26:08 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 16:26:08 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 16:26:08 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 16:26:08 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 16:26:08 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 16:26:08 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 16:26:08 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:26:08 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 16:26:08 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 16:26:08 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 16:26:08 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'actionController' -2024-08-07 16:26:08 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 16:26:08 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'eventController' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'authService' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 16:26:08 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 16:26:08 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 16:26:08 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 16:26:08 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 16:26:08 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:26:08 - Loaded expression factory via original TCCL -2024-08-07 16:26:08 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 16:26:08 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 16:26:08 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:26:08 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 16:26:08 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:26:08 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:26:08 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:26:08 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:26:08 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:26:08 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:26:08 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:26:08 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:26:08 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:26:08 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:26:08 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'error' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 16:26:08 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 16:26:08 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 16:26:08 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 16:26:08 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 16:26:08 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:26:08 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:26:08 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 16:26:08 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:26:08 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:26:08 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 16:26:08 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:26:08 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:26:08 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:26:08 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 16:26:08 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 16:26:08 - - s.h.p.EventController: - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) -2024-08-07 16:26:08 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 16:26:08 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 16:26:08 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 16:26:08 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:26:08 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 16:26:08 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:26:08 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:26:08 - 'beanNameHandlerMapping' {} -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 16:26:08 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:26:08 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 16:26:08 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 16:26:08 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:26:08 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:26:08 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 16:26:08 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:26:08 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 16:26:08 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 16:26:08 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 16:26:08 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:26:08 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:26:08 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:26:08 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 16:26:08 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:26:08 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 16:26:08 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 16:26:08 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 16:26:08 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 16:26:08 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 16:26:08 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 16:26:08 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 16:26:08 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:26:08 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 16:26:08 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 16:26:08 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 82 -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 82 -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:08 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 82 -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 84 -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 82 -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 82 -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:08 - connectionId=rmi://192.168.5.4 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 82 -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 16:26:08 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:08 - [javax.management.remote.rmi.RMIConnectionImpl@733aafc1: connectionId=rmi://192.168.5.4 3] closing. -2024-08-07 16:26:08 - [javax.management.remote.rmi.RMIConnectionImpl@733aafc1: connectionId=rmi://192.168.5.4 3] closed. -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 16:26:08 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 16:26:08 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:26:08 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 16:26:08 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:26:08 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 16:26:08 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 16:26:08 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 16:26:08 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 16:26:08 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 16:26:08 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 16:26:08 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 16:26:08 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 16:26:08 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 16:26:08 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 16:26:08 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 16:26:08 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 16:26:08 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 16:26:08 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:26:08 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 16:26:08 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 16:26:08 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 16:26:08 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 16:26:08 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 16:26:08 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 16:26:08 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 16:26:08 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 16:26:08 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 16:26:08 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 16:26:08 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 16:26:08 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 16:26:08 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:26:08 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:26:08 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 16:26:08 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 16:26:08 - Using SLF4J as the default logging framework -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 16:26:08 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 16:26:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 16:26:09 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 16:26:09 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:26:09 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 16:26:09 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 16:26:09 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 16:26:09 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 16:26:09 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 16:26:09 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 16:26:09 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 16:26:09 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 16:26:09 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 16:26:09 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 16:26:09 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 16:26:09 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 16:26:09 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 16:26:09 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 16:26:09 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 16:26:09 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 16:26:09 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 16:26:09 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 16:26:09 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:26:09 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 16:26:09 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:26:09 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:26:09 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 16:26:09 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:26:09 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:26:09 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 16:26:09 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 16:26:09 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:26:09 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:26:09 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 16:26:09 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 16:26:09 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 16:26:09 - Registering beans for JMX exposure on startup -2024-08-07 16:26:09 - Auto-detecting user-defined JMX MBeans -2024-08-07 16:26:09 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 16:26:09 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 16:26:09 - Starting beans in phase -2147483647 -2024-08-07 16:26:09 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 16:26:09 - Starting beans in phase 2147481599 -2024-08-07 16:26:09 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 16:26:09 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 16:26:09 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 16:26:09 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 16:26:09 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 16:26:09 - Successfully started bean 'webServerStartStop' -2024-08-07 16:26:09 - Starting beans in phase 2147482623 -2024-08-07 16:26:09 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 16:26:09 - Starting beans in phase 2147483647 -2024-08-07 16:26:09 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 16:26:09 - Started HaengdongApplication in 2.162 seconds (process running for 2.357) -2024-08-07 16:26:09 - Application availability state LivenessState changed to CORRECT -2024-08-07 16:26:09 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 16:26:09 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 82 -2024-08-07 16:26:09 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 84 -2024-08-07 16:26:09 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:26:09 - RMI TCP Connection(1)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - [javax.management.remote.rmi.RMIConnectionImpl@26740c19: connectionId=rmi://192.168.5.4 4] closing. -2024-08-07 16:26:09 - [javax.management.remote.rmi.RMIConnectionImpl@26740c19: connectionId=rmi://192.168.5.4 4] closed. -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: accepted socket from [192.168.5.4:64294] -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: accepted socket from [192.168.5.4:64295] -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 84 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 84 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - [javax.management.remote.rmi.RMIConnectionImpl@1a7e9b94: connectionId=rmi://192.168.5.4 6] closing. -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - [javax.management.remote.rmi.RMIConnectionImpl@1a7e9b94: connectionId=rmi://192.168.5.4 6] closed. -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 84 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - [javax.management.remote.rmi.RMIConnectionImpl@307ecaf4: connectionId=rmi://192.168.5.4 5] closing. -2024-08-07 16:26:09 - [javax.management.remote.rmi.RMIConnectionImpl@307ecaf4: connectionId=rmi://192.168.5.4 5] closed. -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - [javax.management.remote.rmi.RMIConnectionImpl@1848b3b5: connectionId=rmi://192.168.5.4 7] closing. -2024-08-07 16:26:09 - [javax.management.remote.rmi.RMIConnectionImpl@1848b3b5: connectionId=rmi://192.168.5.4 7] closed. -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 84 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 8 unwrapping query with defaultClassLoader. -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - [javax.management.remote.rmi.RMIConnectionImpl@74f7cce3: connectionId=rmi://192.168.5.4 8] closing. -2024-08-07 16:26:09 - [javax.management.remote.rmi.RMIConnectionImpl@74f7cce3: connectionId=rmi://192.168.5.4 8] closed. -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 82 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 82 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 84 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 84 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - [javax.management.remote.rmi.RMIConnectionImpl@7ba4d1ca: connectionId=rmi://192.168.5.4 9] closing. -2024-08-07 16:26:09 - [javax.management.remote.rmi.RMIConnectionImpl@7ba4d1ca: connectionId=rmi://192.168.5.4 9] closed. -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - [javax.management.remote.rmi.RMIConnectionImpl@164346cf: connectionId=rmi://192.168.5.4 10] closing. -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - [javax.management.remote.rmi.RMIConnectionImpl@164346cf: connectionId=rmi://192.168.5.4 10] closed. -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 84 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 84 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 12 unwrapping query with defaultClassLoader. -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 12, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 11 unwrapping query with defaultClassLoader. -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 11, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 11, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:09 - connectionId=rmi://192.168.5.4 12, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 16:26:09 - Fetching JDBC Connection from DataSource -2024-08-07 16:26:09 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 16:26:09 - Initializing Servlet 'dispatcherServlet' -2024-08-07 16:26:09 - Detected StandardServletMultipartResolver -2024-08-07 16:26:09 - Detected AcceptHeaderLocaleResolver -2024-08-07 16:26:09 - Detected FixedThemeResolver -2024-08-07 16:26:09 - Fetching JDBC Connection from DataSource -2024-08-07 16:26:09 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@63ae7031 -2024-08-07 16:26:09 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@37403f66 -2024-08-07 16:26:09 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 16:26:09 - Completed initialization in 1 ms -2024-08-07 16:26:09 - RMI TCP Connection(3)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - [javax.management.remote.rmi.RMIConnectionImpl@39a4408c: connectionId=rmi://192.168.5.4 12] closing. -2024-08-07 16:26:09 - [javax.management.remote.rmi.RMIConnectionImpl@39a4408c: connectionId=rmi://192.168.5.4 12] closed. -2024-08-07 16:26:09 - RMI TCP Connection(2)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:09 - [javax.management.remote.rmi.RMIConnectionImpl@2c23be3a: connectionId=rmi://192.168.5.4 11] closing. -2024-08-07 16:26:09 - [javax.management.remote.rmi.RMIConnectionImpl@2c23be3a: connectionId=rmi://192.168.5.4 11] closed. -2024-08-07 16:26:11 - RMI TCP Connection(3)-192.168.5.4: (port 64292) connection closed -2024-08-07 16:26:11 - RMI TCP Connection(1)-192.168.5.4: (port 64292) connection closed -2024-08-07 16:26:11 - RMI TCP Connection(2)-192.168.5.4: (port 64292) connection closed -2024-08-07 16:26:11 - RMI TCP Connection(3)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64295,localport=64292] -2024-08-07 16:26:11 - RMI TCP Connection(2)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64294,localport=64292] -2024-08-07 16:26:11 - RMI TCP Connection(1)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64293,localport=64292] -2024-08-07 16:26:11 - RMI TCP Connection(1)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64293,localport=64292] -2024-08-07 16:26:11 - RMI TCP Connection(3)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64295,localport=64292] -2024-08-07 16:26:11 - RMI TCP Connection(2)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64294,localport=64292] -2024-08-07 16:26:11 - RMI TCP Connection(4)-192.168.5.4: accepted socket from [192.168.5.4:64296] -2024-08-07 16:26:11 - RMI TCP Connection(4)-192.168.5.4: (port 64292) op = 80 -2024-08-07 16:26:11 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:11 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:11 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:11 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:11 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27e44e9c -2024-08-07 16:26:21 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.5206385678613123290/conf/jaspic-providers.xml] -2024-08-07 16:26:21 - OPTIONS "/api/events/419797bc-2a5f-441f-9686-ee3e91d4ebbb", parameters={} -2024-08-07 16:26:21 - OPTIONS "/api/events/419797bc-2a5f-441f-9686-ee3e91d4ebbb/actions", parameters={} -2024-08-07 16:26:21 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:26:21 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:26:21 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:26:21 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:26:21 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:26:21 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:26:21 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:26:21 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:26:21 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:26:21 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:26:21 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:26:21 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:26:21 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:26:21 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:26:21 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:26:21 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:26:30 - Error parsing HTTP request header - Note: further occurrences of HTTP request parsing errors will be logged at DEBUG level. -java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x060xe00x010x000x060xdc0x030x030x028W0xcf0x000xd60xc60xca0xd7s-0xae0xe10xca0xff0xb0=0xcaX0x880xc20xe80xd20xc80x98J0xf70x7fl0xc40x910xab ]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:407) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:26:30 - Error parsing HTTP request header - Note: further occurrences of HTTP request parsing errors will be logged at DEBUG level. -java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x060xc00x010x000x060xbc0x030x030xff0xb9g0xe0pm0xedv0xbc0x110x820x81@0x1a0xecb0x8e0xd80xa80xfc0xd50xa30x9a0xab0xeb0xd10xeap0x83.0xfa0xbc ]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:407) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:26:30 - Error state [CLOSE_CLEAN] reported while processing request -java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x060xe00x010x000x060xdc0x030x030x028W0xcf0x000xd60xc60xca0xd7s-0xae0xe10xca0xff0xb0=0xcaX0x880xc20xe80xd20xc80x98J0xf70x7fl0xc40x910xab ]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:407) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:26:30 - Error state [CLOSE_CLEAN] reported while processing request -2024-08-07 16:26:30 - Error state [CLOSE_CLEAN] reported while processing request -java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x060xc00x010x000x060xbc0x030x030xff0xb9g0xe0pm0xedv0xbc0x110x820x81@0x1a0xecb0x8e0xd80xa80xfc0xd50xa30x9a0xab0xeb0xd10xeap0x83.0xfa0xbc ]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:407) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:26:30 - The HTTP/1.1 request did not provide a host header -2024-08-07 16:26:30 - Error state [CLOSE_CLEAN] reported while processing request -2024-08-07 16:26:30 - The HTTP/1.1 request did not provide a host header -2024-08-07 16:26:30 - Error parsing HTTP request header -java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x060xa00x010x000x060x9c0x030x03E"0x920xa4*0xca0xfd0xbci0x88A0xe30xd0DC^Y0x9ea0xa3#0xdc0x06{0x120xc00x080x9aY$0x117 ]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:407) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:26:30 - Error parsing HTTP request header -java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x070x000x010x000x060xfc0x030x030x130xa1=0xb80xb70xb70xc20xe30xb70xf1C0xb10x970xa30xd4C@0xa20xc3Y0xbcF0x033D0x9fJ0xb0w0xf90x000x9b ]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:407) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:26:30 - Error state [CLOSE_CLEAN] reported while processing request -java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x060xa00x010x000x060x9c0x030x03E"0x920xa4*0xca0xfd0xbci0x88A0xe30xd0DC^Y0x9ea0xa3#0xdc0x06{0x120xc00x080x9aY$0x117 ]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:407) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:26:30 - Error state [CLOSE_CLEAN] reported while processing request -java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x070x000x010x000x060xfc0x030x030x130xa1=0xb80xb70xb70xc20xe30xb70xf1C0xb10x970xa30xd4C@0xa20xc3Y0xbcF0x033D0x9fJ0xb0w0xf90x000x9b ]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:407) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:26:30 - Error state [CLOSE_CLEAN] reported while processing request -2024-08-07 16:26:30 - Error state [CLOSE_CLEAN] reported while processing request -2024-08-07 16:26:30 - The HTTP/1.1 request did not provide a host header -2024-08-07 16:26:30 - The HTTP/1.1 request did not provide a host header -2024-08-07 16:26:37 - RMI TCP Connection(4)-192.168.5.4: (port 64292) connection closed -2024-08-07 16:26:37 - RMI TCP Connection(4)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64296,localport=64292] -2024-08-07 16:26:37 - RMI TCP Connection(4)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64296,localport=64292] -2024-08-07 16:26:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:26:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:26:47 - Error parsing HTTP request header -java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x070x000x010x000x060xfc0x030x035?0xddl0xb70xb3"0xc8x0x9b0x100xb810xff0xb0&30x920xfa?0xe1o0x9d(0x0a0xb9C0xabW0xd8#0x83 ]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:407) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:26:47 - Error state [CLOSE_CLEAN] reported while processing request -java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x070x000x010x000x060xfc0x030x035?0xddl0xb70xb3"0xc8x0x9b0x100xb810xff0xb0&30x920xfa?0xe1o0x9d(0x0a0xb9C0xabW0xd8#0x83 ]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:407) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:26:47 - Error state [CLOSE_CLEAN] reported while processing request -2024-08-07 16:26:47 - The HTTP/1.1 request did not provide a host header -2024-08-07 16:26:47 - Error parsing HTTP request header -java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x070x000x010x000x060xfc0x030x033Kf%0x0c0xa30x8e#0xac\#0x8d^0xde0xf4?0x994M0xdb0xaa0x11 ]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:407) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:26:47 - Error state [CLOSE_CLEAN] reported while processing request -java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x070x000x010x000x060xfc0x030x033Kf%0x0c0xa30x8e#0xac\#0x8d^0xde0xf4?0x994M0xdb0xaa0x11 ]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:407) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:26:47 - Error state [CLOSE_CLEAN] reported while processing request -2024-08-07 16:26:47 - The HTTP/1.1 request did not provide a host header -2024-08-07 16:27:06 - Error parsing HTTP request header -java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x060xe00x010x000x060xdc0x030x030x810xda0xae(0xdd0x9fv0xc60xe9R0x86T0xa5l]0xeal0xc50x84YL0xa10xaf0xdd0xf30xb90xdb0xfad0xb10x1bk ]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:407) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:27:06 - Error state [CLOSE_CLEAN] reported while processing request -java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x060xe00x010x000x060xdc0x030x030x810xda0xae(0xdd0x9fv0xc60xe9R0x86T0xa5l]0xeal0xc50x84YL0xa10xaf0xdd0xf30xb90xdb0xfad0xb10x1bk ]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:407) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:27:06 - Error state [CLOSE_CLEAN] reported while processing request -2024-08-07 16:27:06 - The HTTP/1.1 request did not provide a host header -2024-08-07 16:27:06 - Error parsing HTTP request header -java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x060xa00x010x000x060x9c0x030x030xc00xd40x000x980x880x1b[0x0a~0xcd.0x160xb90xab0x8bc^&F0x890xc50xf0*0x04 ]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:407) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:27:06 - Error state [CLOSE_CLEAN] reported while processing request -java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x060xa00x010x000x060x9c0x030x030xc00xd40x000x980x880x1b[0x0a~0xcd.0x160xb90xab0x8bc^&F0x890xc50xf0*0x04 ]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:407) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:27:06 - Error state [CLOSE_CLEAN] reported while processing request -2024-08-07 16:27:06 - The HTTP/1.1 request did not provide a host header -2024-08-07 16:27:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:27:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:27:24 - Error parsing HTTP request header -java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x060xc00x010x000x060xbc0x030x030xb50xcc0x150x890xf1;e?z0x850x820x110xa90x0c0xe90xee0xdd0xd820x0a[0x970x030x990xc00xfd,20xba]pJ ]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:407) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:27:24 - Error state [CLOSE_CLEAN] reported while processing request -java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x060xc00x010x000x060xbc0x030x030xb50xcc0x150x890xf1;e?z0x850x820x110xa90x0c0xe90xee0xdd0xd820x0a[0x970x030x990xc00xfd,20xba]pJ ]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:407) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:27:24 - Error state [CLOSE_CLEAN] reported while processing request -2024-08-07 16:27:24 - The HTTP/1.1 request did not provide a host header -2024-08-07 16:27:24 - Error parsing HTTP request header -java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x060xa00x010x000x060x9c0x030x030x070x09<I0x0b0xb50xa10xda:0xb30xe0L0xf7Q0xa00x840x1f0xe10xa10xc2CW0xc20x7f0xa20xef;0x170xb30x0d0xf90xac ]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:407) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:27:24 - Error state [CLOSE_CLEAN] reported while processing request -java.lang.IllegalArgumentException: Invalid character found in method name [0x160x030x010x060xa00x010x000x060x9c0x030x030x070x09<I0x0b0xb50xa10xda:0xb30xe0L0xf7Q0xa00x840x1f0xe10xa10xc2CW0xc20x7f0xa20xef;0x170xb30x0d0xf90xac ]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:407) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:27:24 - Error state [CLOSE_CLEAN] reported while processing request -2024-08-07 16:27:24 - The HTTP/1.1 request did not provide a host header -2024-08-07 16:27:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:27:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:27:56 - POST "/api/events", parameters={} -2024-08-07 16:27:56 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:27:56 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:27:56 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=백호야 고생이 많아, password=1234]] -2024-08-07 16:27:56 - Found thread-bound EntityManager [SessionImpl(1491830740<open>)] for JPA transaction -2024-08-07 16:27:56 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 16:27:56 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:27:56 - begin -2024-08-07 16:27:56 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@49551723] -2024-08-07 16:27:56 - Found thread-bound EntityManager [SessionImpl(1491830740<open>)] for JPA transaction -2024-08-07 16:27:56 - Participating in existing transaction -2024-08-07 16:27:56 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 16:27:56 - Executing identity-insert immediately -2024-08-07 16:27:56 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 16:27:56 - Initializer list is empty -2024-08-07 16:27:56 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@5b103591 -2024-08-07 16:27:56 - Extracted JDBC value [0] - [1] -2024-08-07 16:27:56 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@4ae2ebfd -2024-08-07 16:27:56 - Initiating transaction commit -2024-08-07 16:27:56 - Committing JPA transaction on EntityManager [SessionImpl(1491830740<open>)] -2024-08-07 16:27:56 - committing -2024-08-07 16:27:56 - Processing flush-time cascades -2024-08-07 16:27:56 - Dirty checking collections -2024-08-07 16:27:56 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 16:27:56 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 16:27:56 - Listing entities: -2024-08-07 16:27:56 - server.haengdong.domain.event.Event{password=1234, name=백호야 고생이 많아, id=1, token=df80b50b-ae5a-4cd2-a3af-a7321cf2df42} -2024-08-07 16:27:56 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:27:56 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:27:56 - Writing [EventResponse[eventId=df80b50b-ae5a-4cd2-a3af-a7321cf2df42]] -2024-08-07 16:27:56 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:27:56 - Completed 200 OK -2024-08-07 16:27:57 - OPTIONS "/api/events/df80b50b-ae5a-4cd2-a3af-a7321cf2df42", parameters={} -2024-08-07 16:27:57 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:27:57 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:27:57 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:27:57 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:27:57 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:27:57 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:27:57 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:27:57 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:27:57 - OPTIONS "/api/events/df80b50b-ae5a-4cd2-a3af-a7321cf2df42/actions", parameters={} -2024-08-07 16:27:57 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:27:57 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:27:57 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:27:57 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:27:57 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:27:57 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:27:57 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:27:57 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:28:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:28:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:28:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:28:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:28:48 - POST "/api/events", parameters={} -2024-08-07 16:28:48 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:28:48 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:28:48 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=쿠키 내놔, password=1234]] -2024-08-07 16:28:48 - Found thread-bound EntityManager [SessionImpl(797086590<open>)] for JPA transaction -2024-08-07 16:28:48 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 16:28:48 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:28:48 - begin -2024-08-07 16:28:48 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@c009c1f] -2024-08-07 16:28:48 - Found thread-bound EntityManager [SessionImpl(797086590<open>)] for JPA transaction -2024-08-07 16:28:48 - Participating in existing transaction -2024-08-07 16:28:48 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 16:28:48 - Executing identity-insert immediately -2024-08-07 16:28:48 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 16:28:48 - Initializer list is empty -2024-08-07 16:28:48 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@2e22cb9e -2024-08-07 16:28:48 - Extracted JDBC value [0] - [2] -2024-08-07 16:28:48 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@1e096f69 -2024-08-07 16:28:48 - Initiating transaction commit -2024-08-07 16:28:48 - Committing JPA transaction on EntityManager [SessionImpl(797086590<open>)] -2024-08-07 16:28:48 - committing -2024-08-07 16:28:48 - Processing flush-time cascades -2024-08-07 16:28:48 - Dirty checking collections -2024-08-07 16:28:48 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 16:28:48 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 16:28:48 - Listing entities: -2024-08-07 16:28:48 - server.haengdong.domain.event.Event{password=1234, name=쿠키 내놔, id=2, token=d623b4d9-381b-4706-9544-f1f78ef26a2b} -2024-08-07 16:28:48 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:28:48 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:28:48 - Writing [EventResponse[eventId=d623b4d9-381b-4706-9544-f1f78ef26a2b]] -2024-08-07 16:28:48 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:28:48 - Completed 200 OK -2024-08-07 16:28:50 - OPTIONS "/api/events/d623b4d9-381b-4706-9544-f1f78ef26a2b", parameters={} -2024-08-07 16:28:50 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:28:50 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:28:50 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:28:50 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:28:50 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:28:50 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:28:50 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:28:50 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:28:50 - OPTIONS "/api/events/d623b4d9-381b-4706-9544-f1f78ef26a2b/actions", parameters={} -2024-08-07 16:28:50 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:28:50 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:28:50 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:28:50 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:28:50 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:28:50 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:28:50 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:28:50 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:29:08 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:29:08 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:29:38 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:29:38 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:30:08 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:30:08 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:30:38 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:30:38 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:31:08 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:31:08 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:31:34 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 16:31:34 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Wed Aug 07 16:26:07 KST 2024 -2024-08-07 16:31:34 - Stopping beans in phase 2147483647 -2024-08-07 16:31:34 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 16:31:34 - Stopping beans in phase 2147482623 -2024-08-07 16:31:34 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 16:31:34 - Stopping beans in phase 2147481599 -2024-08-07 16:31:34 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 16:31:34 - Stopping beans in phase -2147483647 -2024-08-07 16:31:34 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 16:31:34 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 16:31:34 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 16:31:34 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 16:31:34 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 16:31:34 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 16:31:34 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 16:31:34 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 16:31:34 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 16:31:34 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 16:31:34 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 16:31:34 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 16:31:34 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 16:31:34 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 16:31:34 - Unregistering JMX-exposed beans on shutdown -2024-08-07 16:31:34 - Unregistering JMX-exposed beans -2024-08-07 16:31:34 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 16:31:34 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 16:31:34 - HHH000031: Closing -2024-08-07 16:31:34 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@d6dde5a] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@7f38545a] -2024-08-07 16:31:34 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 16:31:34 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 16:31:34 - HikariPool-1 - Shutdown initiated... -2024-08-07 16:31:34 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:31:34 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:31:34 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:31:34 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:31:34 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:31:34 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:31:34 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:31:34 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:31:34 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:31:34 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:31:34 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:31:34 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 16:31:34 - HikariPool-1 - Shutdown completed. -2024-08-07 16:31:34 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 16:31:36 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 16:31:36 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 16:31:36 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:31:36 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:31:36 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:31:36 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:31:36 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:31:36 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:31:36 - Loaded expression factory via original TCCL -2024-08-07 16:31:36 - Starting HaengdongApplication using Java 17.0.12 with PID 60847 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 16:31:36 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 16:31:36 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 16:31:36 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 16:31:36 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-07 16:31:36 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 16:31:36 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:31:36 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 16:31:36 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:31:36 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:31:36 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:31:36 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:31:36 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:31:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 16:31:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 16:31:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 16:31:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 16:31:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 16:31:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 16:31:37 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 16:31:37 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 16:31:37 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 16:31:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 16:31:37 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 16:31:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 16:31:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 16:31:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 16:31:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 16:31:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 16:31:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 16:31:37 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 16:31:37 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 16:31:37 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 16:31:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 16:31:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 16:31:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 16:31:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 16:31:37 - Finished Spring Data repository scanning in 16 ms. Found 4 JPA repository interfaces. -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 16:31:37 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 16:31:37 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 16:31:37 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 16:31:37 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 16:31:37 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 16:31:37 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 16:31:37 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 16:31:37 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 16:31:37 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@59018eed] -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 16:31:37 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 16:31:37 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 16:31:37 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 16:31:37 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 16:31:37 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 16:31:37 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 16:31:37 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 16:31:37 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 16:31:37 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:31:37 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:31:37 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 16:31:37 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 16:31:37 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 16:31:37 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 16:31:37 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:31:37 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:31:37 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:31:37 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 16:31:37 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 16:31:37 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 16:31:37 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 16:31:37 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 16:31:37 - Tomcat initialized with port 8080 (http) -2024-08-07 16:31:37 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4c635edc] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4c635edc] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.mapper.MapperListener@6a8a551e] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.mapper.MapperListener@6a8a551e] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 16:31:37 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 16:31:37 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4c635edc] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4c635edc] to [STARTING] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4c635edc] to [STARTED] -2024-08-07 16:31:37 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 16:31:37 - Starting service [Tomcat] -2024-08-07 16:31:37 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 16:31:37 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 16:31:37 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.webresources.StandardRoot@73e4bb60] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.webresources.StandardRoot@73e4bb60] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.webresources.StandardRoot@73e4bb60] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.webresources.DirResourceSet@6e685e6c] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.webresources.DirResourceSet@6e685e6c] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.webresources.DirResourceSet@6e685e6c] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.webresources.DirResourceSet@6e685e6c] to [STARTING] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.webresources.DirResourceSet@6e685e6c] to [STARTED] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.webresources.StandardRoot@73e4bb60] to [STARTING] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.webresources.StandardRoot@73e4bb60] to [STARTED] -2024-08-07 16:31:37 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:31:37 - Starting this Loader -2024-08-07 16:31:37 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:31:37 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:31:37 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 16:31:37 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@11826398] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@11826398] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@11826398] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@11826398] to [STARTING] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@11826398] to [STARTED] -2024-08-07 16:31:37 - Initializing Spring embedded WebApplicationContext -2024-08-07 16:31:37 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 16:31:37 - Root WebApplicationContext: initialization completed in 631 ms -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:31:37 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 16:31:37 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 16:31:37 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 16:31:37 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:31:37 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 16:31:37 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:31:37 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 16:31:37 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:31:37 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:31:37 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:31:37 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:31:37 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 16:31:37 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 16:31:37 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 16:31:37 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:31:37 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:31:37 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 16:31:37 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 16:31:37 - HikariPool-1 - configuration: -2024-08-07 16:31:37 - allowPoolSuspension.............false -2024-08-07 16:31:37 - autoCommit......................true -2024-08-07 16:31:37 - catalog.........................none -2024-08-07 16:31:37 - connectionInitSql...............none -2024-08-07 16:31:37 - connectionTestQuery.............none -2024-08-07 16:31:37 - connectionTimeout...............30000 -2024-08-07 16:31:37 - dataSource......................none -2024-08-07 16:31:37 - dataSourceClassName.............none -2024-08-07 16:31:37 - dataSourceJNDI..................none -2024-08-07 16:31:37 - dataSourceProperties............{password=<masked>} -2024-08-07 16:31:37 - driverClassName................."org.h2.Driver" -2024-08-07 16:31:37 - exceptionOverrideClassName......none -2024-08-07 16:31:37 - healthCheckProperties...........{} -2024-08-07 16:31:37 - healthCheckRegistry.............none -2024-08-07 16:31:37 - idleTimeout.....................600000 -2024-08-07 16:31:37 - initializationFailTimeout.......1 -2024-08-07 16:31:37 - isolateInternalQueries..........false -2024-08-07 16:31:37 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 16:31:37 - keepaliveTime...................0 -2024-08-07 16:31:37 - leakDetectionThreshold..........0 -2024-08-07 16:31:37 - maxLifetime.....................1800000 -2024-08-07 16:31:37 - maximumPoolSize.................10 -2024-08-07 16:31:37 - metricRegistry..................none -2024-08-07 16:31:37 - metricsTrackerFactory...........none -2024-08-07 16:31:37 - minimumIdle.....................10 -2024-08-07 16:31:37 - password........................<masked> -2024-08-07 16:31:37 - poolName........................"HikariPool-1" -2024-08-07 16:31:37 - readOnly........................false -2024-08-07 16:31:37 - registerMbeans..................false -2024-08-07 16:31:37 - scheduledExecutor...............none -2024-08-07 16:31:37 - schema..........................none -2024-08-07 16:31:37 - threadFactory...................internal -2024-08-07 16:31:37 - transactionIsolation............default -2024-08-07 16:31:37 - username........................"sa" -2024-08-07 16:31:37 - validationTimeout...............5000 -2024-08-07 16:31:37 - HikariPool-1 - Starting... -2024-08-07 16:31:37 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 16:31:37 - HikariPool-1 - Start completed. -2024-08-07 16:31:37 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 16:31:37 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 16:31:37 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:31:37 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 16:31:37 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: accepted socket from [192.168.5.4:64358] -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:37 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:31:37 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:31:37 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 84 -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 16:31:37 - connectionId=rmi://192.168.5.4 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 16:31:37 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:37 - [javax.management.remote.rmi.RMIConnectionImpl@33e07108: connectionId=rmi://192.168.5.4 1] closing. -2024-08-07 16:31:37 - [javax.management.remote.rmi.RMIConnectionImpl@33e07108: connectionId=rmi://192.168.5.4 1] closed. -2024-08-07 16:31:37 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 16:31:37 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 16:31:37 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 16:31:37 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 16:31:37 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@da22aa] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@da22aa] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@da22aa] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@da22aa] to [STARTING] -2024-08-07 16:31:37 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@da22aa] to [STARTED] -2024-08-07 16:31:37 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:31:37 - Filter 'requestContextFilter' configured for use -2024-08-07 16:31:37 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 16:31:37 - Filter 'characterEncodingFilter' configured for use -2024-08-07 16:31:37 - Filter 'formContentFilter' configured for use -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:31:37 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:31:37 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:31:37 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 16:31:37 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.mapper.MapperListener@6a8a551e] to [STARTING_PREP] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.mapper.MapperListener@6a8a551e] to [STARTING] -2024-08-07 16:31:37 - Registered host [localhost] -2024-08-07 16:31:37 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 16:31:37 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 16:31:37 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 16:31:37 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 16:31:37 - Setting state for [org.apache.catalina.mapper.MapperListener@6a8a551e] to [STARTED] -2024-08-07 16:31:37 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 16:31:37 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 16:31:37 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 16:31:37 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 16:31:37 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 16:31:37 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:31:37 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:31:37 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 16:31:37 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 16:31:37 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 16:31:37 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:31:37 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:31:37 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 16:31:37 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 16:31:37 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 16:31:37 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 16:31:37 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 16:31:37 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 16:31:37 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 16:31:37 - HHH000206: 'hibernate.properties' not found -2024-08-07 16:31:37 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 16:31:37 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 16:31:37 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 16:31:37 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 16:31:37 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 16:31:37 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 16:31:37 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 16:31:37 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 16:31:37 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 16:31:37 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 16:31:37 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 16:31:37 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 16:31:37 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 16:31:37 - HHH000026: Second-level cache disabled -2024-08-07 16:31:37 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 16:31:37 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 16:31:37 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 16:31:37 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 16:31:37 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 16:31:37 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 16:31:37 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 16:31:37 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 16:31:37 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 16:31:37 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 16:31:37 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 16:31:37 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:31:37 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:31:37 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:31:37 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 16:31:37 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 16:31:37 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 16:31:37 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 16:31:37 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 16:31:37 - Adding type registration image -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 16:31:37 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 16:31:37 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 16:31:37 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 16:31:37 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 16:31:37 - Adding type registration short -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 16:31:37 - Adding type registration short -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 16:31:37 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 16:31:37 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 16:31:37 - Adding type registration int -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 16:31:37 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 16:31:37 - Adding type registration long -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 16:31:37 - Adding type registration long -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 16:31:37 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 16:31:37 - Adding type registration float -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 16:31:37 - Adding type registration float -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 16:31:37 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 16:31:37 - Adding type registration double -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 16:31:37 - Adding type registration double -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 16:31:37 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 16:31:37 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 16:31:37 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 16:31:37 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 16:31:37 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 16:31:37 - Adding type registration character -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:31:37 - Adding type registration char -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:31:37 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:31:37 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 16:31:37 - Adding type registration string -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 16:31:37 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 16:31:37 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 16:31:37 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 16:31:37 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 16:31:37 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 16:31:37 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 16:31:37 - Adding type registration text -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 16:31:37 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 16:31:37 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 16:31:37 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 16:31:37 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 16:31:37 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 16:31:37 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 16:31:37 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 16:31:37 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 16:31:37 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 16:31:37 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:31:37 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 16:31:37 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 16:31:37 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 16:31:37 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 16:31:37 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 16:31:37 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 16:31:37 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 16:31:37 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 16:31:37 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 16:31:37 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 16:31:37 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 16:31:37 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 16:31:37 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 16:31:37 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 16:31:37 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 16:31:37 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-07 16:31:37 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 16:31:37 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-07 16:31:37 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-07 16:31:37 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-07 16:31:37 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-07 16:31:37 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2c5708e7 -2024-08-07 16:31:37 - Adding type registration date -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-07 16:31:37 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-07 16:31:37 - Adding type registration time -> org.hibernate.type.BasicTypeReference@4e26564d -2024-08-07 16:31:37 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@4e26564d -2024-08-07 16:31:37 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@42238078 -2024-08-07 16:31:37 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@42238078 -2024-08-07 16:31:37 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@42238078 -2024-08-07 16:31:37 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@5627b8eb -2024-08-07 16:31:37 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@5627b8eb -2024-08-07 16:31:37 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@5627b8eb -2024-08-07 16:31:37 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@49fe0bcd -2024-08-07 16:31:37 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@3516b881 -2024-08-07 16:31:37 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@6be8ce1b -2024-08-07 16:31:37 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@6be8ce1b -2024-08-07 16:31:37 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@e3c36d -2024-08-07 16:31:37 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@e3c36d -2024-08-07 16:31:37 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@e3c36d -2024-08-07 16:31:37 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@397a10df -2024-08-07 16:31:37 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@39a865c1 -2024-08-07 16:31:37 - Adding type registration class -> org.hibernate.type.BasicTypeReference@141dfcf9 -2024-08-07 16:31:37 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@141dfcf9 -2024-08-07 16:31:37 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@a7bbdbc -2024-08-07 16:31:37 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@a7bbdbc -2024-08-07 16:31:37 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@a7bbdbc -2024-08-07 16:31:37 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@63eea8c4 -2024-08-07 16:31:37 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@63eea8c4 -2024-08-07 16:31:37 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@19924f15 -2024-08-07 16:31:37 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@19924f15 -2024-08-07 16:31:37 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@621392ea -2024-08-07 16:31:37 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@621392ea -2024-08-07 16:31:37 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@35524549 -2024-08-07 16:31:37 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@35524549 -2024-08-07 16:31:37 - Adding type registration url -> org.hibernate.type.BasicTypeReference@23ec63af -2024-08-07 16:31:37 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@23ec63af -2024-08-07 16:31:37 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@280d6a20 -2024-08-07 16:31:37 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@56f72909 -2024-08-07 16:31:37 - Adding type registration object -> org.hibernate.type.JavaObjectType@2375a976 -2024-08-07 16:31:37 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@2375a976 -2024-08-07 16:31:37 - Adding type registration null -> org.hibernate.type.NullType@7b2d58e6 -2024-08-07 16:31:37 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@708f7386 -2024-08-07 16:31:37 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@377e90b0 -2024-08-07 16:31:37 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@27b490de -2024-08-07 16:31:37 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@36cf16a6 -2024-08-07 16:31:37 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@3dd750ba -2024-08-07 16:31:37 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@7eefaca0 -2024-08-07 16:31:37 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@7d5ef1c3 -2024-08-07 16:31:37 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@33eab2e8 -2024-08-07 16:31:37 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@35f01759] into BootstrapContext; was [null] -2024-08-07 16:31:37 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@35f01759) [was null] -2024-08-07 16:31:37 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@27fc0217] into BootstrapContext; was [null] -2024-08-07 16:31:37 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@e993715] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@686e7513] -2024-08-07 16:31:37 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 16:31:37 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 16:31:37 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 16:31:37 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 16:31:37 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 16:31:37 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@35f01759] -2024-08-07 16:31:37 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@35f01759] -2024-08-07 16:31:37 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-07 16:31:37 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 16:31:37 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 16:31:37 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 16:31:37 - JDBC version : 4.2 -2024-08-07 16:31:37 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 16:31:37 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 16:31:37 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 16:31:37 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 16:31:37 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 16:31:37 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 16:31:37 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 16:31:37 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 16:31:37 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 16:31:37 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 16:31:37 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 16:31:37 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@1dadd172] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@33c9f1ac] -2024-08-07 16:31:37 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-07 16:31:37 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 16:31:37 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 16:31:37 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 16:31:37 - Import with entity name Action -2024-08-07 16:31:37 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 16:31:37 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:31:37 - Binding column: AnnotatedColumn() -2024-08-07 16:31:37 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:31:37 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:31:37 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:31:38 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 16:31:38 - building BasicValue for id -2024-08-07 16:31:38 - Skipping column re-registration: action.id -2024-08-07 16:31:38 - Building property id -2024-08-07 16:31:38 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:31:38 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:31:38 - Binding column: AnnotatedColumn() -2024-08-07 16:31:38 - Building property event -2024-08-07 16:31:38 - Binding column: AnnotatedColumn() -2024-08-07 16:31:38 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 16:31:38 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 16:31:38 - building BasicValue for sequence -2024-08-07 16:31:38 - Skipping column re-registration: action.sequence -2024-08-07 16:31:38 - Building property sequence -2024-08-07 16:31:38 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:31:38 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 16:31:38 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 16:31:38 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 16:31:38 - Import with entity name BillAction -2024-08-07 16:31:38 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 16:31:38 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:31:38 - Binding column: AnnotatedColumn() -2024-08-07 16:31:38 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:31:38 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:31:38 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:31:38 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 16:31:38 - building BasicValue for id -2024-08-07 16:31:38 - Skipping column re-registration: bill_action.id -2024-08-07 16:31:38 - Building property id -2024-08-07 16:31:38 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:31:38 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:31:38 - Binding column: AnnotatedColumn() -2024-08-07 16:31:38 - Building property action -2024-08-07 16:31:38 - Binding column: AnnotatedColumn() -2024-08-07 16:31:38 - MetadataSourceProcessor property price with lazy=false -2024-08-07 16:31:38 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 16:31:38 - building BasicValue for price -2024-08-07 16:31:38 - Skipping column re-registration: bill_action.price -2024-08-07 16:31:38 - Building property price -2024-08-07 16:31:38 - Binding column: AnnotatedColumn() -2024-08-07 16:31:38 - MetadataSourceProcessor property title with lazy=false -2024-08-07 16:31:38 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 16:31:38 - building BasicValue for title -2024-08-07 16:31:38 - Skipping column re-registration: bill_action.title -2024-08-07 16:31:38 - Building property title -2024-08-07 16:31:38 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:31:38 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 16:31:38 - Import with entity name MemberAction -2024-08-07 16:31:38 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 16:31:38 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:31:38 - Binding column: AnnotatedColumn() -2024-08-07 16:31:38 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:31:38 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:31:38 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:31:38 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 16:31:38 - building BasicValue for id -2024-08-07 16:31:38 - Skipping column re-registration: member_action.id -2024-08-07 16:31:38 - Building property id -2024-08-07 16:31:38 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:31:38 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:31:38 - Binding column: AnnotatedColumn() -2024-08-07 16:31:38 - Building property action -2024-08-07 16:31:38 - Binding column: AnnotatedColumn() -2024-08-07 16:31:38 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 16:31:38 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 16:31:38 - building BasicValue for memberGroupId -2024-08-07 16:31:38 - Skipping column re-registration: member_action.member_group_id -2024-08-07 16:31:38 - Building property memberGroupId -2024-08-07 16:31:38 - Binding column: AnnotatedColumn() -2024-08-07 16:31:38 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 16:31:38 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 16:31:38 - building BasicValue for memberName -2024-08-07 16:31:38 - Skipping column re-registration: member_action.member_name -2024-08-07 16:31:38 - Building property memberName -2024-08-07 16:31:38 - Binding column: AnnotatedColumn() -2024-08-07 16:31:38 - MetadataSourceProcessor property status with lazy=false -2024-08-07 16:31:38 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 16:31:38 - building BasicValue for status -2024-08-07 16:31:38 - Skipping column re-registration: member_action.status -2024-08-07 16:31:38 - Building property status -2024-08-07 16:31:38 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:31:38 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 16:31:38 - Import with entity name Event -2024-08-07 16:31:38 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 16:31:38 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:31:38 - Binding column: AnnotatedColumn() -2024-08-07 16:31:38 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:31:38 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:31:38 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:31:38 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 16:31:38 - building BasicValue for id -2024-08-07 16:31:38 - Skipping column re-registration: event.id -2024-08-07 16:31:38 - Building property id -2024-08-07 16:31:38 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:31:38 - Binding column: AnnotatedColumn() -2024-08-07 16:31:38 - MetadataSourceProcessor property name with lazy=false -2024-08-07 16:31:38 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 16:31:38 - building BasicValue for name -2024-08-07 16:31:38 - Skipping column re-registration: event.name -2024-08-07 16:31:38 - Building property name -2024-08-07 16:31:38 - Binding column: AnnotatedColumn() -2024-08-07 16:31:38 - MetadataSourceProcessor property password with lazy=false -2024-08-07 16:31:38 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 16:31:38 - building BasicValue for password -2024-08-07 16:31:38 - Skipping column re-registration: event.password -2024-08-07 16:31:38 - Building property password -2024-08-07 16:31:38 - Binding column: AnnotatedColumn() -2024-08-07 16:31:38 - MetadataSourceProcessor property token with lazy=false -2024-08-07 16:31:38 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 16:31:38 - building BasicValue for token -2024-08-07 16:31:38 - Skipping column re-registration: event.token -2024-08-07 16:31:38 - Building property token -2024-08-07 16:31:38 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 16:31:38 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 16:31:38 - Import with entity name EventStep -2024-08-07 16:31:38 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 16:31:38 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:31:38 - Binding column: AnnotatedColumn() -2024-08-07 16:31:38 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:31:38 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:31:38 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:31:38 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 16:31:38 - building BasicValue for id -2024-08-07 16:31:38 - Skipping column re-registration: event_step.id -2024-08-07 16:31:38 - Building property id -2024-08-07 16:31:38 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:31:38 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:31:38 - Binding column: AnnotatedColumn() -2024-08-07 16:31:38 - Building property event -2024-08-07 16:31:38 - Binding column: AnnotatedColumn() -2024-08-07 16:31:38 - MetadataSourceProcessor property name with lazy=false -2024-08-07 16:31:38 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 16:31:38 - building BasicValue for name -2024-08-07 16:31:38 - Skipping column re-registration: event_step.name -2024-08-07 16:31:38 - Building property name -2024-08-07 16:31:38 - Binding column: AnnotatedColumn() -2024-08-07 16:31:38 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 16:31:38 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 16:31:38 - building BasicValue for sequence -2024-08-07 16:31:38 - Skipping column re-registration: event_step.sequence -2024-08-07 16:31:38 - Building property sequence -2024-08-07 16:31:38 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 16:31:38 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:31:38 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 16:31:38 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:31:38 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 16:31:38 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 16:31:38 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:31:38 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 16:31:38 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 16:31:38 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 16:31:38 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:31:38 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 16:31:38 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 16:31:38 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 16:31:38 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:31:38 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 16:31:38 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 16:31:38 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 16:31:38 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 16:31:38 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 16:31:38 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 16:31:38 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 16:31:38 - Building session factory -2024-08-07 16:31:38 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 16:31:38 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 16:31:38 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:31:38 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@563ab6d5, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@548f4f60, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.2868037932717567933, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=60847, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.2868037932717567933, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@d960561, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 16:31:38 - Session factory constructed with filter configurations : {} -2024-08-07 16:31:38 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:31:38 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:31:38 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:31:38 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:31:38 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:31:38 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:31:38 - Loaded expression factory via original TCCL -2024-08-07 16:31:38 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:31:38 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:31:38 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:31:38 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:31:38 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:31:38 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:31:38 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:31:38 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:31:38 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:31:38 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:31:38 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:31:38 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:31:38 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:31:38 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:31:38 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:31:38 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:31:38 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:31:38 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 16:31:38 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@4fe9adfb] under count; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@46c9ee28] under every; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@31f5ffb9] under any; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6761f75b] under sinh; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7c8a91e2] under cosh; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@c7443f] under tanh; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@74e175c7] under pi; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1c528f2f] under log; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 16:31:38 - Registering alternate key : length -> character_length -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@2fc0ad21] under position; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@3293030b] under overlay; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@4e3d36c2] under trim; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@7c680fe1] under cast; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@288b8663] under collate; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@3055f310] under extract; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@309e7215] under ifnull; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@149238fe] under pad; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@b814e23] under str; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@16c1d11] under format; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@2fc40856] under timestampadd; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@66ab088c] under timestampdiff; prior registration was null -2024-08-07 16:31:38 - Registering alternate key : dateadd -> timestampadd -2024-08-07 16:31:38 - Registering alternate key : datediff -> timestampdiff -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@43312512] under current_date; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@13f7c165] under current_time; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@655f92a1] under current_timestamp; prior registration was null -2024-08-07 16:31:38 - Registering alternate key : current date -> current_date -2024-08-07 16:31:38 - Registering alternate key : current time -> current_time -2024-08-07 16:31:38 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1d2d793d] under local_date; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@57fec63f] under local_time; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7a2fd94c] under local_datetime; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@637c8632] under offset_datetime; prior registration was null -2024-08-07 16:31:38 - Registering alternate key : local date -> local_date -2024-08-07 16:31:38 - Registering alternate key : local time -> local_time -2024-08-07 16:31:38 - Registering alternate key : local datetime -> local_datetime -2024-08-07 16:31:38 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@156eeff1] under instant; prior registration was null -2024-08-07 16:31:38 - Registering alternate key : current_instant -> instant -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@55d87b73] under sql; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@618e7761] under count; prior registration was org.hibernate.dialect.function.CountFunction@4fe9adfb -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@30ca66c5] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@74e175c7 -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4abfa2ff] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 16:31:38 - Registering alternate key : day -> day_of_month -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@57fec63f -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@7a2fd94c -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@2bc0603f] under trunc; prior registration was null -2024-08-07 16:31:38 - Registering alternate key : truncate -> trunc -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4ed19540] under date_trunc; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 16:31:38 - Registering alternate key : chr -> char -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@533e8807] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@2fc0ad21 -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@322eb1a] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 16:31:38 - Registering alternate key : every -> bool_and -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 16:31:38 - Registering alternate key : any -> bool_or -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@2b4ba2d9] under format; prior registration was org.hibernate.dialect.function.FormatFunction@16c1d11 -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@57ac236a] under listagg; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@2202c92f] under mode; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@440d2d64] under percentile_cont; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@1a712f12] under percentile_disc; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@68fc636a] under rank; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@18301763] under dense_rank; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@237ee2e1] under percent_rank; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@6e00d737] under cume_dist; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@4b1b2255] under array; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@4965454c] under array_list; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@27f31d91] under array_agg; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@573f2e67] under array_position; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@5f14590c] under array_positions; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@3331800f] under array_positions_list; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@c414eb3] under array_length; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@48f2d51d] under array_concat; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@73905dff] under array_prepend; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@5c0d3715] under array_append; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@13ae87a6] under array_contains; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@774189d0] under array_contains_nullable; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@7f584d0c] under array_overlaps; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@4c599679] under array_overlaps_nullable; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@32f45e15] under array_get; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@1ba98508] under array_set; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@1477d4e6] under array_remove; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@48da5106] under array_remove_index; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@31cddb11] under array_slice; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@2c51c756] under array_replace; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4ef277ef] under array_trim; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@166a5659] under array_fill; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@1afabf06] under array_fill_list; prior registration was null -2024-08-07 16:31:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@6a261998] under array_to_string; prior registration was null -2024-08-07 16:31:38 - abs(NUMERIC arg) -2024-08-07 16:31:38 - Double acos(NUMERIC arg) -2024-08-07 16:31:38 - Boolean any(BOOLEAN predicate) -2024-08-07 16:31:38 - array( ... ) -2024-08-07 16:31:38 - array_agg(arg) -2024-08-07 16:31:38 - array_append( ... ) -2024-08-07 16:31:38 - array_concat( ... ) -2024-08-07 16:31:38 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 16:31:38 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 16:31:38 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 16:31:38 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 16:31:38 - array_get(ARRAY array, INTEGER index) -2024-08-07 16:31:38 - Integer array_length(ARRAY array) -2024-08-07 16:31:38 - array_list( ... ) -2024-08-07 16:31:38 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 16:31:38 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 16:31:38 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 16:31:38 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 16:31:38 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 16:31:38 - array_prepend( ... ) -2024-08-07 16:31:38 - array_remove( ... ) -2024-08-07 16:31:38 - array_remove_index( ... ) -2024-08-07 16:31:38 - array_replace( ... ) -2024-08-07 16:31:38 - array_set( ... ) -2024-08-07 16:31:38 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 16:31:38 - String array_to_string( ... ) -2024-08-07 16:31:38 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 16:31:38 - Integer ascii(STRING arg) -2024-08-07 16:31:38 - Double asin(NUMERIC arg) -2024-08-07 16:31:38 - Double atan(NUMERIC arg) -2024-08-07 16:31:38 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 16:31:38 - avg(NUMERIC arg) -2024-08-07 16:31:38 - bit_and(arg) -2024-08-07 16:31:38 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 16:31:38 - bit_or(arg) -2024-08-07 16:31:38 - bitand(arg0, arg1) -2024-08-07 16:31:38 - bitnot(arg) -2024-08-07 16:31:38 - bitor(arg0, arg1) -2024-08-07 16:31:38 - bitxor(arg0, arg1) -2024-08-07 16:31:38 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 16:31:38 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 16:31:38 - cast(arg as Type) -2024-08-07 16:31:38 - ceiling(NUMERIC arg) -2024-08-07 16:31:38 - Character char(INTEGER arg) -2024-08-07 16:31:38 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 16:31:38 - Character chr(INTEGER arg) -2024-08-07 16:31:38 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 16:31:38 - String collate(STRING string as COLLATION collation) -2024-08-07 16:31:38 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 16:31:38 - Double cos(NUMERIC arg) -2024-08-07 16:31:38 - Double cosh(NUMERIC arg) -2024-08-07 16:31:38 - Double cot(NUMERIC arg) -2024-08-07 16:31:38 - Long count([distinct ]{arg|*}) -2024-08-07 16:31:38 - Double cume_dist([arg0[, ...]]) -2024-08-07 16:31:38 - Date curdate() -2024-08-07 16:31:38 - Date current date -2024-08-07 16:31:38 - Time current time -2024-08-07 16:31:38 - Timestamp current timestamp -2024-08-07 16:31:38 - Date current_date -2024-08-07 16:31:38 - Instant current_instant -2024-08-07 16:31:38 - Time current_time -2024-08-07 16:31:38 - Timestamp current_timestamp -2024-08-07 16:31:38 - Time curtime() -2024-08-07 16:31:38 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 16:31:38 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 16:31:38 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 16:31:38 - Integer day(DATE arg) -2024-08-07 16:31:38 - Integer day_of_month(DATE arg) -2024-08-07 16:31:38 - Integer day_of_week(DATE arg) -2024-08-07 16:31:38 - Integer day_of_year(DATE arg) -2024-08-07 16:31:38 - String dayname(DATE arg) -2024-08-07 16:31:38 - Double degrees(NUMERIC arg) -2024-08-07 16:31:38 - Long dense_rank([arg0[, ...]]) -2024-08-07 16:31:38 - Boolean every(BOOLEAN predicate) -2024-08-07 16:31:38 - Double exp(NUMERIC arg) -2024-08-07 16:31:38 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 16:31:38 - first_valueANY value -2024-08-07 16:31:38 - floor(NUMERIC arg) -2024-08-07 16:31:38 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 16:31:38 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 16:31:38 - Integer hour(TIME arg) -2024-08-07 16:31:38 - ifnull(arg0, arg1) -2024-08-07 16:31:38 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 16:31:38 - Instant instant -2024-08-07 16:31:38 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 16:31:38 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 16:31:38 - last_valueANY value -2024-08-07 16:31:38 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 16:31:38 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 16:31:38 - String left(STRING string, INTEGER length) -2024-08-07 16:31:38 - Integer length(STRING_OR_CLOB arg) -2024-08-07 16:31:38 - String listagg(STRING arg0, STRING arg1) -2024-08-07 16:31:38 - Double ln(NUMERIC arg) -2024-08-07 16:31:38 - LocalDate local date -2024-08-07 16:31:38 - LocalDateTime local datetime -2024-08-07 16:31:38 - LocalTime local time -2024-08-07 16:31:38 - LocalDate local_date -2024-08-07 16:31:38 - LocalDateTime local_datetime -2024-08-07 16:31:38 - LocalTime local_time -2024-08-07 16:31:38 - Time localtime -2024-08-07 16:31:38 - Timestamp localtimestamp -2024-08-07 16:31:38 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 16:31:38 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 16:31:38 - Double log10(NUMERIC arg) -2024-08-07 16:31:38 - String lower(STRING string) -2024-08-07 16:31:38 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 16:31:38 - String ltrim(STRING string) -2024-08-07 16:31:38 - max(COMPARABLE arg) -2024-08-07 16:31:38 - Double median(NUMERIC arg) -2024-08-07 16:31:38 - Integer microsecond(TIME arg) -2024-08-07 16:31:38 - min(COMPARABLE arg) -2024-08-07 16:31:38 - Integer minute(TIME arg) -2024-08-07 16:31:38 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 16:31:38 - mode() -2024-08-07 16:31:38 - Integer month(DATE arg) -2024-08-07 16:31:38 - String monthname(DATE arg) -2024-08-07 16:31:38 - Timestamp now() -2024-08-07 16:31:38 - nth_valueANY value, INTEGER nth -2024-08-07 16:31:38 - nullif(arg0, arg1) -2024-08-07 16:31:38 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 16:31:38 - OffsetDateTime offset datetime -2024-08-07 16:31:38 - OffsetDateTime offset_datetime -2024-08-07 16:31:38 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 16:31:38 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 16:31:38 - Double percent_rank([arg0[, ...]]) -2024-08-07 16:31:38 - percentile_cont(NUMERIC arg) -2024-08-07 16:31:38 - percentile_disc(NUMERIC arg) -2024-08-07 16:31:38 - Double pi -2024-08-07 16:31:38 - Integer position(STRING pattern in STRING string) -2024-08-07 16:31:38 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 16:31:38 - Integer quarter(DATE arg) -2024-08-07 16:31:38 - Double radians(NUMERIC arg) -2024-08-07 16:31:38 - Double rand([INTEGER seed]) -2024-08-07 16:31:38 - Long rank([arg0[, ...]]) -2024-08-07 16:31:38 - String repeat(STRING string, INTEGER times) -2024-08-07 16:31:38 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 16:31:38 - String right(STRING string, INTEGER length) -2024-08-07 16:31:38 - round(NUMERIC number[, INTEGER places]) -2024-08-07 16:31:38 - Long row_number() -2024-08-07 16:31:38 - Long rownum() -2024-08-07 16:31:38 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 16:31:38 - String rtrim(STRING string) -2024-08-07 16:31:38 - Integer second(TIME arg) -2024-08-07 16:31:38 - Integer sign(NUMERIC arg) -2024-08-07 16:31:38 - Double sin(NUMERIC arg) -2024-08-07 16:31:38 - Double sinh(NUMERIC arg) -2024-08-07 16:31:38 - String soundex(arg) -2024-08-07 16:31:38 - String space(INTEGER arg) -2024-08-07 16:31:38 - Object sql -2024-08-07 16:31:38 - Double sqrt(NUMERIC arg) -2024-08-07 16:31:38 - Double stddev_pop(NUMERIC arg) -2024-08-07 16:31:38 - Double stddev_samp(NUMERIC arg) -2024-08-07 16:31:38 - String str(arg) -2024-08-07 16:31:38 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 16:31:38 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 16:31:38 - sum(arg) -2024-08-07 16:31:38 - Timestamp sysdate -2024-08-07 16:31:38 - Double tan(NUMERIC arg) -2024-08-07 16:31:38 - Double tanh(NUMERIC arg) -2024-08-07 16:31:38 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 16:31:38 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 16:31:38 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 16:31:38 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 16:31:38 - trunc( ... ) -2024-08-07 16:31:38 - truncate( ... ) -2024-08-07 16:31:38 - String upper(STRING string) -2024-08-07 16:31:38 - Double var_pop(NUMERIC arg) -2024-08-07 16:31:38 - Double var_samp(NUMERIC arg) -2024-08-07 16:31:38 - Integer week(DATE arg) -2024-08-07 16:31:38 - Integer year(DATE arg) -2024-08-07 16:31:38 - Starting QueryInterpretationCache(2048) -2024-08-07 16:31:38 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 16:31:38 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 16:31:38 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:31:38 - Configured EntityCopyObserver strategy: disallow -2024-08-07 16:31:38 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:31:38 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:31:38 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:31:38 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 16:31:38 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:31:38 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:31:38 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 16:31:38 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:31:38 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:31:38 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 16:31:38 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:31:38 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:31:38 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 16:31:38 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:31:38 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:31:38 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 16:31:38 - Starting post-init callbacks -2024-08-07 16:31:38 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 16:31:38 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 16:31:38 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:31:38 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 16:31:38 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 16:31:38 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 16:31:38 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 16:31:38 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 16:31:38 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 82 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 84 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:38 - connectionId=rmi://192.168.5.4 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:38 - [javax.management.remote.rmi.RMIConnectionImpl@3e34fbb0: connectionId=rmi://192.168.5.4 2] closing. -2024-08-07 16:31:38 - [javax.management.remote.rmi.RMIConnectionImpl@3e34fbb0: connectionId=rmi://192.168.5.4 2] closed. -2024-08-07 16:31:38 - Created new SQL alias : ba1_0 -2024-08-07 16:31:38 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 16:31:38 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4d0e6424] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 16:31:38 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 16:31:38 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 16:31:38 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 16:31:38 - Version select: select id from bill_action where id=? -2024-08-07 16:31:38 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 16:31:38 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 16:31:38 - Delete (0): delete from bill_action where id=? -2024-08-07 16:31:38 - Created new SQL alias : ma1_0 -2024-08-07 16:31:38 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 16:31:38 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1dba7721] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:31:38 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 16:31:38 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 16:31:38 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 16:31:38 - Version select: select id from member_action where id=? -2024-08-07 16:31:38 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 16:31:38 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 16:31:38 - Delete (0): delete from member_action where id=? -2024-08-07 16:31:38 - Created new SQL alias : e1_0 -2024-08-07 16:31:38 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 16:31:38 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 16:31:38 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 16:31:38 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 16:31:38 - Version select: select id from event where id=? -2024-08-07 16:31:38 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 16:31:38 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 16:31:38 - Delete (0): delete from event where id=? -2024-08-07 16:31:38 - Created new SQL alias : a1_0 -2024-08-07 16:31:38 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 16:31:38 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4010f232] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 16:31:38 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 16:31:38 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 16:31:38 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 16:31:38 - Version select: select id from action where id=? -2024-08-07 16:31:38 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 16:31:38 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 16:31:38 - Delete (0): delete from action where id=? -2024-08-07 16:31:38 - Created new SQL alias : es1_0 -2024-08-07 16:31:38 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 16:31:38 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@39f3285d] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 16:31:38 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 16:31:38 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 16:31:38 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 16:31:38 - Version select: select id from event_step where id=? -2024-08-07 16:31:38 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 16:31:38 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 16:31:38 - Delete (0): delete from event_step where id=? -2024-08-07 16:31:38 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 16:31:38 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@1dadd172] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@d03cdc7] -2024-08-07 16:31:38 - Checking 0 named HQL queries -2024-08-07 16:31:38 - Checking 0 named SQL queries -2024-08-07 16:31:38 - - drop table if exists action cascade -2024-08-07 16:31:38 - - drop table if exists bill_action cascade -2024-08-07 16:31:38 - - drop table if exists event cascade -2024-08-07 16:31:38 - - drop table if exists event_step cascade -2024-08-07 16:31:38 - - drop table if exists member_action cascade -2024-08-07 16:31:38 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 16:31:38 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 16:31:38 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 16:31:38 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 16:31:38 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 16:31:38 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 16:31:38 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 16:31:38 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 16:31:38 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 16:31:38 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@1f39b3ba -2024-08-07 16:31:38 - Registering SessionFactory: 2c4ae100-1232-44e8-8f15-bc8b0476ca2c (<unnamed>) -2024-08-07 16:31:38 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 16:31:38 - Instantiated SessionFactory -2024-08-07 16:31:38 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'actionService' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 16:31:38 - Initializing JpaMetamodelMappingContext… -2024-08-07 16:31:38 - Finished initializing JpaMetamodelMappingContext -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - Statistics initialized [enabled=false] -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 16:31:38 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 16:31:38 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - Looking up named query BillAction.findByAction_Event -2024-08-07 16:31:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:31:38 - Did not find named query BillAction.findByAction_Event -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - Looking up named query BillAction.findByAction_Id -2024-08-07 16:31:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:31:38 - Did not find named query BillAction.findByAction_Id -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 16:31:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:31:38 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 16:31:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:31:38 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 16:31:38 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:31:38 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(741869765678958)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(741869765678958)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(741869765678958)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(741869765678958)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(741869765678958).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:31:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:31:38 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 16:31:38 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:31:38 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:31:38 - Looking up named query MemberAction.findByAction -2024-08-07 16:31:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:31:38 - Did not find named query MemberAction.findByAction -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 16:31:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:31:38 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 16:31:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:31:38 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:31:38 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 16:31:38 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 16:31:38 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:31:38 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 16:31:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:31:38 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 16:31:38 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 16:31:38 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 16:31:38 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 16:31:38 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - Looking up named query Event.findByToken -2024-08-07 16:31:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:31:38 - Did not find named query Event.findByToken -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 16:31:38 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 16:31:38 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:31:38 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:31:38 - Did not find named query Action.findLastByEvent.count -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 16:31:38 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:31:38 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:31:38 - Looking up named query Action.findByIdAndEvent -2024-08-07 16:31:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:31:38 - Did not find named query Action.findByIdAndEvent -2024-08-07 16:31:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:31:38 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 16:31:38 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 16:31:38 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 16:31:38 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'eventService' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 16:31:38 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 16:31:38 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 16:31:38 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 16:31:38 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 16:31:38 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 16:31:38 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 16:31:38 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:31:38 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 16:31:38 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 16:31:38 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 16:31:38 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'actionController' -2024-08-07 16:31:38 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 16:31:38 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'eventController' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'authService' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 16:31:38 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 16:31:38 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 16:31:38 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 16:31:38 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 16:31:38 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:31:38 - Loaded expression factory via original TCCL -2024-08-07 16:31:38 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 16:31:38 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 16:31:38 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:31:38 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 16:31:38 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:31:38 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:31:38 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:31:38 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:31:38 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:31:38 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:31:38 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:31:38 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:31:38 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:31:38 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:31:38 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'error' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 16:31:38 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 16:31:38 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 16:31:38 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 16:31:38 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 16:31:38 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:31:38 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:31:38 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 16:31:38 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:31:38 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:31:38 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 16:31:38 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:31:38 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:31:38 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:31:38 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 16:31:38 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 16:31:38 - - s.h.p.EventController: - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) -2024-08-07 16:31:38 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 16:31:38 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 16:31:38 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 16:31:38 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:31:38 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 16:31:38 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:31:38 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:31:38 - 'beanNameHandlerMapping' {} -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 16:31:38 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:31:38 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 16:31:38 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 16:31:38 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:31:38 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:31:38 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 16:31:38 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:31:38 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 16:31:38 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 16:31:38 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 16:31:38 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:31:38 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:31:38 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:31:38 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 16:31:38 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:31:38 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 16:31:38 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 16:31:38 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 16:31:38 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 16:31:38 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 82 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 82 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 82 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 84 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 82 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 82 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:38 - connectionId=rmi://192.168.5.4 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:31:38 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:38 - [javax.management.remote.rmi.RMIConnectionImpl@414a332c: connectionId=rmi://192.168.5.4 3] closing. -2024-08-07 16:31:38 - [javax.management.remote.rmi.RMIConnectionImpl@414a332c: connectionId=rmi://192.168.5.4 3] closed. -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 16:31:38 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 16:31:38 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 16:31:38 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:31:38 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 16:31:38 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 16:31:38 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 16:31:38 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 16:31:38 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 16:31:38 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:31:38 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 16:31:38 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:31:38 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 16:31:38 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 16:31:38 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 16:31:38 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 16:31:38 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 16:31:38 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 16:31:38 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 16:31:38 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 16:31:38 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 16:31:38 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 16:31:38 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 16:31:38 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 16:31:38 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 16:31:38 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:31:38 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 16:31:38 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 16:31:38 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 16:31:38 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 16:31:38 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 16:31:38 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 16:31:38 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 16:31:38 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 16:31:38 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 16:31:38 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 16:31:38 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 16:31:38 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:31:38 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:31:38 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 16:31:38 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 16:31:38 - Using SLF4J as the default logging framework -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 16:31:38 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 16:31:38 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 16:31:38 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 16:31:38 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 16:31:38 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 16:31:38 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 16:31:38 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 16:31:38 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 16:31:38 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 16:31:38 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 16:31:38 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 16:31:38 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 16:31:38 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 16:31:38 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 16:31:38 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 16:31:38 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 16:31:38 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 16:31:38 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 16:31:38 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:31:38 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:31:38 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 16:31:38 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 16:31:38 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 16:31:38 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:31:38 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:31:38 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 16:31:38 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 16:31:38 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 16:31:38 - Registering beans for JMX exposure on startup -2024-08-07 16:31:38 - Auto-detecting user-defined JMX MBeans -2024-08-07 16:31:38 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 16:31:38 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 16:31:38 - Starting beans in phase -2147483647 -2024-08-07 16:31:38 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 16:31:38 - Starting beans in phase 2147481599 -2024-08-07 16:31:38 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 16:31:38 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 16:31:38 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 16:31:38 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 16:31:38 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 16:31:38 - Successfully started bean 'webServerStartStop' -2024-08-07 16:31:38 - Starting beans in phase 2147482623 -2024-08-07 16:31:38 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 16:31:38 - Starting beans in phase 2147483647 -2024-08-07 16:31:38 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 16:31:38 - Started HaengdongApplication in 2.188 seconds (process running for 2.368) -2024-08-07 16:31:38 - Application availability state LivenessState changed to CORRECT -2024-08-07 16:31:38 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 16:31:39 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 82 -2024-08-07 16:31:39 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 84 -2024-08-07 16:31:39 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:31:39 - RMI TCP Connection(1)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - [javax.management.remote.rmi.RMIConnectionImpl@5c93d573: connectionId=rmi://192.168.5.4 4] closing. -2024-08-07 16:31:39 - [javax.management.remote.rmi.RMIConnectionImpl@5c93d573: connectionId=rmi://192.168.5.4 4] closed. -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: accepted socket from [192.168.5.4:64359] -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: accepted socket from [192.168.5.4:64360] -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 84 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 84 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - [javax.management.remote.rmi.RMIConnectionImpl@39f92b37: connectionId=rmi://192.168.5.4 6] closing. -2024-08-07 16:31:39 - [javax.management.remote.rmi.RMIConnectionImpl@39f92b37: connectionId=rmi://192.168.5.4 6] closed. -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 84 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 82 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - [javax.management.remote.rmi.RMIConnectionImpl@1493e3fb: connectionId=rmi://192.168.5.4 5] closing. -2024-08-07 16:31:39 - [javax.management.remote.rmi.RMIConnectionImpl@1493e3fb: connectionId=rmi://192.168.5.4 5] closed. -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - [javax.management.remote.rmi.RMIConnectionImpl@5a696cd1: connectionId=rmi://192.168.5.4 7] closing. -2024-08-07 16:31:39 - [javax.management.remote.rmi.RMIConnectionImpl@5a696cd1: connectionId=rmi://192.168.5.4 7] closed. -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 84 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 8 unwrapping query with defaultClassLoader. -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - [javax.management.remote.rmi.RMIConnectionImpl@52393f70: connectionId=rmi://192.168.5.4 8] closing. -2024-08-07 16:31:39 - [javax.management.remote.rmi.RMIConnectionImpl@52393f70: connectionId=rmi://192.168.5.4 8] closed. -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 82 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 82 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 84 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 84 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 82 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - [javax.management.remote.rmi.RMIConnectionImpl@685f856a: connectionId=rmi://192.168.5.4 9] closing. -2024-08-07 16:31:39 - [javax.management.remote.rmi.RMIConnectionImpl@685f856a: connectionId=rmi://192.168.5.4 9] closed. -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - [javax.management.remote.rmi.RMIConnectionImpl@5457471e: connectionId=rmi://192.168.5.4 10] closing. -2024-08-07 16:31:39 - [javax.management.remote.rmi.RMIConnectionImpl@5457471e: connectionId=rmi://192.168.5.4 10] closed. -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 84 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 84 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 12 unwrapping query with defaultClassLoader. -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 12, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 11 unwrapping query with defaultClassLoader. -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 11, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 12, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 16:31:39 - connectionId=rmi://192.168.5.4 11, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 16:31:39 - Fetching JDBC Connection from DataSource -2024-08-07 16:31:39 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 16:31:39 - Initializing Servlet 'dispatcherServlet' -2024-08-07 16:31:39 - Detected StandardServletMultipartResolver -2024-08-07 16:31:39 - Detected AcceptHeaderLocaleResolver -2024-08-07 16:31:39 - Detected FixedThemeResolver -2024-08-07 16:31:39 - Fetching JDBC Connection from DataSource -2024-08-07 16:31:39 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@63a9ab7d -2024-08-07 16:31:39 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@4039d109 -2024-08-07 16:31:39 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 16:31:39 - Completed initialization in 1 ms -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - [javax.management.remote.rmi.RMIConnectionImpl@400f0fab: connectionId=rmi://192.168.5.4 12] closing. -2024-08-07 16:31:39 - [javax.management.remote.rmi.RMIConnectionImpl@400f0fab: connectionId=rmi://192.168.5.4 12] closed. -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - [javax.management.remote.rmi.RMIConnectionImpl@51629710: connectionId=rmi://192.168.5.4 11] closing. -2024-08-07 16:31:39 - [javax.management.remote.rmi.RMIConnectionImpl@51629710: connectionId=rmi://192.168.5.4 11] closed. -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: (port 64357) connection closed -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: (port 64357) connection closed -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64360,localport=64357] -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64359,localport=64357] -2024-08-07 16:31:39 - RMI TCP Connection(3)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64360,localport=64357] -2024-08-07 16:31:39 - RMI TCP Connection(2)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64359,localport=64357] -2024-08-07 16:31:39 - RMI TCP Connection(1)-192.168.5.4: (port 64357) connection closed -2024-08-07 16:31:39 - RMI TCP Connection(1)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64358,localport=64357] -2024-08-07 16:31:39 - RMI TCP Connection(1)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64358,localport=64357] -2024-08-07 16:31:39 - RMI TCP Connection(4)-192.168.5.4: accepted socket from [192.168.5.4:64361] -2024-08-07 16:31:39 - RMI TCP Connection(4)-192.168.5.4: (port 64357) op = 80 -2024-08-07 16:31:39 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:31:39 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-07 16:32:07 - RMI TCP Connection(4)-192.168.5.4: (port 64357) connection closed -2024-08-07 16:32:07 - RMI TCP Connection(4)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64361,localport=64357] -2024-08-07 16:32:07 - RMI TCP Connection(4)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64361,localport=64357] -2024-08-07 16:32:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:32:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:32:28 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.2868037932717567933/conf/jaspic-providers.xml] -2024-08-07 16:32:28 - POST "/api/events", parameters={} -2024-08-07 16:32:28 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:32:28 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:32:28 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=쿠키굽자, password=1234]] -2024-08-07 16:32:28 - Found thread-bound EntityManager [SessionImpl(1681128440<open>)] for JPA transaction -2024-08-07 16:32:28 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 16:32:28 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:32:28 - begin -2024-08-07 16:32:28 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@5f0875f5] -2024-08-07 16:32:28 - Found thread-bound EntityManager [SessionImpl(1681128440<open>)] for JPA transaction -2024-08-07 16:32:28 - Participating in existing transaction -2024-08-07 16:32:28 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 16:32:28 - Executing identity-insert immediately -2024-08-07 16:32:28 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 16:32:28 - Initializer list is empty -2024-08-07 16:32:28 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@330827a8 -2024-08-07 16:32:28 - Extracted JDBC value [0] - [1] -2024-08-07 16:32:28 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@46f4a293 -2024-08-07 16:32:28 - Initiating transaction commit -2024-08-07 16:32:28 - Committing JPA transaction on EntityManager [SessionImpl(1681128440<open>)] -2024-08-07 16:32:28 - committing -2024-08-07 16:32:28 - Processing flush-time cascades -2024-08-07 16:32:28 - Dirty checking collections -2024-08-07 16:32:28 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 16:32:28 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 16:32:28 - Listing entities: -2024-08-07 16:32:28 - server.haengdong.domain.event.Event{password=1234, name=쿠키굽자, id=1, token=b904bab3-5861-4aa0-954e-3b0eb1bae747} -2024-08-07 16:32:28 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:32:28 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:32:28 - Writing [EventResponse[eventId=b904bab3-5861-4aa0-954e-3b0eb1bae747]] -2024-08-07 16:32:28 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:32:28 - Completed 200 OK -2024-08-07 16:32:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:32:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:33:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:33:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:33:30 - OPTIONS "/api/events/b904bab3-5861-4aa0-954e-3b0eb1bae747/actions", parameters={} -2024-08-07 16:33:30 - OPTIONS "/api/events/b904bab3-5861-4aa0-954e-3b0eb1bae747", parameters={} -2024-08-07 16:33:30 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:33:30 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:33:30 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:33:30 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:33:30 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:33:30 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:33:30 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:33:30 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:33:30 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:33:30 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:33:30 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:33:30 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:33:30 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:33:30 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:33:30 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:33:30 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:33:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:33:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:34:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:34:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:34:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:34:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:35:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:35:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:35:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:35:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:36:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:36:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:36:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:36:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:37:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:37:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:37:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:37:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:38:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:38:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:38:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:38:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:39:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:39:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:39:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:39:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:40:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:40:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:40:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:40:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:41:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:41:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:41:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:41:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:42:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:42:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:42:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:42:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:42:38 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 16:42:38 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Wed Aug 07 16:31:36 KST 2024 -2024-08-07 16:42:38 - Stopping beans in phase 2147483647 -2024-08-07 16:42:38 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 16:42:38 - Stopping beans in phase 2147482623 -2024-08-07 16:42:38 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 16:42:38 - Stopping beans in phase 2147481599 -2024-08-07 16:42:38 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 16:42:38 - Stopping beans in phase -2147483647 -2024-08-07 16:42:38 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 16:42:38 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 16:42:38 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 16:42:38 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 16:42:38 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 16:42:38 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 16:42:38 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 16:42:38 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 16:42:38 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 16:42:38 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 16:42:38 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 16:42:38 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 16:42:38 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 16:42:38 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 16:42:38 - Unregistering JMX-exposed beans on shutdown -2024-08-07 16:42:38 - Unregistering JMX-exposed beans -2024-08-07 16:42:38 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 16:42:38 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 16:42:38 - HHH000031: Closing -2024-08-07 16:42:38 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@160e2a14] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@d03cdc7] -2024-08-07 16:42:38 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 16:42:38 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 16:42:38 - HikariPool-1 - Shutdown initiated... -2024-08-07 16:42:38 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:42:38 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:42:38 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:42:38 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:42:38 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:42:38 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:42:38 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:42:38 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:42:38 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:42:38 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:42:38 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:42:38 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 16:42:38 - HikariPool-1 - Shutdown completed. -2024-08-07 16:42:38 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 16:42:39 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 16:42:39 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 16:42:39 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:42:39 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:42:39 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:42:39 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:42:39 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:42:39 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:42:39 - Loaded expression factory via original TCCL -2024-08-07 16:42:39 - Starting HaengdongApplication using Java 17.0.12 with PID 61416 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 16:42:39 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 16:42:39 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 16:42:39 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 16:42:39 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-07 16:42:39 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 16:42:39 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:42:39 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:42:39 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:42:39 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:42:39 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:42:39 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:42:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 16:42:39 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 16:42:39 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 16:42:39 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 16:42:39 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 16:42:39 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 16:42:39 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 16:42:39 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 16:42:39 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 16:42:39 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 16:42:39 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 16:42:39 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 16:42:39 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 16:42:39 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 16:42:39 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 16:42:39 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 16:42:39 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 16:42:39 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 16:42:40 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 16:42:40 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 16:42:40 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 16:42:40 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 16:42:40 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 16:42:40 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 16:42:40 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 16:42:40 - Finished Spring Data repository scanning in 15 ms. Found 4 JPA repository interfaces. -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 16:42:40 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 16:42:40 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 16:42:40 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 16:42:40 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 16:42:40 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 16:42:40 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 16:42:40 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 16:42:40 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 16:42:40 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@54c60202] -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 16:42:40 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 16:42:40 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 16:42:40 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 16:42:40 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 16:42:40 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 16:42:40 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 16:42:40 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 16:42:40 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 16:42:40 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:42:40 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:42:40 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:42:40 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 16:42:40 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 16:42:40 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 16:42:40 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 16:42:40 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 16:42:40 - Tomcat initialized with port 8080 (http) -2024-08-07 16:42:40 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1a2e563e] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1a2e563e] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.mapper.MapperListener@47fb7ec9] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.mapper.MapperListener@47fb7ec9] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 16:42:40 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 16:42:40 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1a2e563e] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1a2e563e] to [STARTING] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1a2e563e] to [STARTED] -2024-08-07 16:42:40 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 16:42:40 - Starting service [Tomcat] -2024-08-07 16:42:40 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 16:42:40 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 16:42:40 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.webresources.StandardRoot@79be91eb] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.webresources.StandardRoot@79be91eb] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.webresources.StandardRoot@79be91eb] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.webresources.DirResourceSet@73e4bb60] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.webresources.DirResourceSet@73e4bb60] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.webresources.DirResourceSet@73e4bb60] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.webresources.DirResourceSet@73e4bb60] to [STARTING] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.webresources.DirResourceSet@73e4bb60] to [STARTED] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.webresources.StandardRoot@79be91eb] to [STARTING] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.webresources.StandardRoot@79be91eb] to [STARTED] -2024-08-07 16:42:40 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:42:40 - Starting this Loader -2024-08-07 16:42:40 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:42:40 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:42:40 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 16:42:40 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@2e4eda17] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@2e4eda17] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@2e4eda17] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@2e4eda17] to [STARTING] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@2e4eda17] to [STARTED] -2024-08-07 16:42:40 - Initializing Spring embedded WebApplicationContext -2024-08-07 16:42:40 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 16:42:40 - Root WebApplicationContext: initialization completed in 635 ms -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 16:42:40 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 16:42:40 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 16:42:40 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 16:42:40 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:42:40 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 16:42:40 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 16:42:40 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 16:42:40 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 16:42:40 - HikariPool-1 - configuration: -2024-08-07 16:42:40 - allowPoolSuspension.............false -2024-08-07 16:42:40 - autoCommit......................true -2024-08-07 16:42:40 - catalog.........................none -2024-08-07 16:42:40 - connectionInitSql...............none -2024-08-07 16:42:40 - connectionTestQuery.............none -2024-08-07 16:42:40 - connectionTimeout...............30000 -2024-08-07 16:42:40 - dataSource......................none -2024-08-07 16:42:40 - dataSourceClassName.............none -2024-08-07 16:42:40 - dataSourceJNDI..................none -2024-08-07 16:42:40 - dataSourceProperties............{password=<masked>} -2024-08-07 16:42:40 - driverClassName................."org.h2.Driver" -2024-08-07 16:42:40 - exceptionOverrideClassName......none -2024-08-07 16:42:40 - healthCheckProperties...........{} -2024-08-07 16:42:40 - healthCheckRegistry.............none -2024-08-07 16:42:40 - idleTimeout.....................600000 -2024-08-07 16:42:40 - initializationFailTimeout.......1 -2024-08-07 16:42:40 - isolateInternalQueries..........false -2024-08-07 16:42:40 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 16:42:40 - keepaliveTime...................0 -2024-08-07 16:42:40 - leakDetectionThreshold..........0 -2024-08-07 16:42:40 - maxLifetime.....................1800000 -2024-08-07 16:42:40 - maximumPoolSize.................10 -2024-08-07 16:42:40 - metricRegistry..................none -2024-08-07 16:42:40 - metricsTrackerFactory...........none -2024-08-07 16:42:40 - minimumIdle.....................10 -2024-08-07 16:42:40 - password........................<masked> -2024-08-07 16:42:40 - poolName........................"HikariPool-1" -2024-08-07 16:42:40 - readOnly........................false -2024-08-07 16:42:40 - registerMbeans..................false -2024-08-07 16:42:40 - scheduledExecutor...............none -2024-08-07 16:42:40 - schema..........................none -2024-08-07 16:42:40 - threadFactory...................internal -2024-08-07 16:42:40 - transactionIsolation............default -2024-08-07 16:42:40 - username........................"sa" -2024-08-07 16:42:40 - validationTimeout...............5000 -2024-08-07 16:42:40 - HikariPool-1 - Starting... -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: accepted socket from [192.168.5.4:64573] -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 84 -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:40 - connectionId=rmi://192.168.5.4 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:42:40 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 16:42:40 - HikariPool-1 - Start completed. -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:40 - [javax.management.remote.rmi.RMIConnectionImpl@4574706a: connectionId=rmi://192.168.5.4 1] closing. -2024-08-07 16:42:40 - [javax.management.remote.rmi.RMIConnectionImpl@4574706a: connectionId=rmi://192.168.5.4 1] closed. -2024-08-07 16:42:40 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 16:42:40 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 16:42:40 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:42:40 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 16:42:40 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:42:40 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 16:42:40 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 16:42:40 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 16:42:40 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 16:42:40 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 16:42:40 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@3355168] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@3355168] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@3355168] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@3355168] to [STARTING] -2024-08-07 16:42:40 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@3355168] to [STARTED] -2024-08-07 16:42:40 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:42:40 - Filter 'requestContextFilter' configured for use -2024-08-07 16:42:40 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 16:42:40 - Filter 'characterEncodingFilter' configured for use -2024-08-07 16:42:40 - Filter 'formContentFilter' configured for use -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:42:40 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:42:40 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:42:40 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 16:42:40 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.mapper.MapperListener@47fb7ec9] to [STARTING_PREP] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.mapper.MapperListener@47fb7ec9] to [STARTING] -2024-08-07 16:42:40 - Registered host [localhost] -2024-08-07 16:42:40 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 16:42:40 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 16:42:40 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 16:42:40 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 16:42:40 - Setting state for [org.apache.catalina.mapper.MapperListener@47fb7ec9] to [STARTED] -2024-08-07 16:42:40 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 16:42:40 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 16:42:40 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 16:42:40 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:42:40 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:42:40 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 16:42:40 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 16:42:40 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 16:42:40 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:42:40 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:42:40 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 16:42:40 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 16:42:40 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 16:42:40 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 16:42:40 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 16:42:40 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 16:42:40 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 16:42:40 - HHH000206: 'hibernate.properties' not found -2024-08-07 16:42:40 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 16:42:40 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 16:42:40 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 16:42:40 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 16:42:40 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 16:42:40 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 16:42:40 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 16:42:40 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 16:42:40 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 16:42:40 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 16:42:40 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 16:42:40 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 16:42:40 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 16:42:40 - HHH000026: Second-level cache disabled -2024-08-07 16:42:40 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 16:42:40 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 16:42:40 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 16:42:40 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 16:42:40 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 16:42:40 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 16:42:40 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 16:42:40 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 16:42:40 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 16:42:40 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 16:42:40 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 16:42:40 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 16:42:40 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 16:42:40 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 16:42:40 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:42:40 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:42:40 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:42:40 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 16:42:40 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 16:42:40 - Adding type registration image -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 16:42:40 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 16:42:40 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 16:42:40 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 16:42:40 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 16:42:40 - Adding type registration short -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 16:42:40 - Adding type registration short -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 16:42:40 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 16:42:40 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 16:42:40 - Adding type registration int -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 16:42:40 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 16:42:40 - Adding type registration long -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 16:42:40 - Adding type registration long -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 16:42:40 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 16:42:40 - Adding type registration float -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 16:42:40 - Adding type registration float -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 16:42:40 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 16:42:40 - Adding type registration double -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 16:42:40 - Adding type registration double -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 16:42:40 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 16:42:40 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 16:42:40 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 16:42:40 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 16:42:40 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 16:42:40 - Adding type registration character -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 16:42:40 - Adding type registration char -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 16:42:40 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 16:42:40 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 16:42:40 - Adding type registration string -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 16:42:40 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 16:42:40 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 16:42:40 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 16:42:40 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 16:42:40 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 16:42:40 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 16:42:40 - Adding type registration text -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 16:42:40 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 16:42:40 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 16:42:40 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 16:42:40 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:42:40 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:42:40 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 16:42:40 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 16:42:40 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 16:42:40 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 16:42:40 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 16:42:40 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 16:42:40 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 16:42:40 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 16:42:40 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 16:42:40 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 16:42:40 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 16:42:40 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 16:42:40 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 16:42:40 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 16:42:40 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 16:42:40 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 16:42:40 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 16:42:40 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 16:42:40 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:42:40 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:42:40 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 16:42:40 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 16:42:40 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 16:42:40 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 16:42:40 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 16:42:40 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 16:42:40 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 16:42:40 - Adding type registration date -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 16:42:40 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 16:42:40 - Adding type registration time -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 16:42:40 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 16:42:40 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 16:42:40 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 16:42:40 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 16:42:40 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 16:42:40 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 16:42:40 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 16:42:40 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 16:42:40 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 16:42:40 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 16:42:40 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 16:42:40 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:42:40 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:42:40 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:42:40 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 16:42:40 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 16:42:40 - Adding type registration class -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 16:42:40 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 16:42:40 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 16:42:40 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 16:42:40 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 16:42:40 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 16:42:40 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 16:42:40 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 16:42:40 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 16:42:40 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 16:42:40 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 16:42:40 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 16:42:40 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 16:42:40 - Adding type registration url -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 16:42:40 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 16:42:40 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-07 16:42:40 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 16:42:40 - Adding type registration object -> org.hibernate.type.JavaObjectType@727956bb -2024-08-07 16:42:40 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@727956bb -2024-08-07 16:42:40 - Adding type registration null -> org.hibernate.type.NullType@1fa18f87 -2024-08-07 16:42:40 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@1d9bd1d6 -2024-08-07 16:42:40 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@18ac4af6 -2024-08-07 16:42:40 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@117fb9ba -2024-08-07 16:42:40 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@2b1d1a5 -2024-08-07 16:42:40 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@41e7a544 -2024-08-07 16:42:40 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@3b66ac74 -2024-08-07 16:42:40 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@573870cb -2024-08-07 16:42:40 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@5b88af70 -2024-08-07 16:42:40 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@2c154508] into BootstrapContext; was [null] -2024-08-07 16:42:40 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@2c154508) [was null] -2024-08-07 16:42:40 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@5c3710b3] into BootstrapContext; was [null] -2024-08-07 16:42:40 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@8b1202a] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@34bddf43] -2024-08-07 16:42:40 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 16:42:40 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 16:42:40 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 16:42:40 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 16:42:40 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-07 16:42:40 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 16:42:40 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 16:42:40 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@2c154508] -2024-08-07 16:42:40 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@2c154508] -2024-08-07 16:42:40 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 16:42:40 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 16:42:40 - JDBC version : 4.2 -2024-08-07 16:42:40 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 16:42:40 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 16:42:40 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 16:42:40 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 16:42:40 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 16:42:40 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 16:42:40 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 16:42:40 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 16:42:40 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 16:42:40 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 16:42:40 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 16:42:40 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@714b6999] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@2e4d2232] -2024-08-07 16:42:40 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-07 16:42:40 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 16:42:40 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 16:42:40 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 16:42:40 - Import with entity name Action -2024-08-07 16:42:40 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 16:42:40 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:42:40 - Binding column: AnnotatedColumn() -2024-08-07 16:42:40 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:42:40 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:42:40 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:42:40 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 16:42:40 - building BasicValue for id -2024-08-07 16:42:40 - Skipping column re-registration: action.id -2024-08-07 16:42:40 - Building property id -2024-08-07 16:42:40 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:42:40 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:42:40 - Binding column: AnnotatedColumn() -2024-08-07 16:42:40 - Building property event -2024-08-07 16:42:40 - Binding column: AnnotatedColumn() -2024-08-07 16:42:40 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 16:42:40 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 16:42:40 - building BasicValue for sequence -2024-08-07 16:42:40 - Skipping column re-registration: action.sequence -2024-08-07 16:42:40 - Building property sequence -2024-08-07 16:42:40 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:42:40 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 16:42:40 - Import with entity name BillAction -2024-08-07 16:42:40 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 16:42:40 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:42:40 - Binding column: AnnotatedColumn() -2024-08-07 16:42:40 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:42:40 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:42:40 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:42:40 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 16:42:40 - building BasicValue for id -2024-08-07 16:42:40 - Skipping column re-registration: bill_action.id -2024-08-07 16:42:40 - Building property id -2024-08-07 16:42:40 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:42:40 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:42:40 - Binding column: AnnotatedColumn() -2024-08-07 16:42:40 - Building property action -2024-08-07 16:42:40 - Binding column: AnnotatedColumn() -2024-08-07 16:42:40 - MetadataSourceProcessor property price with lazy=false -2024-08-07 16:42:40 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 16:42:40 - building BasicValue for price -2024-08-07 16:42:40 - Skipping column re-registration: bill_action.price -2024-08-07 16:42:40 - Building property price -2024-08-07 16:42:40 - Binding column: AnnotatedColumn() -2024-08-07 16:42:40 - MetadataSourceProcessor property title with lazy=false -2024-08-07 16:42:40 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 16:42:40 - building BasicValue for title -2024-08-07 16:42:40 - Skipping column re-registration: bill_action.title -2024-08-07 16:42:40 - Building property title -2024-08-07 16:42:40 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:42:40 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 16:42:40 - Import with entity name MemberAction -2024-08-07 16:42:40 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 16:42:40 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:42:40 - Binding column: AnnotatedColumn() -2024-08-07 16:42:40 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:42:40 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:42:40 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:42:40 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 16:42:40 - building BasicValue for id -2024-08-07 16:42:40 - Skipping column re-registration: member_action.id -2024-08-07 16:42:40 - Building property id -2024-08-07 16:42:40 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:42:40 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 16:42:40 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:42:40 - Binding column: AnnotatedColumn() -2024-08-07 16:42:40 - Building property action -2024-08-07 16:42:40 - Binding column: AnnotatedColumn() -2024-08-07 16:42:40 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 16:42:40 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 16:42:40 - building BasicValue for memberGroupId -2024-08-07 16:42:40 - Skipping column re-registration: member_action.member_group_id -2024-08-07 16:42:40 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 16:42:40 - Building property memberGroupId -2024-08-07 16:42:40 - Binding column: AnnotatedColumn() -2024-08-07 16:42:40 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 16:42:40 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 16:42:40 - building BasicValue for memberName -2024-08-07 16:42:40 - Skipping column re-registration: member_action.member_name -2024-08-07 16:42:40 - Building property memberName -2024-08-07 16:42:40 - Binding column: AnnotatedColumn() -2024-08-07 16:42:40 - MetadataSourceProcessor property status with lazy=false -2024-08-07 16:42:40 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 16:42:40 - building BasicValue for status -2024-08-07 16:42:40 - Skipping column re-registration: member_action.status -2024-08-07 16:42:40 - Building property status -2024-08-07 16:42:40 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:42:40 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 16:42:40 - Import with entity name Event -2024-08-07 16:42:40 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 16:42:40 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:42:40 - Binding column: AnnotatedColumn() -2024-08-07 16:42:40 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:42:40 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:42:40 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:42:40 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 16:42:40 - building BasicValue for id -2024-08-07 16:42:40 - Skipping column re-registration: event.id -2024-08-07 16:42:40 - Building property id -2024-08-07 16:42:40 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:42:40 - Binding column: AnnotatedColumn() -2024-08-07 16:42:40 - MetadataSourceProcessor property name with lazy=false -2024-08-07 16:42:40 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 16:42:40 - building BasicValue for name -2024-08-07 16:42:40 - Skipping column re-registration: event.name -2024-08-07 16:42:40 - Building property name -2024-08-07 16:42:40 - Binding column: AnnotatedColumn() -2024-08-07 16:42:40 - MetadataSourceProcessor property password with lazy=false -2024-08-07 16:42:40 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 16:42:40 - building BasicValue for password -2024-08-07 16:42:40 - Skipping column re-registration: event.password -2024-08-07 16:42:40 - Building property password -2024-08-07 16:42:40 - Binding column: AnnotatedColumn() -2024-08-07 16:42:40 - MetadataSourceProcessor property token with lazy=false -2024-08-07 16:42:40 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 16:42:40 - building BasicValue for token -2024-08-07 16:42:40 - Skipping column re-registration: event.token -2024-08-07 16:42:40 - Building property token -2024-08-07 16:42:40 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 16:42:40 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 16:42:40 - Import with entity name EventStep -2024-08-07 16:42:40 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 16:42:40 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:42:40 - Binding column: AnnotatedColumn() -2024-08-07 16:42:40 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:42:40 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:42:40 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:42:40 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 16:42:40 - building BasicValue for id -2024-08-07 16:42:40 - Skipping column re-registration: event_step.id -2024-08-07 16:42:40 - Building property id -2024-08-07 16:42:40 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:42:40 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:42:40 - Binding column: AnnotatedColumn() -2024-08-07 16:42:40 - Building property event -2024-08-07 16:42:40 - Binding column: AnnotatedColumn() -2024-08-07 16:42:40 - MetadataSourceProcessor property name with lazy=false -2024-08-07 16:42:40 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 16:42:40 - building BasicValue for name -2024-08-07 16:42:40 - Skipping column re-registration: event_step.name -2024-08-07 16:42:40 - Building property name -2024-08-07 16:42:40 - Binding column: AnnotatedColumn() -2024-08-07 16:42:40 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 16:42:40 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 16:42:40 - building BasicValue for sequence -2024-08-07 16:42:40 - Skipping column re-registration: event_step.sequence -2024-08-07 16:42:40 - Building property sequence -2024-08-07 16:42:40 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 16:42:40 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:42:40 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 16:42:40 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:42:40 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 16:42:40 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 16:42:40 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:42:40 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 16:42:40 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 16:42:40 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 16:42:40 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:42:40 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 16:42:40 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 16:42:40 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 16:42:40 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:42:40 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 16:42:40 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 16:42:40 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 16:42:40 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 16:42:40 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 16:42:40 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 16:42:40 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 16:42:40 - Building session factory -2024-08-07 16:42:40 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 16:42:40 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 16:42:40 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:42:40 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@3050d479, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@5c7a06ec, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.7703986284896519583, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=61416, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.7703986284896519583, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@697b48e4, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 16:42:40 - Session factory constructed with filter configurations : {} -2024-08-07 16:42:40 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:42:40 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:42:40 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:42:40 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:42:40 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:42:40 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:42:40 - Loaded expression factory via original TCCL -2024-08-07 16:42:40 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:42:40 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:42:40 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:42:40 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:42:40 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:42:40 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:42:40 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:42:40 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:42:40 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:42:40 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:42:40 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:42:40 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:42:40 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:42:40 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:42:40 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:42:40 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:42:40 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@4d9cf71d] under count; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@eb6ccbc] under every; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@5eae392d] under any; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6ad0cd43] under sinh; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7de43652] under cosh; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7fe0ca60] under tanh; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@fdf029a] under pi; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@63896cf7] under log; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 16:42:40 - Registering alternate key : length -> character_length -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@2ba0b95f] under position; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@7c8a91e2] under overlay; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@34ff08c6] under trim; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@37f627d0] under cast; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2a7392a3] under collate; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@5382a35f] under extract; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@4a7c72af] under ifnull; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@1b53e6fc] under pad; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@4add4dff] under str; prior registration was null -2024-08-07 16:42:40 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 16:42:40 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@2fccd98f] under format; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@575fe6da] under timestampadd; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@7d7c05fa] under timestampdiff; prior registration was null -2024-08-07 16:42:40 - Registering alternate key : dateadd -> timestampadd -2024-08-07 16:42:40 - Registering alternate key : datediff -> timestampdiff -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@34d3409d] under current_date; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16732340] under current_time; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@38e052b2] under current_timestamp; prior registration was null -2024-08-07 16:42:40 - Registering alternate key : current date -> current_date -2024-08-07 16:42:40 - Registering alternate key : current time -> current_time -2024-08-07 16:42:40 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7fa68ff4] under local_date; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@515fff35] under local_time; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5eb9bf7d] under local_datetime; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@64f613da] under offset_datetime; prior registration was null -2024-08-07 16:42:40 - Registering alternate key : local date -> local_date -2024-08-07 16:42:40 - Registering alternate key : local time -> local_time -2024-08-07 16:42:40 - Registering alternate key : local datetime -> local_datetime -2024-08-07 16:42:40 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2f64f99f] under instant; prior registration was null -2024-08-07 16:42:40 - Registering alternate key : current_instant -> instant -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@4e210016] under sql; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@2fc40856] under count; prior registration was org.hibernate.dialect.function.CountFunction@4d9cf71d -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@57ed8f95] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@fdf029a -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1c25deb0] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 16:42:40 - Registering alternate key : day -> day_of_month -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@515fff35 -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@5eb9bf7d -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@30e15628] under trunc; prior registration was null -2024-08-07 16:42:40 - Registering alternate key : truncate -> trunc -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@37ab1b10] under date_trunc; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 16:42:40 - Registering alternate key : chr -> char -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@55d87b73] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@2ba0b95f -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@618e7761] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 16:42:40 - Registering alternate key : every -> bool_and -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 16:42:40 - Registering alternate key : any -> bool_or -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@5b643d6e] under format; prior registration was org.hibernate.dialect.function.FormatFunction@2fccd98f -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@38c1b1a7] under listagg; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@cbc3bf3] under mode; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@31f9f9b3] under percentile_cont; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@7730da00] under percentile_disc; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@3085befb] under rank; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@62264d4f] under dense_rank; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@2bc0603f] under percent_rank; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@4ed19540] under cume_dist; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@3163e03b] under array; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@6aa18912] under array_list; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@440d2d64] under array_agg; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@4965454c] under array_position; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@4e1104f4] under array_positions; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@15c3585] under array_positions_list; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5b86f4cb] under array_length; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@5f14590c] under array_concat; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@1ce8084a] under array_prepend; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@61d24347] under array_append; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@1e09c0b] under array_contains; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@4880a9d] under array_contains_nullable; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@2119b989] under array_overlaps; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@73905dff] under array_overlaps_nullable; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@40d04cf8] under array_get; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@7304ca87] under array_set; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@3a012678] under array_remove; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@329efc61] under array_remove_index; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@32f45e15] under array_slice; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@4e481512] under array_replace; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1ba98508] under array_trim; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@583b4af4] under array_fill; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@72c175f1] under array_fill_list; prior registration was null -2024-08-07 16:42:40 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@27691ee8] under array_to_string; prior registration was null -2024-08-07 16:42:40 - abs(NUMERIC arg) -2024-08-07 16:42:40 - Double acos(NUMERIC arg) -2024-08-07 16:42:40 - Boolean any(BOOLEAN predicate) -2024-08-07 16:42:40 - array( ... ) -2024-08-07 16:42:40 - array_agg(arg) -2024-08-07 16:42:40 - array_append( ... ) -2024-08-07 16:42:40 - array_concat( ... ) -2024-08-07 16:42:40 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 16:42:40 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 16:42:40 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 16:42:40 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 16:42:40 - array_get(ARRAY array, INTEGER index) -2024-08-07 16:42:40 - Integer array_length(ARRAY array) -2024-08-07 16:42:40 - array_list( ... ) -2024-08-07 16:42:40 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 16:42:40 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 16:42:40 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 16:42:40 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 16:42:40 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 16:42:40 - array_prepend( ... ) -2024-08-07 16:42:40 - array_remove( ... ) -2024-08-07 16:42:40 - array_remove_index( ... ) -2024-08-07 16:42:40 - array_replace( ... ) -2024-08-07 16:42:40 - array_set( ... ) -2024-08-07 16:42:40 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 16:42:40 - String array_to_string( ... ) -2024-08-07 16:42:40 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 16:42:40 - Integer ascii(STRING arg) -2024-08-07 16:42:40 - Double asin(NUMERIC arg) -2024-08-07 16:42:40 - Double atan(NUMERIC arg) -2024-08-07 16:42:40 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 16:42:40 - avg(NUMERIC arg) -2024-08-07 16:42:40 - bit_and(arg) -2024-08-07 16:42:40 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 16:42:40 - bit_or(arg) -2024-08-07 16:42:40 - bitand(arg0, arg1) -2024-08-07 16:42:40 - bitnot(arg) -2024-08-07 16:42:40 - bitor(arg0, arg1) -2024-08-07 16:42:40 - bitxor(arg0, arg1) -2024-08-07 16:42:40 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 16:42:40 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 16:42:40 - cast(arg as Type) -2024-08-07 16:42:40 - ceiling(NUMERIC arg) -2024-08-07 16:42:40 - Character char(INTEGER arg) -2024-08-07 16:42:40 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 16:42:40 - Character chr(INTEGER arg) -2024-08-07 16:42:40 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 16:42:40 - String collate(STRING string as COLLATION collation) -2024-08-07 16:42:40 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 16:42:40 - Double cos(NUMERIC arg) -2024-08-07 16:42:40 - Double cosh(NUMERIC arg) -2024-08-07 16:42:40 - Double cot(NUMERIC arg) -2024-08-07 16:42:40 - Long count([distinct ]{arg|*}) -2024-08-07 16:42:40 - Double cume_dist([arg0[, ...]]) -2024-08-07 16:42:40 - Date curdate() -2024-08-07 16:42:40 - Date current date -2024-08-07 16:42:40 - Time current time -2024-08-07 16:42:40 - Timestamp current timestamp -2024-08-07 16:42:40 - Date current_date -2024-08-07 16:42:40 - Instant current_instant -2024-08-07 16:42:40 - Time current_time -2024-08-07 16:42:40 - Timestamp current_timestamp -2024-08-07 16:42:40 - Time curtime() -2024-08-07 16:42:40 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 16:42:40 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 16:42:40 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 16:42:40 - Integer day(DATE arg) -2024-08-07 16:42:40 - Integer day_of_month(DATE arg) -2024-08-07 16:42:40 - Integer day_of_week(DATE arg) -2024-08-07 16:42:40 - Integer day_of_year(DATE arg) -2024-08-07 16:42:40 - String dayname(DATE arg) -2024-08-07 16:42:40 - Double degrees(NUMERIC arg) -2024-08-07 16:42:40 - Long dense_rank([arg0[, ...]]) -2024-08-07 16:42:40 - Boolean every(BOOLEAN predicate) -2024-08-07 16:42:40 - Double exp(NUMERIC arg) -2024-08-07 16:42:40 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 16:42:40 - first_valueANY value -2024-08-07 16:42:40 - floor(NUMERIC arg) -2024-08-07 16:42:40 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 16:42:40 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 16:42:40 - Integer hour(TIME arg) -2024-08-07 16:42:40 - ifnull(arg0, arg1) -2024-08-07 16:42:40 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 16:42:40 - Instant instant -2024-08-07 16:42:40 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 16:42:40 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 16:42:40 - last_valueANY value -2024-08-07 16:42:40 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 16:42:40 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 16:42:40 - String left(STRING string, INTEGER length) -2024-08-07 16:42:40 - Integer length(STRING_OR_CLOB arg) -2024-08-07 16:42:40 - String listagg(STRING arg0, STRING arg1) -2024-08-07 16:42:40 - Double ln(NUMERIC arg) -2024-08-07 16:42:40 - LocalDate local date -2024-08-07 16:42:40 - LocalDateTime local datetime -2024-08-07 16:42:40 - LocalTime local time -2024-08-07 16:42:40 - LocalDate local_date -2024-08-07 16:42:40 - LocalDateTime local_datetime -2024-08-07 16:42:40 - LocalTime local_time -2024-08-07 16:42:40 - Time localtime -2024-08-07 16:42:40 - Timestamp localtimestamp -2024-08-07 16:42:40 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 16:42:40 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 16:42:40 - Double log10(NUMERIC arg) -2024-08-07 16:42:40 - String lower(STRING string) -2024-08-07 16:42:40 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 16:42:40 - String ltrim(STRING string) -2024-08-07 16:42:40 - max(COMPARABLE arg) -2024-08-07 16:42:40 - Double median(NUMERIC arg) -2024-08-07 16:42:40 - Integer microsecond(TIME arg) -2024-08-07 16:42:40 - min(COMPARABLE arg) -2024-08-07 16:42:40 - Integer minute(TIME arg) -2024-08-07 16:42:40 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 16:42:40 - mode() -2024-08-07 16:42:40 - Integer month(DATE arg) -2024-08-07 16:42:40 - String monthname(DATE arg) -2024-08-07 16:42:40 - Timestamp now() -2024-08-07 16:42:40 - nth_valueANY value, INTEGER nth -2024-08-07 16:42:40 - nullif(arg0, arg1) -2024-08-07 16:42:40 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 16:42:40 - OffsetDateTime offset datetime -2024-08-07 16:42:40 - OffsetDateTime offset_datetime -2024-08-07 16:42:40 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 16:42:40 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 16:42:40 - Double percent_rank([arg0[, ...]]) -2024-08-07 16:42:40 - percentile_cont(NUMERIC arg) -2024-08-07 16:42:40 - percentile_disc(NUMERIC arg) -2024-08-07 16:42:40 - Double pi -2024-08-07 16:42:40 - Integer position(STRING pattern in STRING string) -2024-08-07 16:42:40 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 16:42:40 - Integer quarter(DATE arg) -2024-08-07 16:42:40 - Double radians(NUMERIC arg) -2024-08-07 16:42:40 - Double rand([INTEGER seed]) -2024-08-07 16:42:40 - Long rank([arg0[, ...]]) -2024-08-07 16:42:40 - String repeat(STRING string, INTEGER times) -2024-08-07 16:42:40 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 16:42:40 - String right(STRING string, INTEGER length) -2024-08-07 16:42:40 - round(NUMERIC number[, INTEGER places]) -2024-08-07 16:42:40 - Long row_number() -2024-08-07 16:42:40 - Long rownum() -2024-08-07 16:42:40 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 16:42:40 - String rtrim(STRING string) -2024-08-07 16:42:40 - Integer second(TIME arg) -2024-08-07 16:42:40 - Integer sign(NUMERIC arg) -2024-08-07 16:42:40 - Double sin(NUMERIC arg) -2024-08-07 16:42:40 - Double sinh(NUMERIC arg) -2024-08-07 16:42:40 - String soundex(arg) -2024-08-07 16:42:40 - String space(INTEGER arg) -2024-08-07 16:42:40 - Object sql -2024-08-07 16:42:40 - Double sqrt(NUMERIC arg) -2024-08-07 16:42:40 - Double stddev_pop(NUMERIC arg) -2024-08-07 16:42:40 - Double stddev_samp(NUMERIC arg) -2024-08-07 16:42:40 - String str(arg) -2024-08-07 16:42:40 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 16:42:40 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 16:42:40 - sum(arg) -2024-08-07 16:42:40 - Timestamp sysdate -2024-08-07 16:42:40 - Double tan(NUMERIC arg) -2024-08-07 16:42:40 - Double tanh(NUMERIC arg) -2024-08-07 16:42:40 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 16:42:40 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 16:42:40 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 16:42:40 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 16:42:40 - trunc( ... ) -2024-08-07 16:42:40 - truncate( ... ) -2024-08-07 16:42:40 - String upper(STRING string) -2024-08-07 16:42:40 - Double var_pop(NUMERIC arg) -2024-08-07 16:42:40 - Double var_samp(NUMERIC arg) -2024-08-07 16:42:40 - Integer week(DATE arg) -2024-08-07 16:42:40 - Integer year(DATE arg) -2024-08-07 16:42:40 - Starting QueryInterpretationCache(2048) -2024-08-07 16:42:40 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:42:40 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 16:42:40 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 16:42:40 - Configured EntityCopyObserver strategy: disallow -2024-08-07 16:42:40 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:42:40 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:42:40 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:42:40 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 16:42:40 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:42:40 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:42:40 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 16:42:40 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:42:40 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:42:40 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 16:42:40 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:42:40 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:42:40 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 16:42:40 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:42:40 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:42:40 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 16:42:40 - Starting post-init callbacks -2024-08-07 16:42:40 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 16:42:40 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 16:42:40 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:42:40 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 16:42:40 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 16:42:40 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 16:42:40 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 16:42:40 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 16:42:40 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 84 -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:40 - connectionId=rmi://192.168.5.4 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:40 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:40 - [javax.management.remote.rmi.RMIConnectionImpl@64bad5dd: connectionId=rmi://192.168.5.4 2] closing. -2024-08-07 16:42:40 - [javax.management.remote.rmi.RMIConnectionImpl@64bad5dd: connectionId=rmi://192.168.5.4 2] closed. -2024-08-07 16:42:40 - Created new SQL alias : ba1_0 -2024-08-07 16:42:40 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 16:42:40 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@ae85aad] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 16:42:40 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 16:42:40 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 16:42:40 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 16:42:40 - Version select: select id from bill_action where id=? -2024-08-07 16:42:40 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 16:42:40 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 16:42:40 - Delete (0): delete from bill_action where id=? -2024-08-07 16:42:40 - Created new SQL alias : ma1_0 -2024-08-07 16:42:40 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 16:42:40 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6c75c5e8] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:42:40 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 16:42:40 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 16:42:40 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 16:42:40 - Version select: select id from member_action where id=? -2024-08-07 16:42:40 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 16:42:40 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 16:42:40 - Delete (0): delete from member_action where id=? -2024-08-07 16:42:40 - Created new SQL alias : e1_0 -2024-08-07 16:42:40 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 16:42:40 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 16:42:40 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 16:42:40 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 16:42:40 - Version select: select id from event where id=? -2024-08-07 16:42:40 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 16:42:40 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 16:42:40 - Delete (0): delete from event where id=? -2024-08-07 16:42:40 - Created new SQL alias : a1_0 -2024-08-07 16:42:40 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 16:42:40 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7b1b1784] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 16:42:40 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 16:42:40 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 16:42:40 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 16:42:40 - Version select: select id from action where id=? -2024-08-07 16:42:40 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 16:42:40 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 16:42:40 - Delete (0): delete from action where id=? -2024-08-07 16:42:40 - Created new SQL alias : es1_0 -2024-08-07 16:42:40 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 16:42:40 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@58e0d1ac] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 16:42:40 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 16:42:40 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 16:42:40 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 16:42:40 - Version select: select id from event_step where id=? -2024-08-07 16:42:40 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 16:42:40 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 16:42:40 - Delete (0): delete from event_step where id=? -2024-08-07 16:42:40 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 16:42:40 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@714b6999] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@1b1d93e9] -2024-08-07 16:42:40 - Checking 0 named HQL queries -2024-08-07 16:42:40 - Checking 0 named SQL queries -2024-08-07 16:42:41 - - drop table if exists action cascade -2024-08-07 16:42:41 - - drop table if exists bill_action cascade -2024-08-07 16:42:41 - - drop table if exists event cascade -2024-08-07 16:42:41 - - drop table if exists event_step cascade -2024-08-07 16:42:41 - - drop table if exists member_action cascade -2024-08-07 16:42:41 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 16:42:41 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 16:42:41 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 16:42:41 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 16:42:41 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 16:42:41 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 16:42:41 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 16:42:41 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 16:42:41 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 16:42:41 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@3984e2b3 -2024-08-07 16:42:41 - Registering SessionFactory: 8783382f-9260-4923-b5bf-045b0e3323ff (<unnamed>) -2024-08-07 16:42:41 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 16:42:41 - Instantiated SessionFactory -2024-08-07 16:42:41 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'actionService' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 16:42:41 - Initializing JpaMetamodelMappingContext… -2024-08-07 16:42:41 - Finished initializing JpaMetamodelMappingContext -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - Statistics initialized [enabled=false] -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 16:42:41 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 16:42:41 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 16:42:41 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:42:41 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - Looking up named query BillAction.findByAction_Event -2024-08-07 16:42:41 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:42:41 - Did not find named query BillAction.findByAction_Event -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - Looking up named query BillAction.findByAction_Id -2024-08-07 16:42:41 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:42:41 - Did not find named query BillAction.findByAction_Id -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 16:42:41 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:42:41 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 16:42:41 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:42:41 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 16:42:41 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:42:41 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 16:42:41 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 16:42:41 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:42:41 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 16:42:41 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:42:41 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 16:42:41 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 16:42:41 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 16:42:41 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 16:42:41 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:42:41 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 16:42:41 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:42:41 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(742532448373041)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(742532448373041)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(742532448373041)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(742532448373041)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(742532448373041).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:42:41 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:42:41 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 16:42:41 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:42:41 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:42:41 - Looking up named query MemberAction.findByAction -2024-08-07 16:42:41 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:42:41 - Did not find named query MemberAction.findByAction -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - Looking up named query Event.findByToken -2024-08-07 16:42:41 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:42:41 - Did not find named query Event.findByToken -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 16:42:41 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 16:42:41 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:42:41 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:42:41 - Did not find named query Action.findLastByEvent.count -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 16:42:41 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:42:41 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:42:41 - Looking up named query Action.findByIdAndEvent -2024-08-07 16:42:41 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:42:41 - Did not find named query Action.findByIdAndEvent -2024-08-07 16:42:41 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:42:41 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 16:42:41 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 16:42:41 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 16:42:41 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'eventService' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 16:42:41 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 16:42:41 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 16:42:41 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 16:42:41 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 16:42:41 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 16:42:41 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 16:42:41 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:42:41 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 16:42:41 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 16:42:41 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 16:42:41 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'actionController' -2024-08-07 16:42:41 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 16:42:41 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'eventController' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'authService' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 16:42:41 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 16:42:41 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 16:42:41 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 16:42:41 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 16:42:41 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:42:41 - Loaded expression factory via original TCCL -2024-08-07 16:42:41 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 16:42:41 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 16:42:41 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:42:41 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 16:42:41 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:42:41 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:42:41 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:42:41 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:42:41 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:42:41 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:42:41 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:42:41 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:42:41 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:42:41 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:42:41 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'error' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 16:42:41 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 16:42:41 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 16:42:41 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 16:42:41 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 16:42:41 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:42:41 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:42:41 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 16:42:41 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:42:41 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:42:41 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 16:42:41 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:42:41 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:42:41 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:42:41 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 16:42:41 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 16:42:41 - - s.h.p.EventController: - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) -2024-08-07 16:42:41 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 16:42:41 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 16:42:41 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 16:42:41 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:42:41 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 16:42:41 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:42:41 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:42:41 - 'beanNameHandlerMapping' {} -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 16:42:41 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:42:41 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 16:42:41 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 16:42:41 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:42:41 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:42:41 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 16:42:41 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:42:41 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 16:42:41 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 16:42:41 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 16:42:41 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:42:41 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:42:41 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:42:41 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 16:42:41 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:42:41 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 16:42:41 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 16:42:41 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 16:42:41 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 16:42:41 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 84 -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - [javax.management.remote.rmi.RMIConnectionImpl@10e7cd05: connectionId=rmi://192.168.5.4 3] closing. -2024-08-07 16:42:41 - [javax.management.remote.rmi.RMIConnectionImpl@10e7cd05: connectionId=rmi://192.168.5.4 3] closed. -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 16:42:41 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 16:42:41 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 16:42:41 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:42:41 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 16:42:41 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 16:42:41 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 16:42:41 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 16:42:41 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 16:42:41 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:42:41 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 16:42:41 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:42:41 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 16:42:41 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 16:42:41 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 16:42:41 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 16:42:41 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 16:42:41 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 16:42:41 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 16:42:41 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 16:42:41 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 16:42:41 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 16:42:41 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 16:42:41 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 16:42:41 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 16:42:41 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:42:41 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 16:42:41 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 16:42:41 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 16:42:41 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 16:42:41 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 16:42:41 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 16:42:41 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 16:42:41 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 16:42:41 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 16:42:41 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 16:42:41 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 16:42:41 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:42:41 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:42:41 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 16:42:41 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 16:42:41 - Using SLF4J as the default logging framework -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 16:42:41 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 16:42:41 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 16:42:41 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 16:42:41 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 16:42:41 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 16:42:41 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 16:42:41 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 16:42:41 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 16:42:41 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 16:42:41 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 16:42:41 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 16:42:41 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 16:42:41 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 16:42:41 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 16:42:41 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 16:42:41 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 16:42:41 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 16:42:41 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 16:42:41 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:42:41 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:42:41 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 16:42:41 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 16:42:41 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 16:42:41 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:42:41 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:42:41 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 16:42:41 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 16:42:41 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 16:42:41 - Registering beans for JMX exposure on startup -2024-08-07 16:42:41 - Auto-detecting user-defined JMX MBeans -2024-08-07 16:42:41 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 16:42:41 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 16:42:41 - Starting beans in phase -2147483647 -2024-08-07 16:42:41 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 16:42:41 - Starting beans in phase 2147481599 -2024-08-07 16:42:41 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 16:42:41 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 16:42:41 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 16:42:41 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 16:42:41 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 16:42:41 - Successfully started bean 'webServerStartStop' -2024-08-07 16:42:41 - Starting beans in phase 2147482623 -2024-08-07 16:42:41 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 16:42:41 - Starting beans in phase 2147483647 -2024-08-07 16:42:41 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 16:42:41 - Started HaengdongApplication in 2.186 seconds (process running for 2.388) -2024-08-07 16:42:41 - Application availability state LivenessState changed to CORRECT -2024-08-07 16:42:41 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: (port 64572) connection closed -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64573,localport=64572] -2024-08-07 16:42:41 - RMI TCP Connection(1)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64573,localport=64572] -2024-08-07 16:42:41 - RMI TCP Connection(2)-192.168.5.4: accepted socket from [192.168.5.4:64574] -2024-08-07 16:42:41 - RMI TCP Connection(2)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: accepted socket from [192.168.5.4:64575] -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: (port 64572) op = 84 -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:42:41 - RMI TCP Connection(3)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - [javax.management.remote.rmi.RMIConnectionImpl@18341f9c: connectionId=rmi://192.168.5.4 4] closing. -2024-08-07 16:42:41 - [javax.management.remote.rmi.RMIConnectionImpl@18341f9c: connectionId=rmi://192.168.5.4 4] closed. -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: accepted socket from [192.168.5.4:64577] -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: accepted socket from [192.168.5.4:64576] -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 84 -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 84 -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - [javax.management.remote.rmi.RMIConnectionImpl@41cc9c22: connectionId=rmi://192.168.5.4 5] closing. -2024-08-07 16:42:41 - [javax.management.remote.rmi.RMIConnectionImpl@41cc9c22: connectionId=rmi://192.168.5.4 5] closed. -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 84 -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - [javax.management.remote.rmi.RMIConnectionImpl@de29844: connectionId=rmi://192.168.5.4 6] closing. -2024-08-07 16:42:41 - [javax.management.remote.rmi.RMIConnectionImpl@de29844: connectionId=rmi://192.168.5.4 6] closed. -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:41 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - [javax.management.remote.rmi.RMIConnectionImpl@7b99b520: connectionId=rmi://192.168.5.4 7] closing. -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - [javax.management.remote.rmi.RMIConnectionImpl@7b99b520: connectionId=rmi://192.168.5.4 7] closed. -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 84 -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:41 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 8 unwrapping query with defaultClassLoader. -2024-08-07 16:42:41 - connectionId=rmi://192.168.5.4 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - [javax.management.remote.rmi.RMIConnectionImpl@4cf9b11f: connectionId=rmi://192.168.5.4 8] closing. -2024-08-07 16:42:42 - [javax.management.remote.rmi.RMIConnectionImpl@4cf9b11f: connectionId=rmi://192.168.5.4 8] closed. -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 84 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - [javax.management.remote.rmi.RMIConnectionImpl@17971b10: connectionId=rmi://192.168.5.4 10] closing. -2024-08-07 16:42:42 - [javax.management.remote.rmi.RMIConnectionImpl@17971b10: connectionId=rmi://192.168.5.4 10] closed. -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 82 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 84 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 11 unwrapping query with defaultClassLoader. -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 16:42:42 - Fetching JDBC Connection from DataSource -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 84 -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:42 - Fetching JDBC Connection from DataSource -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:42 - RMI TCP Connection(5)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - [javax.management.remote.rmi.RMIConnectionImpl@75c7918b: connectionId=rmi://192.168.5.4 11] closing. -2024-08-07 16:42:42 - [javax.management.remote.rmi.RMIConnectionImpl@75c7918b: connectionId=rmi://192.168.5.4 11] closed. -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - [javax.management.remote.rmi.RMIConnectionImpl@6a617e64: connectionId=rmi://192.168.5.4 9] closing. -2024-08-07 16:42:42 - [javax.management.remote.rmi.RMIConnectionImpl@6a617e64: connectionId=rmi://192.168.5.4 9] closed. -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 84 -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 12 unwrapping query with defaultClassLoader. -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:42:42 - connectionId=rmi://192.168.5.4 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 16:42:42 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 16:42:42 - Initializing Servlet 'dispatcherServlet' -2024-08-07 16:42:42 - Detected StandardServletMultipartResolver -2024-08-07 16:42:42 - Detected AcceptHeaderLocaleResolver -2024-08-07 16:42:42 - Detected FixedThemeResolver -2024-08-07 16:42:42 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@4dd4a4e -2024-08-07 16:42:42 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@2799f9a -2024-08-07 16:42:42 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 16:42:42 - Completed initialization in 1 ms -2024-08-07 16:42:42 - RMI TCP Connection(4)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:42:42 - [javax.management.remote.rmi.RMIConnectionImpl@4ccb8566: connectionId=rmi://192.168.5.4 12] closing. -2024-08-07 16:42:42 - [javax.management.remote.rmi.RMIConnectionImpl@4ccb8566: connectionId=rmi://192.168.5.4 12] closed. -2024-08-07 16:43:10 - RMI TCP Connection(2)-192.168.5.4: (port 64572) connection closed -2024-08-07 16:43:10 - RMI TCP Connection(2)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64574,localport=64572] -2024-08-07 16:43:10 - RMI TCP Connection(2)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64574,localport=64572] -2024-08-07 16:43:10 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:43:10 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:43:11 - RMI TCP Connection(5)-192.168.5.4: (port 64572) connection closed -2024-08-07 16:43:11 - RMI TCP Connection(3)-192.168.5.4: (port 64572) connection closed -2024-08-07 16:43:11 - RMI TCP Connection(5)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64576,localport=64572] -2024-08-07 16:43:11 - RMI TCP Connection(4)-192.168.5.4: (port 64572) connection closed -2024-08-07 16:43:11 - RMI TCP Connection(3)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64575,localport=64572] -2024-08-07 16:43:11 - RMI TCP Connection(4)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64577,localport=64572] -2024-08-07 16:43:11 - RMI TCP Connection(5)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64576,localport=64572] -2024-08-07 16:43:11 - RMI TCP Connection(3)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64575,localport=64572] -2024-08-07 16:43:11 - RMI TCP Connection(4)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64577,localport=64572] -2024-08-07 16:43:12 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.7703986284896519583/conf/jaspic-providers.xml] -2024-08-07 16:43:12 - OPTIONS "/api/events", parameters={} -2024-08-07 16:43:12 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:43:12 - Reject: 'http://192.168.5.179:3000' origin is not allowed -2024-08-07 16:43:12 - Completed 403 FORBIDDEN -2024-08-07 16:43:40 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:43:40 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:44:05 - POST "/api/events", parameters={} -2024-08-07 16:44:05 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:44:05 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:44:05 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=234, password=2345]] -2024-08-07 16:44:05 - Found thread-bound EntityManager [SessionImpl(98243676<open>)] for JPA transaction -2024-08-07 16:44:05 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 16:44:05 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:44:05 - begin -2024-08-07 16:44:05 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@6f45f7e] -2024-08-07 16:44:05 - Found thread-bound EntityManager [SessionImpl(98243676<open>)] for JPA transaction -2024-08-07 16:44:05 - Participating in existing transaction -2024-08-07 16:44:05 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 16:44:05 - Executing identity-insert immediately -2024-08-07 16:44:05 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 16:44:05 - Initializer list is empty -2024-08-07 16:44:05 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@aba90a3 -2024-08-07 16:44:05 - Extracted JDBC value [0] - [1] -2024-08-07 16:44:05 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@7b04208 -2024-08-07 16:44:05 - Initiating transaction commit -2024-08-07 16:44:05 - Committing JPA transaction on EntityManager [SessionImpl(98243676<open>)] -2024-08-07 16:44:05 - committing -2024-08-07 16:44:05 - Processing flush-time cascades -2024-08-07 16:44:05 - Dirty checking collections -2024-08-07 16:44:05 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 16:44:05 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 16:44:05 - Listing entities: -2024-08-07 16:44:05 - server.haengdong.domain.event.Event{password=2345, name=234, id=1, token=ef1a1505-2f3e-44a7-818f-631b260aec56} -2024-08-07 16:44:05 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:44:05 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:44:05 - Writing [EventResponse[eventId=ef1a1505-2f3e-44a7-818f-631b260aec56]] -2024-08-07 16:44:05 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:44:05 - Completed 200 OK -2024-08-07 16:44:10 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:44:10 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:44:12 - OPTIONS "/api/events/ef1a1505-2f3e-44a7-818f-631b260aec56", parameters={} -2024-08-07 16:44:12 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:44:12 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:44:12 - OPTIONS "/api/events/ef1a1505-2f3e-44a7-818f-631b260aec56/actions", parameters={} -2024-08-07 16:44:12 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:44:12 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:44:12 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:44:12 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:44:12 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:44:12 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:44:12 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:44:12 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:44:12 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:44:12 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:44:12 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:44:12 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:44:12 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:44:12 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:44:40 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:44:40 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:44:41 - OPTIONS "/api/events/b904bab3-5861-4aa0-954e-3b0eb1bae747", parameters={} -2024-08-07 16:44:41 - OPTIONS "/api/events/b904bab3-5861-4aa0-954e-3b0eb1bae747/actions", parameters={} -2024-08-07 16:44:41 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:44:41 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:44:41 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:44:41 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-07 16:44:41 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:44:41 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:44:41 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:44:41 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-07 16:44:41 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:44:41 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-07 16:44:41 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:44:41 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:44:41 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:44:41 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:44:41 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:44:41 - Exiting from "ERROR" dispatch, status 500 -2024-08-07 16:45:10 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:45:10 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:45:30 - RMI TCP Connection(6)-192.168.5.4: accepted socket from [192.168.5.4:64580] -2024-08-07 16:45:30 - RMI TCP Connection(6)-192.168.5.4: (port 64572) op = 80 -2024-08-07 16:45:30 - RMI TCP Connection(6)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:45:30 - RMI TCP Connection(6)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:45:30 - RMI TCP Connection(6)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:45:30 - RMI TCP Connection(6)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:45:30 - RMI TCP Connection(6)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:45:40 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:45:40 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:45:45 - RMI TCP Connection(6)-192.168.5.4: (port 64572) connection closed -2024-08-07 16:45:45 - RMI TCP Connection(6)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64580,localport=64572] -2024-08-07 16:45:45 - RMI TCP Connection(6)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64580,localport=64572] -2024-08-07 16:46:10 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:46:10 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:46:40 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:46:40 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:47:10 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:47:10 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:47:40 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:47:40 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:48:10 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:48:10 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:48:12 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 16:48:12 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Wed Aug 07 16:42:39 KST 2024 -2024-08-07 16:48:13 - Stopping beans in phase 2147483647 -2024-08-07 16:48:13 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 16:48:13 - Stopping beans in phase 2147482623 -2024-08-07 16:48:13 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 16:48:13 - Stopping beans in phase 2147481599 -2024-08-07 16:48:13 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 16:48:13 - Stopping beans in phase -2147483647 -2024-08-07 16:48:13 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 16:48:13 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 16:48:13 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 16:48:13 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 16:48:13 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 16:48:13 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 16:48:13 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 16:48:13 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 16:48:13 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 16:48:13 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 16:48:13 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 16:48:13 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 16:48:13 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 16:48:13 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 16:48:13 - Unregistering JMX-exposed beans on shutdown -2024-08-07 16:48:13 - Unregistering JMX-exposed beans -2024-08-07 16:48:13 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 16:48:13 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 16:48:13 - HHH000031: Closing -2024-08-07 16:48:13 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@4a448898] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@1b1d93e9] -2024-08-07 16:48:13 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 16:48:13 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 16:48:13 - HikariPool-1 - Shutdown initiated... -2024-08-07 16:48:13 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:48:13 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:48:13 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:48:13 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:48:13 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:48:13 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:48:13 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:48:13 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:48:13 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:48:13 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:48:13 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:48:13 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 16:48:13 - HikariPool-1 - Shutdown completed. -2024-08-07 16:48:13 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 16:48:14 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 16:48:14 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 16:48:14 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:48:14 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:48:14 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:48:14 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:48:14 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:48:14 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:48:14 - Loaded expression factory via original TCCL -2024-08-07 16:48:14 - Starting HaengdongApplication using Java 17.0.12 with PID 61704 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 16:48:14 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 16:48:14 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 16:48:14 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 16:48:14 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-07 16:48:14 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 16:48:14 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:48:14 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 16:48:14 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:48:14 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:48:14 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:48:14 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:48:14 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:48:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 16:48:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 16:48:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 16:48:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 16:48:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 16:48:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 16:48:14 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 16:48:14 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 16:48:14 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 16:48:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 16:48:14 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 16:48:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 16:48:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 16:48:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 16:48:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 16:48:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 16:48:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 16:48:14 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 16:48:14 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 16:48:14 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 16:48:14 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 16:48:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 16:48:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 16:48:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 16:48:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 16:48:14 - Finished Spring Data repository scanning in 17 ms. Found 4 JPA repository interfaces. -2024-08-07 16:48:14 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 16:48:14 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 16:48:14 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 16:48:15 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 16:48:15 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 16:48:15 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 16:48:15 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 16:48:15 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 16:48:15 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 16:48:15 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 16:48:15 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 16:48:15 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@33e0c716] -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 16:48:15 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 16:48:15 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 16:48:15 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 16:48:15 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 16:48:15 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 16:48:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 16:48:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 16:48:15 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 16:48:15 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:48:15 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:48:15 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:48:15 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 16:48:15 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 16:48:15 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 16:48:15 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 16:48:15 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 16:48:15 - Tomcat initialized with port 8080 (http) -2024-08-07 16:48:15 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7cd5fcf4] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7cd5fcf4] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.mapper.MapperListener@2d22d3b1] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.mapper.MapperListener@2d22d3b1] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 16:48:15 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 16:48:15 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7cd5fcf4] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7cd5fcf4] to [STARTING] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7cd5fcf4] to [STARTED] -2024-08-07 16:48:15 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 16:48:15 - Starting service [Tomcat] -2024-08-07 16:48:15 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 16:48:15 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 16:48:15 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.webresources.StandardRoot@5ba1b62e] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.webresources.StandardRoot@5ba1b62e] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.webresources.StandardRoot@5ba1b62e] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.webresources.DirResourceSet@4d69d288] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.webresources.DirResourceSet@4d69d288] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.webresources.DirResourceSet@4d69d288] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.webresources.DirResourceSet@4d69d288] to [STARTING] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.webresources.DirResourceSet@4d69d288] to [STARTED] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.webresources.StandardRoot@5ba1b62e] to [STARTING] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.webresources.StandardRoot@5ba1b62e] to [STARTED] -2024-08-07 16:48:15 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:48:15 - Starting this Loader -2024-08-07 16:48:15 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:48:15 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:48:15 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 16:48:15 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@15369d73] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@15369d73] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@15369d73] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@15369d73] to [STARTING] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@15369d73] to [STARTED] -2024-08-07 16:48:15 - Initializing Spring embedded WebApplicationContext -2024-08-07 16:48:15 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 16:48:15 - Root WebApplicationContext: initialization completed in 650 ms -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 16:48:15 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 16:48:15 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 16:48:15 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 16:48:15 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:48:15 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 16:48:15 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 16:48:15 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 16:48:15 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 16:48:15 - HikariPool-1 - configuration: -2024-08-07 16:48:15 - allowPoolSuspension.............false -2024-08-07 16:48:15 - autoCommit......................true -2024-08-07 16:48:15 - catalog.........................none -2024-08-07 16:48:15 - connectionInitSql...............none -2024-08-07 16:48:15 - connectionTestQuery.............none -2024-08-07 16:48:15 - connectionTimeout...............30000 -2024-08-07 16:48:15 - dataSource......................none -2024-08-07 16:48:15 - dataSourceClassName.............none -2024-08-07 16:48:15 - dataSourceJNDI..................none -2024-08-07 16:48:15 - dataSourceProperties............{password=<masked>} -2024-08-07 16:48:15 - driverClassName................."org.h2.Driver" -2024-08-07 16:48:15 - exceptionOverrideClassName......none -2024-08-07 16:48:15 - healthCheckProperties...........{} -2024-08-07 16:48:15 - healthCheckRegistry.............none -2024-08-07 16:48:15 - idleTimeout.....................600000 -2024-08-07 16:48:15 - initializationFailTimeout.......1 -2024-08-07 16:48:15 - isolateInternalQueries..........false -2024-08-07 16:48:15 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 16:48:15 - keepaliveTime...................0 -2024-08-07 16:48:15 - leakDetectionThreshold..........0 -2024-08-07 16:48:15 - maxLifetime.....................1800000 -2024-08-07 16:48:15 - maximumPoolSize.................10 -2024-08-07 16:48:15 - metricRegistry..................none -2024-08-07 16:48:15 - metricsTrackerFactory...........none -2024-08-07 16:48:15 - minimumIdle.....................10 -2024-08-07 16:48:15 - password........................<masked> -2024-08-07 16:48:15 - poolName........................"HikariPool-1" -2024-08-07 16:48:15 - readOnly........................false -2024-08-07 16:48:15 - registerMbeans..................false -2024-08-07 16:48:15 - scheduledExecutor...............none -2024-08-07 16:48:15 - schema..........................none -2024-08-07 16:48:15 - threadFactory...................internal -2024-08-07 16:48:15 - transactionIsolation............default -2024-08-07 16:48:15 - username........................"sa" -2024-08-07 16:48:15 - validationTimeout...............5000 -2024-08-07 16:48:15 - HikariPool-1 - Starting... -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: accepted socket from [192.168.5.4:64599] -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 84 -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:15 - connectionId=rmi://192.168.5.4 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:15 - [javax.management.remote.rmi.RMIConnectionImpl@267dae4b: connectionId=rmi://192.168.5.4 1] closing. -2024-08-07 16:48:15 - [javax.management.remote.rmi.RMIConnectionImpl@267dae4b: connectionId=rmi://192.168.5.4 1] closed. -2024-08-07 16:48:15 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 16:48:15 - HikariPool-1 - Start completed. -2024-08-07 16:48:15 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 16:48:15 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 16:48:15 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:48:15 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 16:48:15 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:48:15 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 16:48:15 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 16:48:15 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 16:48:15 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 16:48:15 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 16:48:15 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@70d5d96b] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@70d5d96b] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@70d5d96b] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@70d5d96b] to [STARTING] -2024-08-07 16:48:15 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@70d5d96b] to [STARTED] -2024-08-07 16:48:15 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:48:15 - Filter 'requestContextFilter' configured for use -2024-08-07 16:48:15 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 16:48:15 - Filter 'characterEncodingFilter' configured for use -2024-08-07 16:48:15 - Filter 'formContentFilter' configured for use -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:48:15 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:48:15 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:48:15 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 16:48:15 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.mapper.MapperListener@2d22d3b1] to [STARTING_PREP] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.mapper.MapperListener@2d22d3b1] to [STARTING] -2024-08-07 16:48:15 - Registered host [localhost] -2024-08-07 16:48:15 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 16:48:15 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 16:48:15 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 16:48:15 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 16:48:15 - Setting state for [org.apache.catalina.mapper.MapperListener@2d22d3b1] to [STARTED] -2024-08-07 16:48:15 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 16:48:15 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 16:48:15 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 16:48:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:48:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:48:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 16:48:15 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 16:48:15 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 16:48:15 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:48:15 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:48:15 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 16:48:15 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 16:48:15 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 16:48:15 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 16:48:15 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 16:48:15 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 16:48:15 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 16:48:15 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 16:48:15 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 16:48:15 - HHH000206: 'hibernate.properties' not found -2024-08-07 16:48:15 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 16:48:15 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 16:48:15 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 16:48:15 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 16:48:15 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 16:48:15 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 16:48:15 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 16:48:15 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 16:48:15 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 16:48:15 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 16:48:15 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 16:48:15 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 16:48:15 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 16:48:15 - HHH000026: Second-level cache disabled -2024-08-07 16:48:15 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 16:48:15 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 16:48:15 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@19e801b5 -2024-08-07 16:48:15 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@19e801b5 -2024-08-07 16:48:15 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@19e801b5 -2024-08-07 16:48:15 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-07 16:48:15 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-07 16:48:15 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-07 16:48:15 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-07 16:48:15 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-07 16:48:15 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-07 16:48:15 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-07 16:48:15 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-07 16:48:15 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-07 16:48:15 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-07 16:48:15 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-07 16:48:15 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-07 16:48:15 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 16:48:15 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 16:48:15 - Adding type registration image -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-07 16:48:15 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 16:48:15 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 16:48:15 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 16:48:15 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 16:48:15 - Adding type registration short -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 16:48:15 - Adding type registration short -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 16:48:15 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 16:48:15 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 16:48:15 - Adding type registration int -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 16:48:15 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 16:48:15 - Adding type registration long -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:48:15 - Adding type registration long -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:48:15 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:48:15 - Adding type registration float -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 16:48:15 - Adding type registration float -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 16:48:15 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 16:48:15 - Adding type registration double -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 16:48:15 - Adding type registration double -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 16:48:15 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 16:48:15 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 16:48:15 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 16:48:15 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 16:48:15 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 16:48:15 - Adding type registration character -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 16:48:15 - Adding type registration char -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 16:48:15 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 16:48:15 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 16:48:15 - Adding type registration string -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 16:48:15 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 16:48:15 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 16:48:15 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 16:48:15 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 16:48:15 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 16:48:15 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 16:48:15 - Adding type registration text -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 16:48:15 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 16:48:15 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 16:48:15 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 16:48:15 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 16:48:15 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 16:48:15 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 16:48:15 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 16:48:15 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 16:48:15 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 16:48:15 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 16:48:15 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 16:48:15 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 16:48:15 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 16:48:15 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:48:15 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:48:15 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 16:48:15 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 16:48:15 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 16:48:15 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 16:48:15 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 16:48:15 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 16:48:15 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 16:48:15 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 16:48:15 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 16:48:15 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 16:48:15 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 16:48:15 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 16:48:15 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 16:48:15 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 16:48:15 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 16:48:15 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 16:48:15 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 16:48:15 - Adding type registration date -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 16:48:15 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 16:48:15 - Adding type registration time -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:48:15 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:48:15 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 16:48:15 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 16:48:15 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 16:48:15 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 16:48:15 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 16:48:15 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 16:48:15 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 16:48:15 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 16:48:15 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 16:48:15 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 16:48:15 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 16:48:15 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 16:48:15 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 16:48:15 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 16:48:15 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 16:48:15 - Adding type registration class -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 16:48:15 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 16:48:15 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 16:48:15 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 16:48:15 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 16:48:15 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 16:48:15 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 16:48:15 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 16:48:15 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 16:48:15 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 16:48:15 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 16:48:15 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:48:15 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:48:15 - Adding type registration url -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 16:48:15 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 16:48:15 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 16:48:15 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 16:48:15 - Adding type registration object -> org.hibernate.type.JavaObjectType@68c4a860 -2024-08-07 16:48:15 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@68c4a860 -2024-08-07 16:48:15 - Adding type registration null -> org.hibernate.type.NullType@237aa0c7 -2024-08-07 16:48:15 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@1b8ee69d -2024-08-07 16:48:15 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@2b400bd0 -2024-08-07 16:48:15 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@fceab5d -2024-08-07 16:48:15 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@79445efb -2024-08-07 16:48:15 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@1592e540 -2024-08-07 16:48:15 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@3e2772a9 -2024-08-07 16:48:15 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@4449b273 -2024-08-07 16:48:15 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@1fa18f87 -2024-08-07 16:48:15 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bf66af] into BootstrapContext; was [null] -2024-08-07 16:48:15 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bf66af) [was null] -2024-08-07 16:48:15 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@11309dd4] into BootstrapContext; was [null] -2024-08-07 16:48:15 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@4f4d05b3] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@2bd4780c] -2024-08-07 16:48:15 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 16:48:15 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 16:48:15 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-07 16:48:15 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 16:48:15 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-07 16:48:15 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 16:48:15 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 16:48:15 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bf66af] -2024-08-07 16:48:15 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bf66af] -2024-08-07 16:48:15 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 16:48:15 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 16:48:15 - JDBC version : 4.2 -2024-08-07 16:48:15 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 16:48:15 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 16:48:15 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 16:48:15 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 16:48:15 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 16:48:15 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 16:48:15 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 16:48:15 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 16:48:15 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 16:48:15 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 16:48:15 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 16:48:15 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 16:48:15 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 16:48:15 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@5f9ccd0c] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@6738e8b2] -2024-08-07 16:48:15 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 16:48:15 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 16:48:15 - Import with entity name Action -2024-08-07 16:48:15 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 16:48:15 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:48:15 - Binding column: AnnotatedColumn() -2024-08-07 16:48:15 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:48:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:48:15 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 16:48:15 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 16:48:15 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:48:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 16:48:15 - building BasicValue for id -2024-08-07 16:48:15 - Skipping column re-registration: action.id -2024-08-07 16:48:15 - Building property id -2024-08-07 16:48:15 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:48:15 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:48:15 - Binding column: AnnotatedColumn() -2024-08-07 16:48:15 - Building property event -2024-08-07 16:48:15 - Binding column: AnnotatedColumn() -2024-08-07 16:48:15 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 16:48:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 16:48:15 - building BasicValue for sequence -2024-08-07 16:48:15 - Skipping column re-registration: action.sequence -2024-08-07 16:48:15 - Building property sequence -2024-08-07 16:48:15 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:48:15 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 16:48:15 - Import with entity name BillAction -2024-08-07 16:48:15 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 16:48:15 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:48:15 - Binding column: AnnotatedColumn() -2024-08-07 16:48:15 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:48:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:48:15 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:48:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 16:48:15 - building BasicValue for id -2024-08-07 16:48:15 - Skipping column re-registration: bill_action.id -2024-08-07 16:48:15 - Building property id -2024-08-07 16:48:15 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:48:15 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:48:15 - Binding column: AnnotatedColumn() -2024-08-07 16:48:15 - Building property action -2024-08-07 16:48:15 - Binding column: AnnotatedColumn() -2024-08-07 16:48:15 - MetadataSourceProcessor property price with lazy=false -2024-08-07 16:48:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 16:48:15 - building BasicValue for price -2024-08-07 16:48:15 - Skipping column re-registration: bill_action.price -2024-08-07 16:48:15 - Building property price -2024-08-07 16:48:15 - Binding column: AnnotatedColumn() -2024-08-07 16:48:15 - MetadataSourceProcessor property title with lazy=false -2024-08-07 16:48:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 16:48:15 - building BasicValue for title -2024-08-07 16:48:15 - Skipping column re-registration: bill_action.title -2024-08-07 16:48:15 - Building property title -2024-08-07 16:48:15 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:48:15 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 16:48:15 - Import with entity name MemberAction -2024-08-07 16:48:15 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 16:48:15 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:48:15 - Binding column: AnnotatedColumn() -2024-08-07 16:48:15 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:48:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:48:15 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:48:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 16:48:15 - building BasicValue for id -2024-08-07 16:48:15 - Skipping column re-registration: member_action.id -2024-08-07 16:48:15 - Building property id -2024-08-07 16:48:15 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:48:15 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:48:15 - Binding column: AnnotatedColumn() -2024-08-07 16:48:15 - Building property action -2024-08-07 16:48:15 - Binding column: AnnotatedColumn() -2024-08-07 16:48:15 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 16:48:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 16:48:15 - building BasicValue for memberGroupId -2024-08-07 16:48:15 - Skipping column re-registration: member_action.member_group_id -2024-08-07 16:48:15 - Building property memberGroupId -2024-08-07 16:48:15 - Binding column: AnnotatedColumn() -2024-08-07 16:48:15 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 16:48:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 16:48:15 - building BasicValue for memberName -2024-08-07 16:48:15 - Skipping column re-registration: member_action.member_name -2024-08-07 16:48:15 - Building property memberName -2024-08-07 16:48:15 - Binding column: AnnotatedColumn() -2024-08-07 16:48:15 - MetadataSourceProcessor property status with lazy=false -2024-08-07 16:48:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 16:48:15 - building BasicValue for status -2024-08-07 16:48:15 - Skipping column re-registration: member_action.status -2024-08-07 16:48:15 - Building property status -2024-08-07 16:48:15 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:48:15 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 16:48:15 - Import with entity name Event -2024-08-07 16:48:15 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 16:48:15 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:48:15 - Binding column: AnnotatedColumn() -2024-08-07 16:48:15 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:48:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:48:15 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:48:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 16:48:15 - building BasicValue for id -2024-08-07 16:48:15 - Skipping column re-registration: event.id -2024-08-07 16:48:15 - Building property id -2024-08-07 16:48:15 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:48:15 - Binding column: AnnotatedColumn() -2024-08-07 16:48:15 - MetadataSourceProcessor property name with lazy=false -2024-08-07 16:48:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 16:48:15 - building BasicValue for name -2024-08-07 16:48:15 - Skipping column re-registration: event.name -2024-08-07 16:48:15 - Building property name -2024-08-07 16:48:15 - Binding column: AnnotatedColumn() -2024-08-07 16:48:15 - MetadataSourceProcessor property password with lazy=false -2024-08-07 16:48:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 16:48:15 - building BasicValue for password -2024-08-07 16:48:15 - Skipping column re-registration: event.password -2024-08-07 16:48:15 - Building property password -2024-08-07 16:48:15 - Binding column: AnnotatedColumn() -2024-08-07 16:48:15 - MetadataSourceProcessor property token with lazy=false -2024-08-07 16:48:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 16:48:15 - building BasicValue for token -2024-08-07 16:48:15 - Skipping column re-registration: event.token -2024-08-07 16:48:15 - Building property token -2024-08-07 16:48:15 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 16:48:15 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 16:48:15 - Import with entity name EventStep -2024-08-07 16:48:15 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 16:48:15 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:48:15 - Binding column: AnnotatedColumn() -2024-08-07 16:48:15 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:48:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:48:15 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:48:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 16:48:15 - building BasicValue for id -2024-08-07 16:48:15 - Skipping column re-registration: event_step.id -2024-08-07 16:48:15 - Building property id -2024-08-07 16:48:15 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:48:15 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:48:15 - Binding column: AnnotatedColumn() -2024-08-07 16:48:15 - Building property event -2024-08-07 16:48:15 - Binding column: AnnotatedColumn() -2024-08-07 16:48:15 - MetadataSourceProcessor property name with lazy=false -2024-08-07 16:48:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 16:48:15 - building BasicValue for name -2024-08-07 16:48:15 - Skipping column re-registration: event_step.name -2024-08-07 16:48:15 - Building property name -2024-08-07 16:48:15 - Binding column: AnnotatedColumn() -2024-08-07 16:48:15 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 16:48:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 16:48:15 - building BasicValue for sequence -2024-08-07 16:48:15 - Skipping column re-registration: event_step.sequence -2024-08-07 16:48:15 - Building property sequence -2024-08-07 16:48:15 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 16:48:15 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:48:15 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 16:48:15 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:48:15 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 16:48:15 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 16:48:15 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:48:15 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 16:48:15 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 16:48:15 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 16:48:15 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:48:15 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 16:48:15 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 16:48:15 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 16:48:15 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:48:15 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 16:48:15 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 16:48:15 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 16:48:15 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 16:48:15 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 16:48:15 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 16:48:15 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 16:48:15 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 16:48:15 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 16:48:15 - Building session factory -2024-08-07 16:48:15 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:48:15 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@6655f3cd, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@2484c868, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.3645112319768374918, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=61704, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.3645112319768374918, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@19d13d04, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 16:48:15 - Session factory constructed with filter configurations : {} -2024-08-07 16:48:15 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:48:15 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:48:15 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:48:15 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:48:15 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:48:15 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:48:15 - Loaded expression factory via original TCCL -2024-08-07 16:48:15 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:48:15 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:48:15 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:48:15 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:48:15 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:48:15 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:48:15 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:48:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:48:15 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:48:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:48:15 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:48:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:48:15 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:48:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:48:15 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:48:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:48:15 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:48:15 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 16:48:15 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@51efdb72] under count; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@4d9cf71d] under every; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@5c43cb12] under any; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5c81ddab] under sinh; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@24ee6faa] under cosh; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6d4f266] under tanh; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6b756a62] under pi; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@394b9e22] under log; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 16:48:15 - Registering alternate key : length -> character_length -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@46c9ee28] under position; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@62871522] under overlay; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@862624f] under trim; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@1c528f2f] under cast; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@34ff08c6] under collate; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@35451ba6] under extract; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@2a7392a3] under ifnull; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@5382a35f] under pad; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@4a7c72af] under str; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@7c680fe1] under format; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@4419cd6e] under timestampadd; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@1e965426] under timestampdiff; prior registration was null -2024-08-07 16:48:15 - Registering alternate key : dateadd -> timestampadd -2024-08-07 16:48:15 - Registering alternate key : datediff -> timestampdiff -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@261099e1] under current_date; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@ed1d2cf] under current_time; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@b814e23] under current_timestamp; prior registration was null -2024-08-07 16:48:15 - Registering alternate key : current date -> current_date -2024-08-07 16:48:15 - Registering alternate key : current time -> current_time -2024-08-07 16:48:15 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5f81507a] under local_date; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7d7c05fa] under local_time; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7dbbf730] under local_datetime; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7c4a5ef2] under offset_datetime; prior registration was null -2024-08-07 16:48:15 - Registering alternate key : local date -> local_date -2024-08-07 16:48:15 - Registering alternate key : local time -> local_time -2024-08-07 16:48:15 - Registering alternate key : local datetime -> local_datetime -2024-08-07 16:48:15 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@299dd381] under instant; prior registration was null -2024-08-07 16:48:15 - Registering alternate key : current_instant -> instant -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@7fa68ff4] under sql; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@515fff35] under count; prior registration was org.hibernate.dialect.function.CountFunction@51efdb72 -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@16c1d11] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6b756a62 -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@123d0816] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 16:48:15 - Registering alternate key : day -> day_of_month -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@7d7c05fa -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@7dbbf730 -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@13f7c165] under trunc; prior registration was null -2024-08-07 16:48:15 - Registering alternate key : truncate -> trunc -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@655f92a1] under date_trunc; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 16:48:15 - Registering alternate key : chr -> char -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1d2d793d] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@46c9ee28 -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@57fec63f] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 16:48:15 - Registering alternate key : every -> bool_and -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 16:48:15 - Registering alternate key : any -> bool_or -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@7a2fd94c] under format; prior registration was org.hibernate.dialect.function.FormatFunction@7c680fe1 -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@37ab1b10] under listagg; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@30ca66c5] under mode; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@4abfa2ff] under percentile_cont; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@38c1b1a7] under percentile_disc; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@125a8ab6] under rank; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@792b9dd3] under dense_rank; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@cbc3bf3] under percent_rank; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@31f9f9b3] under cume_dist; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@322eb1a] under array; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@2b4ba2d9] under array_list; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@2c6efee3] under array_agg; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@29c21acb] under array_position; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@7fa8fff] under array_positions; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@623ded82] under array_positions_list; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@180e33b0] under array_length; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@15c3585] under array_concat; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@4e826fd4] under array_prepend; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@5f14590c] under array_append; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@58835bba] under array_contains; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@222eda8a] under array_contains_nullable; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@1e09c0b] under array_overlaps; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@4880a9d] under array_overlaps_nullable; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5400db7e] under array_get; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@40d04cf8] under array_set; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@5d373794] under array_remove; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@41f5389f] under array_remove_index; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3a012678] under array_slice; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@329efc61] under array_replace; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@32f45e15] under array_trim; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@524dd373] under array_fill; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@5ca3acad] under array_fill_list; prior registration was null -2024-08-07 16:48:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@583b4af4] under array_to_string; prior registration was null -2024-08-07 16:48:15 - abs(NUMERIC arg) -2024-08-07 16:48:15 - Double acos(NUMERIC arg) -2024-08-07 16:48:15 - Boolean any(BOOLEAN predicate) -2024-08-07 16:48:15 - array( ... ) -2024-08-07 16:48:15 - array_agg(arg) -2024-08-07 16:48:15 - array_append( ... ) -2024-08-07 16:48:15 - array_concat( ... ) -2024-08-07 16:48:15 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 16:48:15 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 16:48:15 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 16:48:15 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 16:48:15 - array_get(ARRAY array, INTEGER index) -2024-08-07 16:48:15 - Integer array_length(ARRAY array) -2024-08-07 16:48:15 - array_list( ... ) -2024-08-07 16:48:15 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 16:48:15 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 16:48:15 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 16:48:15 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 16:48:15 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 16:48:15 - array_prepend( ... ) -2024-08-07 16:48:15 - array_remove( ... ) -2024-08-07 16:48:15 - array_remove_index( ... ) -2024-08-07 16:48:15 - array_replace( ... ) -2024-08-07 16:48:15 - array_set( ... ) -2024-08-07 16:48:15 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 16:48:15 - String array_to_string( ... ) -2024-08-07 16:48:15 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 16:48:15 - Integer ascii(STRING arg) -2024-08-07 16:48:15 - Double asin(NUMERIC arg) -2024-08-07 16:48:15 - Double atan(NUMERIC arg) -2024-08-07 16:48:15 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 16:48:15 - avg(NUMERIC arg) -2024-08-07 16:48:15 - bit_and(arg) -2024-08-07 16:48:15 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 16:48:15 - bit_or(arg) -2024-08-07 16:48:15 - bitand(arg0, arg1) -2024-08-07 16:48:15 - bitnot(arg) -2024-08-07 16:48:15 - bitor(arg0, arg1) -2024-08-07 16:48:15 - bitxor(arg0, arg1) -2024-08-07 16:48:15 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 16:48:15 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 16:48:15 - cast(arg as Type) -2024-08-07 16:48:15 - ceiling(NUMERIC arg) -2024-08-07 16:48:15 - Character char(INTEGER arg) -2024-08-07 16:48:15 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 16:48:15 - Character chr(INTEGER arg) -2024-08-07 16:48:15 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 16:48:15 - String collate(STRING string as COLLATION collation) -2024-08-07 16:48:15 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 16:48:15 - Double cos(NUMERIC arg) -2024-08-07 16:48:15 - Double cosh(NUMERIC arg) -2024-08-07 16:48:15 - Double cot(NUMERIC arg) -2024-08-07 16:48:15 - Long count([distinct ]{arg|*}) -2024-08-07 16:48:15 - Double cume_dist([arg0[, ...]]) -2024-08-07 16:48:15 - Date curdate() -2024-08-07 16:48:15 - Date current date -2024-08-07 16:48:15 - Time current time -2024-08-07 16:48:15 - Timestamp current timestamp -2024-08-07 16:48:15 - Date current_date -2024-08-07 16:48:15 - Instant current_instant -2024-08-07 16:48:15 - Time current_time -2024-08-07 16:48:15 - Timestamp current_timestamp -2024-08-07 16:48:15 - Time curtime() -2024-08-07 16:48:15 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 16:48:15 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 16:48:15 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 16:48:15 - Integer day(DATE arg) -2024-08-07 16:48:15 - Integer day_of_month(DATE arg) -2024-08-07 16:48:15 - Integer day_of_week(DATE arg) -2024-08-07 16:48:15 - Integer day_of_year(DATE arg) -2024-08-07 16:48:15 - String dayname(DATE arg) -2024-08-07 16:48:15 - Double degrees(NUMERIC arg) -2024-08-07 16:48:15 - Long dense_rank([arg0[, ...]]) -2024-08-07 16:48:15 - Boolean every(BOOLEAN predicate) -2024-08-07 16:48:15 - Double exp(NUMERIC arg) -2024-08-07 16:48:15 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 16:48:15 - first_valueANY value -2024-08-07 16:48:15 - floor(NUMERIC arg) -2024-08-07 16:48:15 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 16:48:15 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 16:48:15 - Integer hour(TIME arg) -2024-08-07 16:48:15 - ifnull(arg0, arg1) -2024-08-07 16:48:15 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 16:48:15 - Instant instant -2024-08-07 16:48:15 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 16:48:15 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 16:48:15 - last_valueANY value -2024-08-07 16:48:15 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 16:48:15 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 16:48:15 - String left(STRING string, INTEGER length) -2024-08-07 16:48:15 - Integer length(STRING_OR_CLOB arg) -2024-08-07 16:48:15 - String listagg(STRING arg0, STRING arg1) -2024-08-07 16:48:15 - Double ln(NUMERIC arg) -2024-08-07 16:48:15 - LocalDate local date -2024-08-07 16:48:15 - LocalDateTime local datetime -2024-08-07 16:48:15 - LocalTime local time -2024-08-07 16:48:15 - LocalDate local_date -2024-08-07 16:48:15 - LocalDateTime local_datetime -2024-08-07 16:48:15 - LocalTime local_time -2024-08-07 16:48:15 - Time localtime -2024-08-07 16:48:15 - Timestamp localtimestamp -2024-08-07 16:48:15 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 16:48:15 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 16:48:15 - Double log10(NUMERIC arg) -2024-08-07 16:48:15 - String lower(STRING string) -2024-08-07 16:48:15 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 16:48:15 - String ltrim(STRING string) -2024-08-07 16:48:15 - max(COMPARABLE arg) -2024-08-07 16:48:15 - Double median(NUMERIC arg) -2024-08-07 16:48:15 - Integer microsecond(TIME arg) -2024-08-07 16:48:15 - min(COMPARABLE arg) -2024-08-07 16:48:15 - Integer minute(TIME arg) -2024-08-07 16:48:15 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 16:48:15 - mode() -2024-08-07 16:48:15 - Integer month(DATE arg) -2024-08-07 16:48:15 - String monthname(DATE arg) -2024-08-07 16:48:15 - Timestamp now() -2024-08-07 16:48:15 - nth_valueANY value, INTEGER nth -2024-08-07 16:48:15 - nullif(arg0, arg1) -2024-08-07 16:48:15 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 16:48:15 - OffsetDateTime offset datetime -2024-08-07 16:48:15 - OffsetDateTime offset_datetime -2024-08-07 16:48:15 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 16:48:15 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 16:48:15 - Double percent_rank([arg0[, ...]]) -2024-08-07 16:48:15 - percentile_cont(NUMERIC arg) -2024-08-07 16:48:15 - percentile_disc(NUMERIC arg) -2024-08-07 16:48:15 - Double pi -2024-08-07 16:48:15 - Integer position(STRING pattern in STRING string) -2024-08-07 16:48:15 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 16:48:15 - Integer quarter(DATE arg) -2024-08-07 16:48:15 - Double radians(NUMERIC arg) -2024-08-07 16:48:15 - Double rand([INTEGER seed]) -2024-08-07 16:48:15 - Long rank([arg0[, ...]]) -2024-08-07 16:48:15 - String repeat(STRING string, INTEGER times) -2024-08-07 16:48:15 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 16:48:15 - String right(STRING string, INTEGER length) -2024-08-07 16:48:15 - round(NUMERIC number[, INTEGER places]) -2024-08-07 16:48:15 - Long row_number() -2024-08-07 16:48:15 - Long rownum() -2024-08-07 16:48:15 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 16:48:15 - String rtrim(STRING string) -2024-08-07 16:48:15 - Integer second(TIME arg) -2024-08-07 16:48:15 - Integer sign(NUMERIC arg) -2024-08-07 16:48:15 - Double sin(NUMERIC arg) -2024-08-07 16:48:15 - Double sinh(NUMERIC arg) -2024-08-07 16:48:15 - String soundex(arg) -2024-08-07 16:48:15 - String space(INTEGER arg) -2024-08-07 16:48:15 - Object sql -2024-08-07 16:48:15 - Double sqrt(NUMERIC arg) -2024-08-07 16:48:15 - Double stddev_pop(NUMERIC arg) -2024-08-07 16:48:15 - Double stddev_samp(NUMERIC arg) -2024-08-07 16:48:15 - String str(arg) -2024-08-07 16:48:15 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 16:48:15 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 16:48:15 - sum(arg) -2024-08-07 16:48:15 - Timestamp sysdate -2024-08-07 16:48:15 - Double tan(NUMERIC arg) -2024-08-07 16:48:15 - Double tanh(NUMERIC arg) -2024-08-07 16:48:15 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 16:48:15 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 16:48:15 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 16:48:15 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 16:48:15 - trunc( ... ) -2024-08-07 16:48:15 - truncate( ... ) -2024-08-07 16:48:15 - String upper(STRING string) -2024-08-07 16:48:15 - Double var_pop(NUMERIC arg) -2024-08-07 16:48:15 - Double var_samp(NUMERIC arg) -2024-08-07 16:48:15 - Integer week(DATE arg) -2024-08-07 16:48:15 - Integer year(DATE arg) -2024-08-07 16:48:15 - Starting QueryInterpretationCache(2048) -2024-08-07 16:48:15 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:48:15 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:48:15 - Configured EntityCopyObserver strategy: disallow -2024-08-07 16:48:15 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:48:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 82 -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 84 -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:15 - connectionId=rmi://192.168.5.4 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:48:15 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:15 - [javax.management.remote.rmi.RMIConnectionImpl@5efaef1d: connectionId=rmi://192.168.5.4 2] closing. -2024-08-07 16:48:15 - [javax.management.remote.rmi.RMIConnectionImpl@5efaef1d: connectionId=rmi://192.168.5.4 2] closed. -2024-08-07 16:48:15 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 16:48:15 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:48:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:48:15 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 16:48:15 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:48:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:48:15 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 16:48:15 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:48:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:48:15 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 16:48:15 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:48:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:48:15 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 16:48:15 - Starting post-init callbacks -2024-08-07 16:48:15 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 16:48:15 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 16:48:15 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:48:15 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 16:48:15 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 16:48:15 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 16:48:15 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 16:48:15 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 16:48:15 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 16:48:15 - Created new SQL alias : ba1_0 -2024-08-07 16:48:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 16:48:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1c3400df] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 16:48:15 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 16:48:15 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 16:48:15 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 16:48:15 - Version select: select id from bill_action where id=? -2024-08-07 16:48:15 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 16:48:15 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 16:48:15 - Delete (0): delete from bill_action where id=? -2024-08-07 16:48:15 - Created new SQL alias : ma1_0 -2024-08-07 16:48:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 16:48:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2f83467] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:48:15 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 16:48:15 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 16:48:15 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 16:48:15 - Version select: select id from member_action where id=? -2024-08-07 16:48:15 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 16:48:15 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 16:48:15 - Delete (0): delete from member_action where id=? -2024-08-07 16:48:15 - Created new SQL alias : e1_0 -2024-08-07 16:48:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 16:48:15 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 16:48:15 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 16:48:15 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 16:48:15 - Version select: select id from event where id=? -2024-08-07 16:48:15 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 16:48:15 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 16:48:15 - Delete (0): delete from event where id=? -2024-08-07 16:48:15 - Created new SQL alias : a1_0 -2024-08-07 16:48:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 16:48:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@435e224d] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 16:48:15 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 16:48:15 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 16:48:15 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 16:48:15 - Version select: select id from action where id=? -2024-08-07 16:48:15 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 16:48:15 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 16:48:15 - Delete (0): delete from action where id=? -2024-08-07 16:48:15 - Created new SQL alias : es1_0 -2024-08-07 16:48:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 16:48:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6dd7af2f] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 16:48:15 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 16:48:15 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 16:48:15 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 16:48:15 - Version select: select id from event_step where id=? -2024-08-07 16:48:15 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 16:48:15 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 16:48:15 - Delete (0): delete from event_step where id=? -2024-08-07 16:48:15 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 16:48:15 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@5f9ccd0c] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@71d8794f] -2024-08-07 16:48:15 - Checking 0 named HQL queries -2024-08-07 16:48:15 - Checking 0 named SQL queries -2024-08-07 16:48:15 - - drop table if exists action cascade -2024-08-07 16:48:15 - - drop table if exists bill_action cascade -2024-08-07 16:48:15 - - drop table if exists event cascade -2024-08-07 16:48:15 - - drop table if exists event_step cascade -2024-08-07 16:48:15 - - drop table if exists member_action cascade -2024-08-07 16:48:15 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 16:48:15 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 16:48:15 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 16:48:15 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 16:48:15 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 16:48:15 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 16:48:15 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 16:48:15 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 16:48:15 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 16:48:15 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@64641998 -2024-08-07 16:48:15 - Registering SessionFactory: 460674b8-29da-4e76-829a-da1b5599f6c5 (<unnamed>) -2024-08-07 16:48:15 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 16:48:15 - Instantiated SessionFactory -2024-08-07 16:48:15 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'actionService' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 16:48:16 - Initializing JpaMetamodelMappingContext… -2024-08-07 16:48:16 - Finished initializing JpaMetamodelMappingContext -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - Statistics initialized [enabled=false] -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 16:48:16 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 16:48:16 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 16:48:16 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:48:16 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - Looking up named query BillAction.findByAction_Event -2024-08-07 16:48:16 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:48:16 - Did not find named query BillAction.findByAction_Event -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - Looking up named query BillAction.findByAction_Id -2024-08-07 16:48:16 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:48:16 - Did not find named query BillAction.findByAction_Id -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 16:48:16 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:48:16 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 16:48:16 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:48:16 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 16:48:16 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:48:16 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 16:48:16 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 16:48:16 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:48:16 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 16:48:16 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:48:16 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 16:48:16 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 16:48:16 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 16:48:16 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 16:48:16 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:48:16 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 16:48:16 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:48:16 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(742867432629875)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(742867432629875)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(742867432629875)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(742867432629875)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(742867432629875).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:48:16 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:48:16 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 16:48:16 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:48:16 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:48:16 - Looking up named query MemberAction.findByAction -2024-08-07 16:48:16 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:48:16 - Did not find named query MemberAction.findByAction -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - Looking up named query Event.findByToken -2024-08-07 16:48:16 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:48:16 - Did not find named query Event.findByToken -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 16:48:16 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 16:48:16 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:48:16 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:48:16 - Did not find named query Action.findLastByEvent.count -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 16:48:16 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:48:16 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:48:16 - Looking up named query Action.findByIdAndEvent -2024-08-07 16:48:16 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:48:16 - Did not find named query Action.findByIdAndEvent -2024-08-07 16:48:16 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:48:16 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 16:48:16 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 16:48:16 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 16:48:16 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'eventService' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 16:48:16 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 16:48:16 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 16:48:16 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 16:48:16 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 16:48:16 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 16:48:16 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 16:48:16 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:48:16 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 16:48:16 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 16:48:16 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 16:48:16 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'actionController' -2024-08-07 16:48:16 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 16:48:16 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'eventController' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'authService' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 16:48:16 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 16:48:16 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 16:48:16 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 16:48:16 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 16:48:16 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:48:16 - Loaded expression factory via original TCCL -2024-08-07 16:48:16 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 16:48:16 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 16:48:16 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:48:16 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 16:48:16 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:48:16 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:48:16 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:48:16 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:48:16 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:48:16 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:48:16 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:48:16 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:48:16 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:48:16 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:48:16 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'error' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 16:48:16 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 16:48:16 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 16:48:16 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 16:48:16 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 16:48:16 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:48:16 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:48:16 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 16:48:16 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:48:16 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:48:16 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 16:48:16 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:48:16 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:48:16 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:48:16 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 16:48:16 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 16:48:16 - - s.h.p.EventController: - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) -2024-08-07 16:48:16 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 16:48:16 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 16:48:16 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 16:48:16 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:48:16 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 82 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 16:48:16 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:48:16 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 82 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - 'beanNameHandlerMapping' {} -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 82 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 84 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 82 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 82 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 82 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - [javax.management.remote.rmi.RMIConnectionImpl@631b630: connectionId=rmi://192.168.5.4 3] closing. -2024-08-07 16:48:16 - [javax.management.remote.rmi.RMIConnectionImpl@631b630: connectionId=rmi://192.168.5.4 3] closed. -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 16:48:16 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:48:16 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 16:48:16 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 16:48:16 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:48:16 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:48:16 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 16:48:16 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:48:16 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 16:48:16 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 16:48:16 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 16:48:16 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:48:16 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:48:16 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:48:16 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 16:48:16 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:48:16 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 16:48:16 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 16:48:16 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 16:48:16 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 16:48:16 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 16:48:16 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 16:48:16 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 16:48:16 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:48:16 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 16:48:16 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 16:48:16 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 16:48:16 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 16:48:16 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 16:48:16 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:48:16 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 16:48:16 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:48:16 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 16:48:16 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 16:48:16 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 16:48:16 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 16:48:16 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 16:48:16 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 16:48:16 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 16:48:16 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 16:48:16 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 16:48:16 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 16:48:16 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 16:48:16 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 16:48:16 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 16:48:16 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:48:16 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 16:48:16 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 16:48:16 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 16:48:16 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 16:48:16 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 16:48:16 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 16:48:16 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 16:48:16 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 16:48:16 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 16:48:16 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 16:48:16 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 16:48:16 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:48:16 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:48:16 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 16:48:16 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 16:48:16 - Using SLF4J as the default logging framework -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 16:48:16 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 16:48:16 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 16:48:16 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 16:48:16 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 16:48:16 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 16:48:16 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 16:48:16 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 16:48:16 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 16:48:16 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 16:48:16 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 16:48:16 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 16:48:16 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 16:48:16 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 16:48:16 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 16:48:16 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 16:48:16 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 16:48:16 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 16:48:16 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 16:48:16 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:48:16 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:48:16 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 16:48:16 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 16:48:16 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 16:48:16 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:48:16 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:48:16 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 16:48:16 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 16:48:16 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 16:48:16 - Registering beans for JMX exposure on startup -2024-08-07 16:48:16 - Auto-detecting user-defined JMX MBeans -2024-08-07 16:48:16 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 16:48:16 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 16:48:16 - Starting beans in phase -2147483647 -2024-08-07 16:48:16 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 16:48:16 - Starting beans in phase 2147481599 -2024-08-07 16:48:16 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 16:48:16 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 16:48:16 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 16:48:16 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 16:48:16 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 16:48:16 - Successfully started bean 'webServerStartStop' -2024-08-07 16:48:16 - Starting beans in phase 2147482623 -2024-08-07 16:48:16 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 16:48:16 - Starting beans in phase 2147483647 -2024-08-07 16:48:16 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.web.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 16:48:16 - Started HaengdongApplication in 2.256 seconds (process running for 2.46) -2024-08-07 16:48:16 - Application availability state LivenessState changed to CORRECT -2024-08-07 16:48:16 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 82 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 82 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 82 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 84 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 82 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 82 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 82 -2024-08-07 16:48:16 - RMI TCP Connection(1)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - [javax.management.remote.rmi.RMIConnectionImpl@24b0fe06: connectionId=rmi://192.168.5.4 4] closing. -2024-08-07 16:48:16 - [javax.management.remote.rmi.RMIConnectionImpl@24b0fe06: connectionId=rmi://192.168.5.4 4] closed. -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: accepted socket from [192.168.5.4:64601] -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: accepted socket from [192.168.5.4:64600] -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 84 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 84 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - [javax.management.remote.rmi.RMIConnectionImpl@3888aa4a: connectionId=rmi://192.168.5.4 6] closing. -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - [javax.management.remote.rmi.RMIConnectionImpl@3888aa4a: connectionId=rmi://192.168.5.4 6] closed. -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 84 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - [javax.management.remote.rmi.RMIConnectionImpl@23742471: connectionId=rmi://192.168.5.4 5] closing. -2024-08-07 16:48:16 - [javax.management.remote.rmi.RMIConnectionImpl@23742471: connectionId=rmi://192.168.5.4 5] closed. -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - [javax.management.remote.rmi.RMIConnectionImpl@49a2552e: connectionId=rmi://192.168.5.4 7] closing. -2024-08-07 16:48:16 - [javax.management.remote.rmi.RMIConnectionImpl@49a2552e: connectionId=rmi://192.168.5.4 7] closed. -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 84 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 8 unwrapping query with defaultClassLoader. -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - [javax.management.remote.rmi.RMIConnectionImpl@427b8cae: connectionId=rmi://192.168.5.4 8] closing. -2024-08-07 16:48:16 - [javax.management.remote.rmi.RMIConnectionImpl@427b8cae: connectionId=rmi://192.168.5.4 8] closed. -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 82 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 82 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 82 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 84 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 84 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 82 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 82 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 82 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - [javax.management.remote.rmi.RMIConnectionImpl@60ca65cf: connectionId=rmi://192.168.5.4 10] closing. -2024-08-07 16:48:16 - [javax.management.remote.rmi.RMIConnectionImpl@60ca65cf: connectionId=rmi://192.168.5.4 10] closed. -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 84 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 11 unwrapping query with defaultClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 11, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 11, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - [javax.management.remote.rmi.RMIConnectionImpl@171d3161: connectionId=rmi://192.168.5.4 9] closing. -2024-08-07 16:48:16 - [javax.management.remote.rmi.RMIConnectionImpl@171d3161: connectionId=rmi://192.168.5.4 9] closed. -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 84 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 12 unwrapping query with defaultClassLoader. -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 12, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:16 - connectionId=rmi://192.168.5.4 12, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 16:48:16 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 16:48:16 - Fetching JDBC Connection from DataSource -2024-08-07 16:48:16 - Initializing Servlet 'dispatcherServlet' -2024-08-07 16:48:16 - Detected StandardServletMultipartResolver -2024-08-07 16:48:16 - Detected AcceptHeaderLocaleResolver -2024-08-07 16:48:16 - Detected FixedThemeResolver -2024-08-07 16:48:16 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@62b71cfa -2024-08-07 16:48:16 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@9e96118 -2024-08-07 16:48:16 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 16:48:16 - Completed initialization in 1 ms -2024-08-07 16:48:16 - Fetching JDBC Connection from DataSource -2024-08-07 16:48:16 - RMI TCP Connection(2)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - [javax.management.remote.rmi.RMIConnectionImpl@3d1bbc3e: connectionId=rmi://192.168.5.4 12] closing. -2024-08-07 16:48:16 - [javax.management.remote.rmi.RMIConnectionImpl@3d1bbc3e: connectionId=rmi://192.168.5.4 12] closed. -2024-08-07 16:48:16 - RMI TCP Connection(3)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:16 - [javax.management.remote.rmi.RMIConnectionImpl@1d52ad6d: connectionId=rmi://192.168.5.4 11] closing. -2024-08-07 16:48:16 - [javax.management.remote.rmi.RMIConnectionImpl@1d52ad6d: connectionId=rmi://192.168.5.4 11] closed. -2024-08-07 16:48:18 - RMI TCP Connection(1)-192.168.5.4: (port 64598) connection closed -2024-08-07 16:48:18 - RMI TCP Connection(2)-192.168.5.4: (port 64598) connection closed -2024-08-07 16:48:18 - RMI TCP Connection(1)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64599,localport=64598] -2024-08-07 16:48:18 - RMI TCP Connection(3)-192.168.5.4: (port 64598) connection closed -2024-08-07 16:48:18 - RMI TCP Connection(3)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64600,localport=64598] -2024-08-07 16:48:18 - RMI TCP Connection(2)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64601,localport=64598] -2024-08-07 16:48:18 - RMI TCP Connection(2)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64601,localport=64598] -2024-08-07 16:48:18 - RMI TCP Connection(1)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64599,localport=64598] -2024-08-07 16:48:18 - RMI TCP Connection(3)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64600,localport=64598] -2024-08-07 16:48:18 - RMI TCP Connection(4)-192.168.5.4: accepted socket from [192.168.5.4:64603] -2024-08-07 16:48:18 - RMI TCP Connection(4)-192.168.5.4: (port 64598) op = 80 -2024-08-07 16:48:18 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:18 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:18 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:18 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:18 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e56bc9b -2024-08-07 16:48:45 - RMI TCP Connection(4)-192.168.5.4: (port 64598) connection closed -2024-08-07 16:48:45 - RMI TCP Connection(4)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64603,localport=64598] -2024-08-07 16:48:45 - RMI TCP Connection(4)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64603,localport=64598] -2024-08-07 16:48:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:48:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:49:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:49:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:49:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:49:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:50:02 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 16:50:02 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Wed Aug 07 16:48:14 KST 2024 -2024-08-07 16:50:02 - Stopping beans in phase 2147483647 -2024-08-07 16:50:02 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 16:50:02 - Stopping beans in phase 2147482623 -2024-08-07 16:50:02 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 16:50:02 - Stopping beans in phase 2147481599 -2024-08-07 16:50:02 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 16:50:02 - Stopping beans in phase -2147483647 -2024-08-07 16:50:02 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 16:50:02 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 16:50:02 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 16:50:02 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 16:50:02 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 16:50:02 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 16:50:02 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 16:50:02 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 16:50:02 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 16:50:02 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 16:50:02 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 16:50:02 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 16:50:02 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 16:50:02 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 16:50:02 - Unregistering JMX-exposed beans on shutdown -2024-08-07 16:50:02 - Unregistering JMX-exposed beans -2024-08-07 16:50:02 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 16:50:02 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 16:50:02 - HHH000031: Closing -2024-08-07 16:50:02 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@356f3d62] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@71d8794f] -2024-08-07 16:50:02 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 16:50:02 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 16:50:02 - HikariPool-1 - Shutdown initiated... -2024-08-07 16:50:02 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:50:02 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:50:02 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:50:02 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:50:02 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:50:02 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:50:02 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:50:02 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:50:02 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:50:02 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:50:02 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:50:02 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 16:50:02 - HikariPool-1 - Shutdown completed. -2024-08-07 16:50:02 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 16:50:04 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 16:50:04 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 16:50:04 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:50:04 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:50:04 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:50:04 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:50:04 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:50:04 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:50:04 - Loaded expression factory via original TCCL -2024-08-07 16:50:04 - Starting HaengdongApplication using Java 17.0.12 with PID 61802 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 16:50:04 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 16:50:04 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 16:50:04 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 16:50:04 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 16:50:04 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 16:50:04 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:50:04 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:50:04 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:50:04 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:50:04 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:50:04 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 16:50:04 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 16:50:04 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 16:50:04 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 16:50:04 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 16:50:04 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 16:50:04 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 16:50:04 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 16:50:04 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 16:50:04 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 16:50:04 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 16:50:04 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 16:50:04 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 16:50:04 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 16:50:04 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 16:50:04 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 16:50:04 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 16:50:04 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 16:50:04 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 16:50:04 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 16:50:04 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 16:50:04 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 16:50:04 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 16:50:04 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 16:50:04 - Finished Spring Data repository scanning in 16 ms. Found 4 JPA repository interfaces. -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 16:50:04 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 16:50:04 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 16:50:04 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 16:50:04 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 16:50:04 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 16:50:04 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 16:50:04 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 16:50:04 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 16:50:04 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@1d6a8386] -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 16:50:04 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 16:50:04 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 16:50:04 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 16:50:04 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 16:50:04 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 16:50:04 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 16:50:04 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 16:50:04 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 16:50:04 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:50:04 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:50:04 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 16:50:04 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 16:50:04 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 16:50:04 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 16:50:04 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:50:04 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:50:04 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:50:04 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 16:50:04 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 16:50:04 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 16:50:04 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 16:50:04 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 16:50:04 - Tomcat initialized with port 8080 (http) -2024-08-07 16:50:04 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 16:50:04 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 16:50:04 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 16:50:04 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [STARTING_PREP] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [STARTING] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [STARTED] -2024-08-07 16:50:04 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 16:50:04 - Starting service [Tomcat] -2024-08-07 16:50:04 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 16:50:04 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 16:50:04 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 16:50:04 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:50:04 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:50:04 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:50:04 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 16:50:04 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [STARTING_PREP] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [STARTING_PREP] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [STARTING] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [STARTED] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [STARTING] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [STARTED] -2024-08-07 16:50:04 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:50:04 - Starting this Loader -2024-08-07 16:50:04 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:50:04 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:50:04 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:50:04 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:50:04 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:50:04 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:50:04 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:50:04 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:50:04 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:50:04 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:50:04 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:50:04 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 16:50:04 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [STARTING_PREP] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [STARTING] -2024-08-07 16:50:04 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [STARTED] -2024-08-07 16:50:04 - Initializing Spring embedded WebApplicationContext -2024-08-07 16:50:04 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 16:50:04 - Root WebApplicationContext: initialization completed in 616 ms -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:50:04 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 16:50:04 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 16:50:04 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 16:50:04 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:50:04 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 16:50:04 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:50:04 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 16:50:04 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:50:04 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:50:04 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:50:04 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:50:04 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 16:50:04 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 16:50:04 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 16:50:04 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:50:04 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:50:04 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 16:50:04 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 16:50:04 - HikariPool-1 - configuration: -2024-08-07 16:50:04 - allowPoolSuspension.............false -2024-08-07 16:50:04 - autoCommit......................true -2024-08-07 16:50:04 - catalog.........................none -2024-08-07 16:50:04 - connectionInitSql...............none -2024-08-07 16:50:04 - connectionTestQuery.............none -2024-08-07 16:50:04 - connectionTimeout...............30000 -2024-08-07 16:50:04 - dataSource......................none -2024-08-07 16:50:04 - dataSourceClassName.............none -2024-08-07 16:50:04 - dataSourceJNDI..................none -2024-08-07 16:50:04 - dataSourceProperties............{password=<masked>} -2024-08-07 16:50:04 - driverClassName................."org.h2.Driver" -2024-08-07 16:50:04 - exceptionOverrideClassName......none -2024-08-07 16:50:04 - healthCheckProperties...........{} -2024-08-07 16:50:04 - healthCheckRegistry.............none -2024-08-07 16:50:04 - idleTimeout.....................600000 -2024-08-07 16:50:04 - initializationFailTimeout.......1 -2024-08-07 16:50:04 - isolateInternalQueries..........false -2024-08-07 16:50:04 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 16:50:04 - keepaliveTime...................0 -2024-08-07 16:50:04 - leakDetectionThreshold..........0 -2024-08-07 16:50:04 - maxLifetime.....................1800000 -2024-08-07 16:50:04 - maximumPoolSize.................10 -2024-08-07 16:50:04 - metricRegistry..................none -2024-08-07 16:50:04 - metricsTrackerFactory...........none -2024-08-07 16:50:04 - minimumIdle.....................10 -2024-08-07 16:50:04 - password........................<masked> -2024-08-07 16:50:04 - poolName........................"HikariPool-1" -2024-08-07 16:50:04 - readOnly........................false -2024-08-07 16:50:04 - registerMbeans..................false -2024-08-07 16:50:04 - scheduledExecutor...............none -2024-08-07 16:50:04 - schema..........................none -2024-08-07 16:50:04 - threadFactory...................internal -2024-08-07 16:50:04 - transactionIsolation............default -2024-08-07 16:50:04 - username........................"sa" -2024-08-07 16:50:04 - validationTimeout...............5000 -2024-08-07 16:50:04 - HikariPool-1 - Starting... -2024-08-07 16:50:04 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 16:50:04 - HikariPool-1 - Start completed. -2024-08-07 16:50:04 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 16:50:04 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 16:50:04 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:50:04 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 16:50:04 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:50:04 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:50:04 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:50:04 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 16:50:04 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 16:50:04 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 16:50:04 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 16:50:04 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 16:50:04 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 16:50:04 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 16:50:04 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 16:50:04 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 16:50:04 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 16:50:04 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 16:50:04 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 16:50:04 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 16:50:04 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 16:50:04 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 16:50:04 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 16:50:04 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 16:50:04 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 16:50:04 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 16:50:04 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 16:50:04 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 16:50:04 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 16:50:04 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 16:50:04 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 16:50:04 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 16:50:04 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: accepted socket from [192.168.5.4:64620] -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:05 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:50:05 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:50:05 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:50:05 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@59d5c537] to [INITIALIZING] -2024-08-07 16:50:05 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@59d5c537] to [INITIALIZED] -2024-08-07 16:50:05 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@59d5c537] to [STARTING_PREP] -2024-08-07 16:50:05 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@59d5c537] to [STARTING] -2024-08-07 16:50:05 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@59d5c537] to [STARTED] -2024-08-07 16:50:05 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:50:05 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:05 - Filter 'requestContextFilter' configured for use -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:05 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 16:50:05 - Filter 'characterEncodingFilter' configured for use -2024-08-07 16:50:05 - Filter 'formContentFilter' configured for use -2024-08-07 16:50:05 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 16:50:05 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 16:50:05 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:50:05 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:50:05 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:50:05 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:50:05 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:50:05 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:50:05 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:05 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:50:05 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:50:05 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:50:05 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:50:05 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:50:05 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:50:05 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:50:05 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:50:05 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 16:50:05 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 16:50:05 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:50:05 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:50:05 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:50:05 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:50:05 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:50:05 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:50:05 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:50:05 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:50:05 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:50:05 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:50:05 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 16:50:05 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 16:50:05 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [STARTING_PREP] -2024-08-07 16:50:05 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [STARTING] -2024-08-07 16:50:05 - Registered host [localhost] -2024-08-07 16:50:05 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 16:50:05 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 16:50:05 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 16:50:05 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 16:50:05 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [STARTED] -2024-08-07 16:50:05 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 16:50:05 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 84 -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:05 - connectionId=rmi://192.168.5.4 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:50:05 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 16:50:05 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:05 - [javax.management.remote.rmi.RMIConnectionImpl@43a3a1b3: connectionId=rmi://192.168.5.4 1] closing. -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 16:50:05 - [javax.management.remote.rmi.RMIConnectionImpl@43a3a1b3: connectionId=rmi://192.168.5.4 1] closed. -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 16:50:05 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 16:50:05 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:50:05 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:50:05 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 16:50:05 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 16:50:05 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:50:05 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:50:05 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 16:50:05 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 16:50:05 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 16:50:05 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 16:50:05 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 16:50:05 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 16:50:05 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 16:50:05 - HHH000206: 'hibernate.properties' not found -2024-08-07 16:50:05 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 16:50:05 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 16:50:05 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 16:50:05 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 16:50:05 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 16:50:05 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 16:50:05 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 16:50:05 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 16:50:05 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 16:50:05 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 16:50:05 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 16:50:05 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 16:50:05 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 16:50:05 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 16:50:05 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 16:50:05 - HHH000026: Second-level cache disabled -2024-08-07 16:50:05 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 16:50:05 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 16:50:05 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 16:50:05 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-07 16:50:05 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-07 16:50:05 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 16:50:05 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 16:50:05 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 16:50:05 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 16:50:05 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 16:50:05 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 16:50:05 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 16:50:05 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 16:50:05 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 16:50:05 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 16:50:05 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 16:50:05 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 16:50:05 - Adding type registration image -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:50:05 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 16:50:05 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 16:50:05 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 16:50:05 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 16:50:05 - Adding type registration short -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 16:50:05 - Adding type registration short -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 16:50:05 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 16:50:05 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 16:50:05 - Adding type registration int -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 16:50:05 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 16:50:05 - Adding type registration long -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 16:50:05 - Adding type registration long -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 16:50:05 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 16:50:05 - Adding type registration float -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 16:50:05 - Adding type registration float -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 16:50:05 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 16:50:05 - Adding type registration double -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 16:50:05 - Adding type registration double -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 16:50:05 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 16:50:05 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 16:50:05 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 16:50:05 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 16:50:05 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 16:50:05 - Adding type registration character -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 16:50:05 - Adding type registration char -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 16:50:05 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 16:50:05 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 16:50:05 - Adding type registration string -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 16:50:05 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 16:50:05 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 16:50:05 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 16:50:05 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 16:50:05 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 16:50:05 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 16:50:05 - Adding type registration text -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 16:50:05 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 16:50:05 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 16:50:05 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 16:50:05 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 16:50:05 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 16:50:05 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 16:50:05 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:50:05 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 16:50:05 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 16:50:05 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 16:50:05 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 16:50:05 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 16:50:05 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 16:50:05 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 16:50:05 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 16:50:05 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 16:50:05 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 16:50:05 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 16:50:05 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 16:50:05 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 16:50:05 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 16:50:05 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 16:50:05 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 16:50:05 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 16:50:05 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 16:50:05 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 16:50:05 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:50:05 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 16:50:05 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 16:50:05 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 16:50:05 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 16:50:05 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 16:50:05 - Adding type registration date -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 16:50:05 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 16:50:05 - Adding type registration time -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 16:50:05 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 16:50:05 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 16:50:05 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 16:50:05 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 16:50:05 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 16:50:05 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 16:50:05 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 16:50:05 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 16:50:05 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 16:50:05 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 16:50:05 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 16:50:05 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 16:50:05 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 16:50:05 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 16:50:05 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 16:50:05 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:50:05 - Adding type registration class -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 16:50:05 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 16:50:05 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 16:50:05 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 16:50:05 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 16:50:05 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 16:50:05 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 16:50:05 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 16:50:05 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 16:50:05 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 16:50:05 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 16:50:05 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 16:50:05 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 16:50:05 - Adding type registration url -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 16:50:05 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 16:50:05 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 16:50:05 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 16:50:05 - Adding type registration object -> org.hibernate.type.JavaObjectType@6e017950 -2024-08-07 16:50:05 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@6e017950 -2024-08-07 16:50:05 - Adding type registration null -> org.hibernate.type.NullType@3e2772a9 -2024-08-07 16:50:05 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@4449b273 -2024-08-07 16:50:05 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@1fa18f87 -2024-08-07 16:50:05 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@1d9bd1d6 -2024-08-07 16:50:05 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@18ac4af6 -2024-08-07 16:50:05 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@117fb9ba -2024-08-07 16:50:05 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@2b1d1a5 -2024-08-07 16:50:05 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@41e7a544 -2024-08-07 16:50:05 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@3b66ac74 -2024-08-07 16:50:05 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@4f4d05b3] into BootstrapContext; was [null] -2024-08-07 16:50:05 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@4f4d05b3) [was null] -2024-08-07 16:50:05 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 16:50:05 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@160546b1] into BootstrapContext; was [null] -2024-08-07 16:50:05 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@103e7c7c] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@5c3710b3] -2024-08-07 16:50:05 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 16:50:05 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 16:50:05 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 16:50:05 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-07 16:50:05 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 16:50:05 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 16:50:05 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@4f4d05b3] -2024-08-07 16:50:05 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@4f4d05b3] -2024-08-07 16:50:05 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 16:50:05 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 16:50:05 - JDBC version : 4.2 -2024-08-07 16:50:05 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 16:50:05 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 16:50:05 - HikariPool-1 - After adding stats (total=5, active=1, idle=4, waiting=0) -2024-08-07 16:50:05 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 16:50:05 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 16:50:05 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 16:50:05 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 16:50:05 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 16:50:05 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 16:50:05 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 16:50:05 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 16:50:05 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 16:50:05 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 16:50:05 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@229514ff] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@664254b6] -2024-08-07 16:50:05 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 16:50:05 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 16:50:05 - Import with entity name Action -2024-08-07 16:50:05 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 16:50:05 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:50:05 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 16:50:05 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 16:50:05 - Binding column: AnnotatedColumn() -2024-08-07 16:50:05 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:50:05 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:50:05 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:50:05 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 16:50:05 - building BasicValue for id -2024-08-07 16:50:05 - Skipping column re-registration: action.id -2024-08-07 16:50:05 - Building property id -2024-08-07 16:50:05 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:50:05 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:50:05 - Binding column: AnnotatedColumn() -2024-08-07 16:50:05 - Building property event -2024-08-07 16:50:05 - Binding column: AnnotatedColumn() -2024-08-07 16:50:05 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 16:50:05 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 16:50:05 - building BasicValue for sequence -2024-08-07 16:50:05 - Skipping column re-registration: action.sequence -2024-08-07 16:50:05 - Building property sequence -2024-08-07 16:50:05 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:50:05 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 16:50:05 - Import with entity name BillAction -2024-08-07 16:50:05 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 16:50:05 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:50:05 - Binding column: AnnotatedColumn() -2024-08-07 16:50:05 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:50:05 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:50:05 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:50:05 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 16:50:05 - building BasicValue for id -2024-08-07 16:50:05 - Skipping column re-registration: bill_action.id -2024-08-07 16:50:05 - Building property id -2024-08-07 16:50:05 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:50:05 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:50:05 - Binding column: AnnotatedColumn() -2024-08-07 16:50:05 - Building property action -2024-08-07 16:50:05 - Binding column: AnnotatedColumn() -2024-08-07 16:50:05 - MetadataSourceProcessor property price with lazy=false -2024-08-07 16:50:05 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 16:50:05 - building BasicValue for price -2024-08-07 16:50:05 - Skipping column re-registration: bill_action.price -2024-08-07 16:50:05 - Building property price -2024-08-07 16:50:05 - Binding column: AnnotatedColumn() -2024-08-07 16:50:05 - MetadataSourceProcessor property title with lazy=false -2024-08-07 16:50:05 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 16:50:05 - building BasicValue for title -2024-08-07 16:50:05 - Skipping column re-registration: bill_action.title -2024-08-07 16:50:05 - Building property title -2024-08-07 16:50:05 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:50:05 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 16:50:05 - Import with entity name MemberAction -2024-08-07 16:50:05 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 16:50:05 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:50:05 - Binding column: AnnotatedColumn() -2024-08-07 16:50:05 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:50:05 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:50:05 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:50:05 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 16:50:05 - building BasicValue for id -2024-08-07 16:50:05 - Skipping column re-registration: member_action.id -2024-08-07 16:50:05 - Building property id -2024-08-07 16:50:05 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:50:05 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:50:05 - Binding column: AnnotatedColumn() -2024-08-07 16:50:05 - Building property action -2024-08-07 16:50:05 - Binding column: AnnotatedColumn() -2024-08-07 16:50:05 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 16:50:05 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 16:50:05 - building BasicValue for memberGroupId -2024-08-07 16:50:05 - Skipping column re-registration: member_action.member_group_id -2024-08-07 16:50:05 - Building property memberGroupId -2024-08-07 16:50:05 - Binding column: AnnotatedColumn() -2024-08-07 16:50:05 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 16:50:05 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 16:50:05 - building BasicValue for memberName -2024-08-07 16:50:05 - Skipping column re-registration: member_action.member_name -2024-08-07 16:50:05 - Building property memberName -2024-08-07 16:50:05 - Binding column: AnnotatedColumn() -2024-08-07 16:50:05 - MetadataSourceProcessor property status with lazy=false -2024-08-07 16:50:05 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 16:50:05 - building BasicValue for status -2024-08-07 16:50:05 - Skipping column re-registration: member_action.status -2024-08-07 16:50:05 - Building property status -2024-08-07 16:50:05 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:50:05 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 16:50:05 - Import with entity name Event -2024-08-07 16:50:05 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 16:50:05 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:50:05 - Binding column: AnnotatedColumn() -2024-08-07 16:50:05 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:50:05 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:50:05 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:50:05 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 16:50:05 - building BasicValue for id -2024-08-07 16:50:05 - Skipping column re-registration: event.id -2024-08-07 16:50:05 - Building property id -2024-08-07 16:50:05 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:50:05 - Binding column: AnnotatedColumn() -2024-08-07 16:50:05 - MetadataSourceProcessor property name with lazy=false -2024-08-07 16:50:05 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 16:50:05 - building BasicValue for name -2024-08-07 16:50:05 - Skipping column re-registration: event.name -2024-08-07 16:50:05 - Building property name -2024-08-07 16:50:05 - Binding column: AnnotatedColumn() -2024-08-07 16:50:05 - MetadataSourceProcessor property password with lazy=false -2024-08-07 16:50:05 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 16:50:05 - building BasicValue for password -2024-08-07 16:50:05 - Skipping column re-registration: event.password -2024-08-07 16:50:05 - Building property password -2024-08-07 16:50:05 - Binding column: AnnotatedColumn() -2024-08-07 16:50:05 - MetadataSourceProcessor property token with lazy=false -2024-08-07 16:50:05 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 16:50:05 - building BasicValue for token -2024-08-07 16:50:05 - Skipping column re-registration: event.token -2024-08-07 16:50:05 - Building property token -2024-08-07 16:50:05 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 16:50:05 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 16:50:05 - Import with entity name EventStep -2024-08-07 16:50:05 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 16:50:05 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:50:05 - Binding column: AnnotatedColumn() -2024-08-07 16:50:05 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:50:05 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:50:05 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:50:05 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 16:50:05 - building BasicValue for id -2024-08-07 16:50:05 - Skipping column re-registration: event_step.id -2024-08-07 16:50:05 - Building property id -2024-08-07 16:50:05 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:50:05 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:50:05 - Binding column: AnnotatedColumn() -2024-08-07 16:50:05 - Building property event -2024-08-07 16:50:05 - Binding column: AnnotatedColumn() -2024-08-07 16:50:05 - MetadataSourceProcessor property name with lazy=false -2024-08-07 16:50:05 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 16:50:05 - building BasicValue for name -2024-08-07 16:50:05 - Skipping column re-registration: event_step.name -2024-08-07 16:50:05 - Building property name -2024-08-07 16:50:05 - Binding column: AnnotatedColumn() -2024-08-07 16:50:05 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 16:50:05 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 16:50:05 - building BasicValue for sequence -2024-08-07 16:50:05 - Skipping column re-registration: event_step.sequence -2024-08-07 16:50:05 - Building property sequence -2024-08-07 16:50:05 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 16:50:05 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:50:05 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 16:50:05 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:50:05 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 16:50:05 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 16:50:05 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:50:05 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 16:50:05 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 16:50:05 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 16:50:05 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:50:05 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 16:50:05 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 16:50:05 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 16:50:05 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:50:05 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 16:50:05 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 16:50:05 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 16:50:05 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 16:50:05 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 16:50:05 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 16:50:05 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 16:50:05 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 16:50:05 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 16:50:05 - Building session factory -2024-08-07 16:50:05 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:50:05 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@6b3bc1f6, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@7491cdae, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.16284663681477755738, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=61802, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.16284663681477755738, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@3050d479, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 16:50:05 - Session factory constructed with filter configurations : {} -2024-08-07 16:50:05 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:50:05 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:50:05 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:50:05 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:50:05 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:50:05 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:50:05 - Loaded expression factory via original TCCL -2024-08-07 16:50:05 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:50:05 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:50:05 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:50:05 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:50:05 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:50:05 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:50:05 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:50:05 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:50:05 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:50:05 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:50:05 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:50:05 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:50:05 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:50:05 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:50:05 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:50:05 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:50:05 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:50:05 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 16:50:05 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@39fc17be] under count; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@55d8f6bb] under every; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@56b48163] under any; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4fe9adfb] under sinh; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@f8fe81e] under cosh; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6ad0cd43] under tanh; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7de43652] under pi; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7fe0ca60] under log; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 16:50:05 - Registering alternate key : length -> character_length -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@2a9ea03f] under position; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@78e7b83] under overlay; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@74e175c7] under trim; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@21d48c40] under cast; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4a10c019] under collate; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@639cb0c8] under extract; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@7f9d40b3] under ifnull; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@2ba9ed19] under pad; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@641cea11] under str; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@4b7c0f39] under format; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@1b30b6f8] under timestampadd; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@b814e23] under timestampdiff; prior registration was null -2024-08-07 16:50:05 - Registering alternate key : dateadd -> timestampadd -2024-08-07 16:50:05 - Registering alternate key : datediff -> timestampdiff -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7c4a5ef2] under current_date; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@299dd381] under current_time; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@34d3409d] under current_timestamp; prior registration was null -2024-08-07 16:50:05 - Registering alternate key : current date -> current_date -2024-08-07 16:50:05 - Registering alternate key : current time -> current_time -2024-08-07 16:50:05 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16732340] under local_date; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@38e052b2] under local_time; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7fa68ff4] under local_datetime; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@515fff35] under offset_datetime; prior registration was null -2024-08-07 16:50:05 - Registering alternate key : local date -> local_date -2024-08-07 16:50:05 - Registering alternate key : local time -> local_time -2024-08-07 16:50:05 - Registering alternate key : local datetime -> local_datetime -2024-08-07 16:50:05 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5eb9bf7d] under instant; prior registration was null -2024-08-07 16:50:05 - Registering alternate key : current_instant -> instant -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@123d0816] under sql; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@4601a148] under count; prior registration was org.hibernate.dialect.function.CountFunction@39fc17be -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@1e033801] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7de43652 -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@58e4aa67] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 16:50:05 - Registering alternate key : day -> day_of_month -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@38e052b2 -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@7fa68ff4 -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@156eeff1] under trunc; prior registration was null -2024-08-07 16:50:05 - Registering alternate key : truncate -> trunc -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@34001c5d] under date_trunc; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 16:50:05 - Registering alternate key : chr -> char -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@30e15628] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@2a9ea03f -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@37ab1b10] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 16:50:05 - Registering alternate key : every -> bool_and -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 16:50:05 - Registering alternate key : any -> bool_or -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@55d87b73] under format; prior registration was org.hibernate.dialect.function.FormatFunction@4b7c0f39 -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@30ca66c5] under listagg; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@125a8ab6] under mode; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@792b9dd3] under percentile_cont; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@cbc3bf3] under percentile_disc; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@3fdede3a] under rank; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@41948c13] under dense_rank; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@3085befb] under percent_rank; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@62264d4f] under cume_dist; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@57ac236a] under array; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@4542af89] under array_list; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@cce92b5] under array_agg; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@1a6a4595] under array_position; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@2a9e7b4d] under array_positions; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@69fe8c75] under array_positions_list; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@633cad4d] under array_length; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@384f0e32] under array_concat; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@4803bf73] under array_prepend; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@13731ff4] under array_append; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@257d3968] under array_contains; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@23cfdfa2] under array_contains_nullable; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@a84b6de] under array_overlaps; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@76eee0b1] under array_overlaps_nullable; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5d67bf4d] under array_get; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@18918d70] under array_set; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@2681185e] under array_remove; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@15fd3088] under array_remove_index; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@f13e0a2] under array_slice; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@4fe3f9ef] under array_replace; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2c86b0ea] under array_trim; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@30b97fcf] under array_fill; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@b791e6e] under array_fill_list; prior registration was null -2024-08-07 16:50:05 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@510bd87a] under array_to_string; prior registration was null -2024-08-07 16:50:05 - abs(NUMERIC arg) -2024-08-07 16:50:05 - Double acos(NUMERIC arg) -2024-08-07 16:50:05 - Boolean any(BOOLEAN predicate) -2024-08-07 16:50:05 - array( ... ) -2024-08-07 16:50:05 - array_agg(arg) -2024-08-07 16:50:05 - array_append( ... ) -2024-08-07 16:50:05 - array_concat( ... ) -2024-08-07 16:50:05 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 16:50:05 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 16:50:05 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 16:50:05 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 16:50:05 - array_get(ARRAY array, INTEGER index) -2024-08-07 16:50:05 - Integer array_length(ARRAY array) -2024-08-07 16:50:05 - array_list( ... ) -2024-08-07 16:50:05 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 16:50:05 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 16:50:05 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 16:50:05 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 16:50:05 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 16:50:05 - array_prepend( ... ) -2024-08-07 16:50:05 - array_remove( ... ) -2024-08-07 16:50:05 - array_remove_index( ... ) -2024-08-07 16:50:05 - array_replace( ... ) -2024-08-07 16:50:05 - array_set( ... ) -2024-08-07 16:50:05 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 16:50:05 - String array_to_string( ... ) -2024-08-07 16:50:05 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 16:50:05 - Integer ascii(STRING arg) -2024-08-07 16:50:05 - Double asin(NUMERIC arg) -2024-08-07 16:50:05 - Double atan(NUMERIC arg) -2024-08-07 16:50:05 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 16:50:05 - avg(NUMERIC arg) -2024-08-07 16:50:05 - bit_and(arg) -2024-08-07 16:50:05 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 16:50:05 - bit_or(arg) -2024-08-07 16:50:05 - bitand(arg0, arg1) -2024-08-07 16:50:05 - bitnot(arg) -2024-08-07 16:50:05 - bitor(arg0, arg1) -2024-08-07 16:50:05 - bitxor(arg0, arg1) -2024-08-07 16:50:05 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 16:50:05 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 16:50:05 - cast(arg as Type) -2024-08-07 16:50:05 - ceiling(NUMERIC arg) -2024-08-07 16:50:05 - Character char(INTEGER arg) -2024-08-07 16:50:05 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 16:50:05 - Character chr(INTEGER arg) -2024-08-07 16:50:05 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 16:50:05 - String collate(STRING string as COLLATION collation) -2024-08-07 16:50:05 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 16:50:05 - Double cos(NUMERIC arg) -2024-08-07 16:50:05 - Double cosh(NUMERIC arg) -2024-08-07 16:50:05 - Double cot(NUMERIC arg) -2024-08-07 16:50:05 - Long count([distinct ]{arg|*}) -2024-08-07 16:50:05 - Double cume_dist([arg0[, ...]]) -2024-08-07 16:50:05 - Date curdate() -2024-08-07 16:50:05 - Date current date -2024-08-07 16:50:05 - Time current time -2024-08-07 16:50:05 - Timestamp current timestamp -2024-08-07 16:50:05 - Date current_date -2024-08-07 16:50:05 - Instant current_instant -2024-08-07 16:50:05 - Time current_time -2024-08-07 16:50:05 - Timestamp current_timestamp -2024-08-07 16:50:05 - Time curtime() -2024-08-07 16:50:05 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 16:50:05 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 16:50:05 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 16:50:05 - Integer day(DATE arg) -2024-08-07 16:50:05 - Integer day_of_month(DATE arg) -2024-08-07 16:50:05 - Integer day_of_week(DATE arg) -2024-08-07 16:50:05 - Integer day_of_year(DATE arg) -2024-08-07 16:50:05 - String dayname(DATE arg) -2024-08-07 16:50:05 - Double degrees(NUMERIC arg) -2024-08-07 16:50:05 - Long dense_rank([arg0[, ...]]) -2024-08-07 16:50:05 - Boolean every(BOOLEAN predicate) -2024-08-07 16:50:05 - Double exp(NUMERIC arg) -2024-08-07 16:50:05 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 16:50:05 - first_valueANY value -2024-08-07 16:50:05 - floor(NUMERIC arg) -2024-08-07 16:50:05 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 16:50:05 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 16:50:05 - Integer hour(TIME arg) -2024-08-07 16:50:05 - ifnull(arg0, arg1) -2024-08-07 16:50:05 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 16:50:05 - Instant instant -2024-08-07 16:50:05 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 16:50:05 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 16:50:05 - last_valueANY value -2024-08-07 16:50:05 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 16:50:05 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 16:50:05 - String left(STRING string, INTEGER length) -2024-08-07 16:50:05 - Integer length(STRING_OR_CLOB arg) -2024-08-07 16:50:05 - String listagg(STRING arg0, STRING arg1) -2024-08-07 16:50:05 - Double ln(NUMERIC arg) -2024-08-07 16:50:05 - LocalDate local date -2024-08-07 16:50:05 - LocalDateTime local datetime -2024-08-07 16:50:05 - LocalTime local time -2024-08-07 16:50:05 - LocalDate local_date -2024-08-07 16:50:05 - LocalDateTime local_datetime -2024-08-07 16:50:05 - LocalTime local_time -2024-08-07 16:50:05 - Time localtime -2024-08-07 16:50:05 - Timestamp localtimestamp -2024-08-07 16:50:05 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 16:50:05 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 16:50:05 - Double log10(NUMERIC arg) -2024-08-07 16:50:05 - String lower(STRING string) -2024-08-07 16:50:05 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 16:50:05 - String ltrim(STRING string) -2024-08-07 16:50:05 - max(COMPARABLE arg) -2024-08-07 16:50:05 - Double median(NUMERIC arg) -2024-08-07 16:50:05 - Integer microsecond(TIME arg) -2024-08-07 16:50:05 - min(COMPARABLE arg) -2024-08-07 16:50:05 - Integer minute(TIME arg) -2024-08-07 16:50:05 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 16:50:05 - mode() -2024-08-07 16:50:05 - Integer month(DATE arg) -2024-08-07 16:50:05 - String monthname(DATE arg) -2024-08-07 16:50:05 - Timestamp now() -2024-08-07 16:50:05 - nth_valueANY value, INTEGER nth -2024-08-07 16:50:05 - nullif(arg0, arg1) -2024-08-07 16:50:05 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 16:50:05 - OffsetDateTime offset datetime -2024-08-07 16:50:05 - OffsetDateTime offset_datetime -2024-08-07 16:50:05 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 16:50:05 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 16:50:05 - Double percent_rank([arg0[, ...]]) -2024-08-07 16:50:05 - percentile_cont(NUMERIC arg) -2024-08-07 16:50:05 - percentile_disc(NUMERIC arg) -2024-08-07 16:50:05 - Double pi -2024-08-07 16:50:05 - Integer position(STRING pattern in STRING string) -2024-08-07 16:50:05 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 16:50:05 - Integer quarter(DATE arg) -2024-08-07 16:50:05 - Double radians(NUMERIC arg) -2024-08-07 16:50:05 - Double rand([INTEGER seed]) -2024-08-07 16:50:05 - Long rank([arg0[, ...]]) -2024-08-07 16:50:05 - String repeat(STRING string, INTEGER times) -2024-08-07 16:50:05 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 16:50:05 - String right(STRING string, INTEGER length) -2024-08-07 16:50:05 - round(NUMERIC number[, INTEGER places]) -2024-08-07 16:50:05 - Long row_number() -2024-08-07 16:50:05 - Long rownum() -2024-08-07 16:50:05 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 16:50:05 - String rtrim(STRING string) -2024-08-07 16:50:05 - Integer second(TIME arg) -2024-08-07 16:50:05 - Integer sign(NUMERIC arg) -2024-08-07 16:50:05 - Double sin(NUMERIC arg) -2024-08-07 16:50:05 - Double sinh(NUMERIC arg) -2024-08-07 16:50:05 - String soundex(arg) -2024-08-07 16:50:05 - String space(INTEGER arg) -2024-08-07 16:50:05 - Object sql -2024-08-07 16:50:05 - Double sqrt(NUMERIC arg) -2024-08-07 16:50:05 - Double stddev_pop(NUMERIC arg) -2024-08-07 16:50:05 - Double stddev_samp(NUMERIC arg) -2024-08-07 16:50:05 - String str(arg) -2024-08-07 16:50:05 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 16:50:05 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 16:50:05 - sum(arg) -2024-08-07 16:50:05 - Timestamp sysdate -2024-08-07 16:50:05 - Double tan(NUMERIC arg) -2024-08-07 16:50:05 - Double tanh(NUMERIC arg) -2024-08-07 16:50:05 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 16:50:05 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 16:50:05 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 16:50:05 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 16:50:05 - trunc( ... ) -2024-08-07 16:50:05 - truncate( ... ) -2024-08-07 16:50:05 - String upper(STRING string) -2024-08-07 16:50:05 - Double var_pop(NUMERIC arg) -2024-08-07 16:50:05 - Double var_samp(NUMERIC arg) -2024-08-07 16:50:05 - Integer week(DATE arg) -2024-08-07 16:50:05 - Integer year(DATE arg) -2024-08-07 16:50:05 - Starting QueryInterpretationCache(2048) -2024-08-07 16:50:05 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 16:50:05 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 16:50:05 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:50:05 - Configured EntityCopyObserver strategy: disallow -2024-08-07 16:50:05 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:50:05 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:50:05 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:50:05 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 16:50:05 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:50:05 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:50:05 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 16:50:05 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:50:05 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:50:05 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 16:50:05 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:50:05 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:50:05 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 16:50:05 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:50:05 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:50:05 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 16:50:05 - Starting post-init callbacks -2024-08-07 16:50:05 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 16:50:05 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 16:50:05 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:50:05 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 16:50:05 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 16:50:05 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 16:50:05 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 16:50:05 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 16:50:05 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 82 -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 84 -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:05 - connectionId=rmi://192.168.5.4 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:50:05 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:05 - [javax.management.remote.rmi.RMIConnectionImpl@3c80d681: connectionId=rmi://192.168.5.4 2] closing. -2024-08-07 16:50:05 - [javax.management.remote.rmi.RMIConnectionImpl@3c80d681: connectionId=rmi://192.168.5.4 2] closed. -2024-08-07 16:50:05 - Created new SQL alias : ba1_0 -2024-08-07 16:50:05 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 16:50:05 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@40f931ec] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 16:50:05 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 16:50:05 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 16:50:05 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 16:50:05 - Version select: select id from bill_action where id=? -2024-08-07 16:50:05 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 16:50:05 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 16:50:05 - Delete (0): delete from bill_action where id=? -2024-08-07 16:50:05 - Created new SQL alias : ma1_0 -2024-08-07 16:50:05 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 16:50:05 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6dd7af2f] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:50:05 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 16:50:05 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 16:50:05 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 16:50:05 - Version select: select id from member_action where id=? -2024-08-07 16:50:05 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 16:50:05 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 16:50:05 - Delete (0): delete from member_action where id=? -2024-08-07 16:50:05 - Created new SQL alias : e1_0 -2024-08-07 16:50:05 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 16:50:05 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 16:50:05 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 16:50:05 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 16:50:05 - Version select: select id from event where id=? -2024-08-07 16:50:05 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 16:50:05 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 16:50:05 - Delete (0): delete from event where id=? -2024-08-07 16:50:05 - Created new SQL alias : a1_0 -2024-08-07 16:50:05 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 16:50:05 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@39c93af6] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 16:50:05 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 16:50:05 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 16:50:05 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 16:50:05 - Version select: select id from action where id=? -2024-08-07 16:50:05 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 16:50:05 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 16:50:05 - Delete (0): delete from action where id=? -2024-08-07 16:50:05 - Created new SQL alias : es1_0 -2024-08-07 16:50:05 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 16:50:05 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7b1b1784] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 16:50:05 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 16:50:05 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 16:50:05 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 16:50:05 - Version select: select id from event_step where id=? -2024-08-07 16:50:05 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 16:50:05 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 16:50:05 - Delete (0): delete from event_step where id=? -2024-08-07 16:50:05 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 16:50:05 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@229514ff] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@299c86f0] -2024-08-07 16:50:05 - Checking 0 named HQL queries -2024-08-07 16:50:05 - Checking 0 named SQL queries -2024-08-07 16:50:05 - - drop table if exists action cascade -2024-08-07 16:50:05 - - drop table if exists bill_action cascade -2024-08-07 16:50:05 - - drop table if exists event cascade -2024-08-07 16:50:05 - - drop table if exists event_step cascade -2024-08-07 16:50:05 - - drop table if exists member_action cascade -2024-08-07 16:50:05 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 16:50:05 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 16:50:05 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 16:50:05 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 16:50:05 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 16:50:05 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 16:50:05 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 16:50:05 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 16:50:05 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 16:50:05 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@1eda853f -2024-08-07 16:50:05 - Registering SessionFactory: 84557e2b-7583-4504-bf0a-459488df4acf (<unnamed>) -2024-08-07 16:50:05 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 16:50:05 - Instantiated SessionFactory -2024-08-07 16:50:05 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'actionService' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 16:50:05 - Initializing JpaMetamodelMappingContext… -2024-08-07 16:50:05 - Finished initializing JpaMetamodelMappingContext -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - Statistics initialized [enabled=false] -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 16:50:05 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 16:50:05 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 16:50:05 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - Looking up named query BillAction.findByAction_Event -2024-08-07 16:50:05 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:50:05 - Did not find named query BillAction.findByAction_Event -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - Looking up named query BillAction.findByAction_Id -2024-08-07 16:50:05 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:50:05 - Did not find named query BillAction.findByAction_Id -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 16:50:05 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:50:05 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 16:50:05 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:50:05 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 16:50:05 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:50:05 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(742976972590916)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(742976972590916)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(742976972590916)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(742976972590916)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(742976972590916).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:50:05 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:50:05 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 16:50:05 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:50:05 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:50:05 - Looking up named query MemberAction.findByAction -2024-08-07 16:50:05 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:50:05 - Did not find named query MemberAction.findByAction -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 16:50:05 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:50:05 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 16:50:05 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:50:05 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:50:05 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 16:50:05 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 16:50:05 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:50:05 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 16:50:05 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:50:05 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 16:50:05 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 16:50:05 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 16:50:05 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 16:50:05 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - Looking up named query Event.findByToken -2024-08-07 16:50:05 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:50:05 - Did not find named query Event.findByToken -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 16:50:05 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 16:50:05 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:50:05 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:50:05 - Did not find named query Action.findLastByEvent.count -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 16:50:05 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:50:05 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:50:05 - Looking up named query Action.findByIdAndEvent -2024-08-07 16:50:05 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:50:05 - Did not find named query Action.findByIdAndEvent -2024-08-07 16:50:05 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:50:05 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 16:50:05 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 16:50:05 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 16:50:05 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'eventService' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 16:50:05 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 16:50:05 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 16:50:05 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 16:50:05 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 16:50:05 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 16:50:05 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 16:50:05 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:50:05 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 16:50:05 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 16:50:05 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 16:50:05 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 16:50:05 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'actionController' -2024-08-07 16:50:05 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 16:50:05 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'eventController' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'authService' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 16:50:05 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 16:50:05 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 16:50:05 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 16:50:05 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:50:05 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 16:50:05 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 16:50:05 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 16:50:05 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:50:05 - Loaded expression factory via original TCCL -2024-08-07 16:50:05 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 16:50:05 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 16:50:05 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:50:05 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 16:50:05 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:50:05 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:50:05 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:50:05 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:50:05 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:50:05 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:50:05 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:50:05 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:50:05 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:50:05 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:50:05 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'error' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:50:05 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:50:05 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 16:50:05 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 16:50:05 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:50:05 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:50:05 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 16:50:05 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:50:05 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:50:05 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 16:50:05 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 16:50:05 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 16:50:05 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 16:50:05 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 16:50:05 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 16:50:05 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:50:05 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:50:05 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 16:50:05 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:50:05 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:50:05 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 16:50:05 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:50:05 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:50:05 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:50:05 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 16:50:05 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 16:50:05 - - s.h.p.EventController: - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) -2024-08-07 16:50:05 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 16:50:05 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 16:50:05 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 16:50:05 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:50:05 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 16:50:05 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:50:05 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:50:05 - 'beanNameHandlerMapping' {} -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 16:50:05 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:50:05 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 16:50:05 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 16:50:05 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 16:50:05 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:50:05 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:50:05 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 16:50:05 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:50:05 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 16:50:05 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 16:50:05 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 16:50:05 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:50:05 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:50:05 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:50:05 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 16:50:05 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:50:05 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 16:50:05 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 16:50:05 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 16:50:05 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 16:50:05 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 16:50:05 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 16:50:05 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 16:50:06 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 16:50:06 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 16:50:06 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:50:06 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 16:50:06 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 16:50:06 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 16:50:06 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 16:50:06 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 82 -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 84 -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: [192.168.5.4] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - [javax.management.remote.rmi.RMIConnectionImpl@2e2b22e6: connectionId=rmi://192.168.5.4 3] closing. -2024-08-07 16:50:06 - [javax.management.remote.rmi.RMIConnectionImpl@2e2b22e6: connectionId=rmi://192.168.5.4 3] closed. -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:50:06 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 16:50:06 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 16:50:06 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:50:06 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 16:50:06 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 16:50:06 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 16:50:06 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 16:50:06 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:50:06 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 16:50:06 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 16:50:06 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 16:50:06 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 16:50:06 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:50:06 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 16:50:06 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 16:50:06 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 16:50:06 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 16:50:06 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 16:50:06 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 16:50:06 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 16:50:06 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 16:50:06 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:50:06 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 16:50:06 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 16:50:06 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 16:50:06 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 16:50:06 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:50:06 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 16:50:06 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:50:06 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 16:50:06 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 16:50:06 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 16:50:06 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 16:50:06 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 16:50:06 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 16:50:06 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 16:50:06 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 16:50:06 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 16:50:06 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 16:50:06 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 16:50:06 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 16:50:06 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 16:50:06 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 16:50:06 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:50:06 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:50:06 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 16:50:06 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 16:50:06 - Using SLF4J as the default logging framework -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 16:50:06 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 16:50:06 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 16:50:06 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:50:06 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 16:50:06 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 16:50:06 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 16:50:06 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 16:50:06 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 16:50:06 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 16:50:06 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 16:50:06 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 16:50:06 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 16:50:06 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 16:50:06 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 16:50:06 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 16:50:06 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 16:50:06 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 16:50:06 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 16:50:06 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 16:50:06 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 16:50:06 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 16:50:06 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:50:06 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 16:50:06 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:50:06 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:50:06 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 16:50:06 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:50:06 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:50:06 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 16:50:06 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 16:50:06 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:50:06 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:50:06 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 16:50:06 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 16:50:06 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 16:50:06 - Registering beans for JMX exposure on startup -2024-08-07 16:50:06 - Auto-detecting user-defined JMX MBeans -2024-08-07 16:50:06 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 16:50:06 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 16:50:06 - Starting beans in phase -2147483647 -2024-08-07 16:50:06 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 16:50:06 - Starting beans in phase 2147481599 -2024-08-07 16:50:06 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 16:50:06 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 16:50:06 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 16:50:06 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 16:50:06 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 16:50:06 - Successfully started bean 'webServerStartStop' -2024-08-07 16:50:06 - Starting beans in phase 2147482623 -2024-08-07 16:50:06 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 16:50:06 - Starting beans in phase 2147483647 -2024-08-07 16:50:06 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 16:50:06 - Started HaengdongApplication in 2.158 seconds (process running for 2.357) -2024-08-07 16:50:06 - Application availability state LivenessState changed to CORRECT -2024-08-07 16:50:06 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 82 -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 84 -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:50:06 - RMI TCP Connection(1)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - [javax.management.remote.rmi.RMIConnectionImpl@94eb6b0: connectionId=rmi://192.168.5.4 4] closing. -2024-08-07 16:50:06 - [javax.management.remote.rmi.RMIConnectionImpl@94eb6b0: connectionId=rmi://192.168.5.4 4] closed. -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: accepted socket from [192.168.5.4:64622] -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: accepted socket from [192.168.5.4:64621] -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 84 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 84 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - [javax.management.remote.rmi.RMIConnectionImpl@7a896822: connectionId=rmi://192.168.5.4 5] closing. -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - [javax.management.remote.rmi.RMIConnectionImpl@7a896822: connectionId=rmi://192.168.5.4 5] closed. -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 84 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - [javax.management.remote.rmi.RMIConnectionImpl@ffcb3ab: connectionId=rmi://192.168.5.4 6] closing. -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - [javax.management.remote.rmi.RMIConnectionImpl@ffcb3ab: connectionId=rmi://192.168.5.4 6] closed. -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - [javax.management.remote.rmi.RMIConnectionImpl@38622110: connectionId=rmi://192.168.5.4 7] closing. -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - [javax.management.remote.rmi.RMIConnectionImpl@38622110: connectionId=rmi://192.168.5.4 7] closed. -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 84 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 8 unwrapping query with defaultClassLoader. -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - [javax.management.remote.rmi.RMIConnectionImpl@65cfc575: connectionId=rmi://192.168.5.4 8] closing. -2024-08-07 16:50:06 - [javax.management.remote.rmi.RMIConnectionImpl@65cfc575: connectionId=rmi://192.168.5.4 8] closed. -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 82 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 82 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 82 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 84 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 84 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 82 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 82 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 82 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - [javax.management.remote.rmi.RMIConnectionImpl@73bf243c: connectionId=rmi://192.168.5.4 10] closing. -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - [javax.management.remote.rmi.RMIConnectionImpl@73bf243c: connectionId=rmi://192.168.5.4 10] closed. -2024-08-07 16:50:06 - [javax.management.remote.rmi.RMIConnectionImpl@5f03774b: connectionId=rmi://192.168.5.4 9] closing. -2024-08-07 16:50:06 - [javax.management.remote.rmi.RMIConnectionImpl@5f03774b: connectionId=rmi://192.168.5.4 9] closed. -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 84 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 84 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 12 unwrapping query with defaultClassLoader. -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 11 unwrapping query with defaultClassLoader. -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[B", codebase = "" -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:06 - connectionId=rmi://192.168.5.4 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 16:50:06 - Fetching JDBC Connection from DataSource -2024-08-07 16:50:06 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 16:50:06 - Initializing Servlet 'dispatcherServlet' -2024-08-07 16:50:06 - Detected StandardServletMultipartResolver -2024-08-07 16:50:06 - Detected AcceptHeaderLocaleResolver -2024-08-07 16:50:06 - Detected FixedThemeResolver -2024-08-07 16:50:06 - Fetching JDBC Connection from DataSource -2024-08-07 16:50:06 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@14a204f -2024-08-07 16:50:06 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@4f8eb97c -2024-08-07 16:50:06 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 16:50:06 - Completed initialization in 1 ms -2024-08-07 16:50:06 - RMI TCP Connection(2)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - [javax.management.remote.rmi.RMIConnectionImpl@3caf90da: connectionId=rmi://192.168.5.4 11] closing. -2024-08-07 16:50:06 - [javax.management.remote.rmi.RMIConnectionImpl@3caf90da: connectionId=rmi://192.168.5.4 11] closed. -2024-08-07 16:50:06 - RMI TCP Connection(3)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:06 - [javax.management.remote.rmi.RMIConnectionImpl@2a9c4bb: connectionId=rmi://192.168.5.4 12] closing. -2024-08-07 16:50:06 - [javax.management.remote.rmi.RMIConnectionImpl@2a9c4bb: connectionId=rmi://192.168.5.4 12] closed. -2024-08-07 16:50:12 - RMI TCP Connection(3)-192.168.5.4: (port 64619) connection closed -2024-08-07 16:50:12 - RMI TCP Connection(2)-192.168.5.4: (port 64619) connection closed -2024-08-07 16:50:12 - RMI TCP Connection(1)-192.168.5.4: (port 64619) connection closed -2024-08-07 16:50:12 - RMI TCP Connection(3)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64621,localport=64619] -2024-08-07 16:50:12 - RMI TCP Connection(1)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64620,localport=64619] -2024-08-07 16:50:12 - RMI TCP Connection(2)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64622,localport=64619] -2024-08-07 16:50:12 - RMI TCP Connection(2)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64622,localport=64619] -2024-08-07 16:50:12 - RMI TCP Connection(3)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64621,localport=64619] -2024-08-07 16:50:12 - RMI TCP Connection(1)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64620,localport=64619] -2024-08-07 16:50:12 - RMI TCP Connection(4)-192.168.5.4: accepted socket from [192.168.5.4:64623] -2024-08-07 16:50:12 - RMI TCP Connection(4)-192.168.5.4: (port 64619) op = 80 -2024-08-07 16:50:12 - RMI TCP Connection(4)-192.168.5.4: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:12 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:12 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:12 - RMI TCP Connection(4)-192.168.5.4: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:12 - RMI TCP Connection(4)-192.168.5.4: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:50:35 - RMI TCP Connection(4)-192.168.5.4: (port 64619) connection closed -2024-08-07 16:50:35 - RMI TCP Connection(4)-192.168.5.4: close connection, socket: Socket[addr=/192.168.5.4,port=64623,localport=64619] -2024-08-07 16:50:35 - RMI TCP Connection(4)-192.168.5.4: socket close: Socket[addr=/192.168.5.4,port=64623,localport=64619] -2024-08-07 16:50:35 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:50:35 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:50:54 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.16284663681477755738/conf/jaspic-providers.xml] -2024-08-07 16:50:54 - POST "/api/events", parameters={} -2024-08-07 16:50:54 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:50:54 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:50:54 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=백호야고생했어, password=1234]] -2024-08-07 16:50:54 - Found thread-bound EntityManager [SessionImpl(2086724056<open>)] for JPA transaction -2024-08-07 16:50:54 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 16:50:54 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:50:54 - begin -2024-08-07 16:50:54 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@59f60bb5] -2024-08-07 16:50:54 - Found thread-bound EntityManager [SessionImpl(2086724056<open>)] for JPA transaction -2024-08-07 16:50:54 - Participating in existing transaction -2024-08-07 16:50:54 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 16:50:54 - Executing identity-insert immediately -2024-08-07 16:50:54 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 16:50:54 - Initializer list is empty -2024-08-07 16:50:54 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@6378111d -2024-08-07 16:50:54 - Extracted JDBC value [0] - [1] -2024-08-07 16:50:54 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@40ec127c -2024-08-07 16:50:54 - Initiating transaction commit -2024-08-07 16:50:54 - Committing JPA transaction on EntityManager [SessionImpl(2086724056<open>)] -2024-08-07 16:50:54 - committing -2024-08-07 16:50:54 - Processing flush-time cascades -2024-08-07 16:50:54 - Dirty checking collections -2024-08-07 16:50:54 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 16:50:54 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 16:50:54 - Listing entities: -2024-08-07 16:50:54 - server.haengdong.domain.event.Event{password=1234, name=백호야고생했어, id=1, token=01fd644a-9691-45df-bdd3-c577c77a8aec} -2024-08-07 16:50:54 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:50:54 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:50:54 - Writing [EventResponse[eventId=01fd644a-9691-45df-bdd3-c577c77a8aec]] -2024-08-07 16:50:54 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:50:54 - Completed 200 OK -2024-08-07 16:51:05 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:51:05 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:51:10 - OPTIONS "/api/events/01fd644a-9691-45df-bdd3-c577c77a8aec", parameters={} -2024-08-07 16:51:10 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:51:10 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:51:10 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:51:10 - Completed 200 OK -2024-08-07 16:51:10 - OPTIONS "/api/events/01fd644a-9691-45df-bdd3-c577c77a8aec/actions", parameters={} -2024-08-07 16:51:10 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:51:10 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:51:10 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:51:10 - Completed 200 OK -2024-08-07 16:51:10 - GET "/api/events/01fd644a-9691-45df-bdd3-c577c77a8aec", parameters={} -2024-08-07 16:51:10 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:51:10 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:51:10 - GET "/api/events/01fd644a-9691-45df-bdd3-c577c77a8aec/actions", parameters={} -2024-08-07 16:51:10 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:51:10 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:51:10 - Found thread-bound EntityManager [SessionImpl(421848820<open>)] for JPA transaction -2024-08-07 16:51:10 - Found thread-bound EntityManager [SessionImpl(1365368656<open>)] for JPA transaction -2024-08-07 16:51:10 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 16:51:10 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 16:51:10 - HikariPool-1 - Connection not added, stats (total=10, active=2, idle=8, waiting=0) -2024-08-07 16:51:10 - Setting JDBC Connection [HikariProxyConnection@258284306 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 16:51:10 - Setting JDBC Connection [HikariProxyConnection@1483181551 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 16:51:10 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:51:10 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:51:10 - begin -2024-08-07 16:51:10 - begin -2024-08-07 16:51:10 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@2c7ccd2b] -2024-08-07 16:51:10 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@f8f9032] -2024-08-07 16:51:10 - Created new SQL alias : e1_0 -2024-08-07 16:51:10 - Created new SQL alias : e1_0 -2024-08-07 16:51:10 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(742977013238666))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 16:51:10 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(742977013238666))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 16:51:10 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@cc7534e -2024-08-07 16:51:10 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@3cf7c67c -2024-08-07 16:51:10 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(742977013238666).token) -2024-08-07 16:51:10 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(742977013238666).token) -2024-08-07 16:51:10 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(742977013238666)] - | +-BasicFetch [server.haengdong.domain.event.Event(742977013238666).name] - | +-BasicFetch [server.haengdong.domain.event.Event(742977013238666).password] - | \-BasicFetch [server.haengdong.domain.event.Event(742977013238666).token] - -2024-08-07 16:51:10 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(742977013238666)] - | +-BasicFetch [server.haengdong.domain.event.Event(742977013238666).name] - | +-BasicFetch [server.haengdong.domain.event.Event(742977013238666).password] - | \-BasicFetch [server.haengdong.domain.event.Event(742977013238666).token] - -2024-08-07 16:51:10 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(742977013238666)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 16:51:10 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(742977013238666)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 16:51:10 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 16:51:10 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 16:51:10 - Initializer list: - server.haengdong.domain.event.Event(742977013238666) -> EntityResultInitializer(server.haengdong.domain.event.Event(742977013238666))@355652917 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 16:51:10 - Initializer list: - server.haengdong.domain.event.Event(742977013238666) -> EntityResultInitializer(server.haengdong.domain.event.Event(742977013238666))@81423432 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 16:51:10 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 16:51:10 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 16:51:10 - Extracted JDBC value [0] - [1] -2024-08-07 16:51:10 - Extracted JDBC value [0] - [1] -2024-08-07 16:51:10 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(742977013238666)): 1 -2024-08-07 16:51:10 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(742977013238666)): 1 -2024-08-07 16:51:10 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(742977013238666)#1] : 1321645503 -2024-08-07 16:51:10 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(742977013238666)#1] : 1548329015 -2024-08-07 16:51:10 - Extracted JDBC value [1] - [백호야고생했어] -2024-08-07 16:51:10 - Extracted JDBC value [1] - [백호야고생했어] -2024-08-07 16:51:10 - Extracted JDBC value [2] - [1234] -2024-08-07 16:51:10 - Extracted JDBC value [2] - [1234] -2024-08-07 16:51:10 - Extracted JDBC value [3] - [01fd644a-9691-45df-bdd3-c577c77a8aec] -2024-08-07 16:51:10 - Extracted JDBC value [3] - [01fd644a-9691-45df-bdd3-c577c77a8aec] -2024-08-07 16:51:10 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(742977013238666)#1 -2024-08-07 16:51:10 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(742977013238666)#1 -2024-08-07 16:51:10 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@27f61392 -2024-08-07 16:51:10 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@3655d6b6 -2024-08-07 16:51:10 - Initiating transaction commit -2024-08-07 16:51:10 - Committing JPA transaction on EntityManager [SessionImpl(1365368656<open>)] -2024-08-07 16:51:10 - committing -2024-08-07 16:51:10 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1483181551 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 16:51:10 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:51:10 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:51:10 - Writing [EventDetailResponse[eventName=백호야고생했어]] -2024-08-07 16:51:10 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:51:10 - Completed 200 OK -2024-08-07 16:51:10 - Created new SQL alias : ba1_0 -2024-08-07 16:51:10 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(742976858786041))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 16:51:10 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4175a6fd] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 16:51:10 - Created new SQL alias : a1_0 -2024-08-07 16:51:10 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@793af2ab] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 16:51:10 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4175a6fd] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 16:51:10 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@768ac831 -2024-08-07 16:51:10 - Created new SQL alias : e1_0 -2024-08-07 16:51:10 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@8bcc3ed -2024-08-07 16:51:10 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(742976858786041).action(742976858823666).event(742976858833541) : event) -2024-08-07 16:51:10 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(742976858786041)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(742976858786041).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(742976858786041).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(742976858786041).title] - -2024-08-07 16:51:10 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(742976858786041)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(742976858786041).action(742976858823666)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(742976858786041).action(742976858823666).event(742976858833541)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 16:51:10 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 16:51:10 - Initializer list: - server.haengdong.domain.action.BillAction(742976858786041) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(742976858786041))@745320569 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - server.haengdong.domain.action.BillAction(742976858786041).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(742976858786041).action.event)@1786373378 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@569162288) - server.haengdong.domain.action.BillAction(742976858786041).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(742976858786041).action)@2087140814 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@901887299) - -2024-08-07 16:51:10 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 16:51:10 - Created new SQL alias : ma1_0 -2024-08-07 16:51:10 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction(m))] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 16:51:10 - Created new SQL alias : a1_0 -2024-08-07 16:51:10 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4e7b601a] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:51:10 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@3959d9bb] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 16:51:10 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@cdf1835] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 16:51:10 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@cdf1835] for NavigablePath [server.haengdong.domain.action.MemberAction(m).action(742976972590916).event] overrode previous registration : org.hibernate.sql.ast.tree.from.LazyTableGroup@3959d9bb -2024-08-07 16:51:10 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 16:51:10 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 16:51:10 - Determining mapping-model type for SqmPath : SqmEntityValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action(742976972590916).event) -2024-08-07 16:51:10 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction(m)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.MemberAction(m).action(742976972590916)] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction(m).status] - -2024-08-07 16:51:10 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction(m)) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction(m).action(742976972590916)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.MemberAction(m).action(742976972590916).event) { - } - join LazyTableGroup (e2 : server.haengdong.domain.action.MemberAction(m).action(742976972590916).event) { - } - } - } - } - } - } - } - -2024-08-07 16:51:10 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 16:51:10 - Initializer list: - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@1850889368 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(742976972590916).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(742976972590916).event)@88150438 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@569162288) - server.haengdong.domain.action.MemberAction(m).action(742976972590916) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(742976972590916))@1898688395 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1721594440) - -2024-08-07 16:51:10 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 16:51:10 - Initiating transaction commit -2024-08-07 16:51:10 - Committing JPA transaction on EntityManager [SessionImpl(421848820<open>)] -2024-08-07 16:51:10 - committing -2024-08-07 16:51:10 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@258284306 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 16:51:10 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:51:10 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:51:10 - Writing [StepsResponse[steps=[]]] -2024-08-07 16:51:10 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:51:10 - Completed 200 OK -2024-08-07 16:51:24 - OPTIONS "/api/events/01fd644a-9691-45df-bdd3-c577c77a8aec/member-actions", parameters={} -2024-08-07 16:51:24 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 16:51:24 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:51:24 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:51:24 - Completed 200 OK -2024-08-07 16:51:24 - POST "/api/events/01fd644a-9691-45df-bdd3-c577c77a8aec/member-actions", parameters={} -2024-08-07 16:51:24 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 16:51:24 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 16:51:24 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:51:24 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 16:51:24 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 16:51:24 - Completed 401 UNAUTHORIZED -2024-08-07 16:51:35 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:51:35 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:52:05 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:52:05 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:52:17 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 16:52:17 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Wed Aug 07 16:50:04 KST 2024 -2024-08-07 16:52:17 - Stopping beans in phase 2147483647 -2024-08-07 16:52:17 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 16:52:17 - Stopping beans in phase 2147482623 -2024-08-07 16:52:17 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 16:52:17 - Stopping beans in phase 2147481599 -2024-08-07 16:52:17 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 16:52:17 - Stopping beans in phase -2147483647 -2024-08-07 16:52:17 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 16:52:17 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 16:52:17 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 16:52:17 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 16:52:17 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 16:52:17 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 16:52:17 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 16:52:17 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 16:52:17 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 16:52:17 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 16:52:17 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 16:52:17 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 16:52:17 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 16:52:17 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 16:52:17 - Unregistering JMX-exposed beans on shutdown -2024-08-07 16:52:17 - Unregistering JMX-exposed beans -2024-08-07 16:52:17 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 16:52:17 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 16:52:17 - HHH000031: Closing -2024-08-07 16:52:17 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@53c94f6] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@299c86f0] -2024-08-07 16:52:17 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 16:52:17 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 16:52:17 - HikariPool-1 - Shutdown initiated... -2024-08-07 16:52:17 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:52:17 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:52:17 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:52:17 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:52:17 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:52:17 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:52:17 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:52:17 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:52:17 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:52:17 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:52:17 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:52:17 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 16:52:17 - HikariPool-1 - Shutdown completed. -2024-08-07 16:52:17 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 16:52:18 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 16:52:18 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 16:52:18 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:52:18 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:52:18 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:52:18 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:52:18 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:52:18 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:52:18 - Loaded expression factory via original TCCL -2024-08-07 16:52:18 - Starting HaengdongApplication using Java 17.0.12 with PID 61927 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 16:52:18 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 16:52:18 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 16:52:18 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 16:52:18 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-07 16:52:18 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 16:52:18 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:52:18 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:52:18 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:52:18 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:52:18 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:52:18 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:52:18 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 16:52:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 16:52:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 16:52:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 16:52:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 16:52:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 16:52:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 16:52:18 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 16:52:18 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 16:52:18 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 16:52:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 16:52:18 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 16:52:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 16:52:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 16:52:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 16:52:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 16:52:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 16:52:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 16:52:19 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 16:52:19 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 16:52:19 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 16:52:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 16:52:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 16:52:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 16:52:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 16:52:19 - Finished Spring Data repository scanning in 16 ms. Found 4 JPA repository interfaces. -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 16:52:19 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 16:52:19 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 16:52:19 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 16:52:19 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 16:52:19 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 16:52:19 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 16:52:19 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 16:52:19 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 16:52:19 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@35cec305] -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 16:52:19 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 16:52:19 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 16:52:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 16:52:19 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 16:52:19 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 16:52:19 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 16:52:19 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 16:52:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 16:52:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:52:19 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:52:19 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 16:52:19 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 16:52:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 16:52:19 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 16:52:19 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:52:19 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:52:19 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:52:19 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 16:52:19 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 16:52:19 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 16:52:19 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 16:52:19 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 16:52:19 - Tomcat initialized with port 8080 (http) -2024-08-07 16:52:19 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@2d22d3b1] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@2d22d3b1] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.mapper.MapperListener@42cf6349] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.mapper.MapperListener@42cf6349] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 16:52:19 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 16:52:19 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@2d22d3b1] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@2d22d3b1] to [STARTING] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@2d22d3b1] to [STARTED] -2024-08-07 16:52:19 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 16:52:19 - Starting service [Tomcat] -2024-08-07 16:52:19 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 16:52:19 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 16:52:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@7d7ceca8] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@7d7ceca8] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@7d7ceca8] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@24a4e2c5] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@24a4e2c5] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@24a4e2c5] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@24a4e2c5] to [STARTING] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@24a4e2c5] to [STARTED] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@7d7ceca8] to [STARTING] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@7d7ceca8] to [STARTED] -2024-08-07 16:52:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:52:19 - Starting this Loader -2024-08-07 16:52:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:52:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:52:19 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 16:52:19 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@9263c54] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@9263c54] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@9263c54] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@9263c54] to [STARTING] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@9263c54] to [STARTED] -2024-08-07 16:52:19 - Initializing Spring embedded WebApplicationContext -2024-08-07 16:52:19 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 16:52:19 - Root WebApplicationContext: initialization completed in 623 ms -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:52:19 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 16:52:19 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 16:52:19 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 16:52:19 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:52:19 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 16:52:19 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:52:19 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 16:52:19 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:52:19 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:52:19 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:52:19 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:52:19 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 16:52:19 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 16:52:19 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 16:52:19 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:52:19 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:52:19 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 16:52:19 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 16:52:19 - HikariPool-1 - configuration: -2024-08-07 16:52:19 - allowPoolSuspension.............false -2024-08-07 16:52:19 - autoCommit......................true -2024-08-07 16:52:19 - catalog.........................none -2024-08-07 16:52:19 - connectionInitSql...............none -2024-08-07 16:52:19 - connectionTestQuery.............none -2024-08-07 16:52:19 - connectionTimeout...............30000 -2024-08-07 16:52:19 - dataSource......................none -2024-08-07 16:52:19 - dataSourceClassName.............none -2024-08-07 16:52:19 - dataSourceJNDI..................none -2024-08-07 16:52:19 - dataSourceProperties............{password=<masked>} -2024-08-07 16:52:19 - driverClassName................."org.h2.Driver" -2024-08-07 16:52:19 - exceptionOverrideClassName......none -2024-08-07 16:52:19 - healthCheckProperties...........{} -2024-08-07 16:52:19 - healthCheckRegistry.............none -2024-08-07 16:52:19 - idleTimeout.....................600000 -2024-08-07 16:52:19 - initializationFailTimeout.......1 -2024-08-07 16:52:19 - isolateInternalQueries..........false -2024-08-07 16:52:19 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 16:52:19 - keepaliveTime...................0 -2024-08-07 16:52:19 - leakDetectionThreshold..........0 -2024-08-07 16:52:19 - maxLifetime.....................1800000 -2024-08-07 16:52:19 - maximumPoolSize.................10 -2024-08-07 16:52:19 - metricRegistry..................none -2024-08-07 16:52:19 - metricsTrackerFactory...........none -2024-08-07 16:52:19 - minimumIdle.....................10 -2024-08-07 16:52:19 - password........................<masked> -2024-08-07 16:52:19 - poolName........................"HikariPool-1" -2024-08-07 16:52:19 - readOnly........................false -2024-08-07 16:52:19 - registerMbeans..................false -2024-08-07 16:52:19 - scheduledExecutor...............none -2024-08-07 16:52:19 - schema..........................none -2024-08-07 16:52:19 - threadFactory...................internal -2024-08-07 16:52:19 - transactionIsolation............default -2024-08-07 16:52:19 - username........................"sa" -2024-08-07 16:52:19 - validationTimeout...............5000 -2024-08-07 16:52:19 - HikariPool-1 - Starting... -2024-08-07 16:52:19 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 16:52:19 - HikariPool-1 - Start completed. -2024-08-07 16:52:19 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 16:52:19 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 16:52:19 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:52:19 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:64643] -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:19 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:19 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:52:19 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:52:19 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 84 -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:19 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 16:52:19 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:19 - [javax.management.remote.rmi.RMIConnectionImpl@2e018b94: connectionId=rmi://127.0.0.1 1] closing. -2024-08-07 16:52:19 - [javax.management.remote.rmi.RMIConnectionImpl@2e018b94: connectionId=rmi://127.0.0.1 1] closed. -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 16:52:19 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 16:52:19 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 16:52:19 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 16:52:19 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 16:52:19 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@3355168] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@3355168] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@3355168] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@3355168] to [STARTING] -2024-08-07 16:52:19 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@3355168] to [STARTED] -2024-08-07 16:52:19 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:52:19 - Filter 'requestContextFilter' configured for use -2024-08-07 16:52:19 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 16:52:19 - Filter 'characterEncodingFilter' configured for use -2024-08-07 16:52:19 - Filter 'formContentFilter' configured for use -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:52:19 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:52:19 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:52:19 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 16:52:19 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.mapper.MapperListener@42cf6349] to [STARTING_PREP] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.mapper.MapperListener@42cf6349] to [STARTING] -2024-08-07 16:52:19 - Registered host [localhost] -2024-08-07 16:52:19 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 16:52:19 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 16:52:19 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 16:52:19 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 16:52:19 - Setting state for [org.apache.catalina.mapper.MapperListener@42cf6349] to [STARTED] -2024-08-07 16:52:19 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 16:52:19 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 16:52:19 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 16:52:19 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 16:52:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 16:52:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:52:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:52:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 16:52:19 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 16:52:19 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 16:52:19 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:52:19 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:52:19 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 16:52:19 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 16:52:19 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 16:52:19 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 16:52:19 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 16:52:19 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 16:52:19 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 16:52:19 - HHH000206: 'hibernate.properties' not found -2024-08-07 16:52:19 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 16:52:19 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 16:52:19 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 16:52:19 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 16:52:19 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 16:52:19 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 16:52:19 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 16:52:19 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 16:52:19 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 16:52:19 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 16:52:19 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 16:52:19 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 16:52:19 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 16:52:19 - HHH000026: Second-level cache disabled -2024-08-07 16:52:19 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 16:52:19 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 16:52:19 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 16:52:19 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 16:52:19 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 16:52:19 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 16:52:19 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 16:52:19 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 16:52:19 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 16:52:19 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 16:52:19 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 16:52:19 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 16:52:19 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 16:52:19 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 16:52:19 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:52:19 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:52:19 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:52:19 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 16:52:19 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 16:52:19 - Adding type registration image -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 16:52:19 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 16:52:19 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 16:52:19 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 16:52:19 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 16:52:19 - Adding type registration short -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 16:52:19 - Adding type registration short -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 16:52:19 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 16:52:19 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 16:52:19 - Adding type registration int -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 16:52:19 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 16:52:19 - Adding type registration long -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 16:52:19 - Adding type registration long -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 16:52:19 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 16:52:19 - Adding type registration float -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 16:52:19 - Adding type registration float -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 16:52:19 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 16:52:19 - Adding type registration double -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 16:52:19 - Adding type registration double -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 16:52:19 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 16:52:19 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 16:52:19 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 16:52:19 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 16:52:19 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 16:52:19 - Adding type registration character -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 16:52:19 - Adding type registration char -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 16:52:19 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 16:52:19 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 16:52:19 - Adding type registration string -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 16:52:19 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 16:52:19 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 16:52:19 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 16:52:19 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 16:52:19 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 16:52:19 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 16:52:19 - Adding type registration text -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 16:52:19 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 16:52:19 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 16:52:19 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 16:52:19 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:52:19 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:52:19 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 16:52:19 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 16:52:19 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 16:52:19 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 16:52:19 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 16:52:19 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 16:52:19 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 16:52:19 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 16:52:19 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 16:52:19 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 16:52:19 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 16:52:19 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 16:52:19 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 16:52:19 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 16:52:19 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 16:52:19 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 16:52:19 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 16:52:19 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 16:52:19 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:52:19 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:52:19 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 16:52:19 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 16:52:19 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 16:52:19 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 16:52:19 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 16:52:19 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 16:52:19 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 16:52:19 - Adding type registration date -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 16:52:19 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 16:52:19 - Adding type registration time -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 16:52:19 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 16:52:19 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 16:52:19 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 16:52:19 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 16:52:19 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 16:52:19 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 16:52:19 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 16:52:19 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 16:52:19 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 16:52:19 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 16:52:19 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 16:52:19 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:52:19 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:52:19 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:52:19 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 16:52:19 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 16:52:19 - Adding type registration class -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 16:52:19 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 16:52:19 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 16:52:19 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 16:52:19 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 16:52:19 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 16:52:19 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 16:52:19 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 16:52:19 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 16:52:19 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 16:52:19 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 16:52:19 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 16:52:19 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 16:52:19 - Adding type registration url -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 16:52:19 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 16:52:19 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-07 16:52:19 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 16:52:19 - Adding type registration object -> org.hibernate.type.JavaObjectType@727956bb -2024-08-07 16:52:19 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@727956bb -2024-08-07 16:52:19 - Adding type registration null -> org.hibernate.type.NullType@1fa18f87 -2024-08-07 16:52:19 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@1d9bd1d6 -2024-08-07 16:52:19 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@18ac4af6 -2024-08-07 16:52:19 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@117fb9ba -2024-08-07 16:52:19 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@2b1d1a5 -2024-08-07 16:52:19 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@41e7a544 -2024-08-07 16:52:19 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@3b66ac74 -2024-08-07 16:52:19 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@573870cb -2024-08-07 16:52:19 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@5b88af70 -2024-08-07 16:52:19 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@2c154508] into BootstrapContext; was [null] -2024-08-07 16:52:19 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@2c154508) [was null] -2024-08-07 16:52:19 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@5c3710b3] into BootstrapContext; was [null] -2024-08-07 16:52:19 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@8b1202a] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@34bddf43] -2024-08-07 16:52:19 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 16:52:19 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 16:52:19 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 16:52:19 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 16:52:19 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-07 16:52:19 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 16:52:19 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 16:52:19 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@2c154508] -2024-08-07 16:52:19 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@2c154508] -2024-08-07 16:52:19 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 16:52:19 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 16:52:19 - JDBC version : 4.2 -2024-08-07 16:52:19 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 16:52:19 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 16:52:19 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 16:52:19 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 16:52:19 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 16:52:19 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 16:52:19 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 16:52:19 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 16:52:19 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 16:52:19 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 16:52:19 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 16:52:19 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@714b6999] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@2e4d2232] -2024-08-07 16:52:19 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-07 16:52:19 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 16:52:19 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 16:52:19 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 16:52:19 - Import with entity name Action -2024-08-07 16:52:19 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 16:52:19 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:52:19 - Binding column: AnnotatedColumn() -2024-08-07 16:52:19 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:52:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:52:19 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:52:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 16:52:19 - building BasicValue for id -2024-08-07 16:52:19 - Skipping column re-registration: action.id -2024-08-07 16:52:19 - Building property id -2024-08-07 16:52:19 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:52:19 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:52:19 - Binding column: AnnotatedColumn() -2024-08-07 16:52:19 - Building property event -2024-08-07 16:52:19 - Binding column: AnnotatedColumn() -2024-08-07 16:52:19 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 16:52:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 16:52:19 - building BasicValue for sequence -2024-08-07 16:52:19 - Skipping column re-registration: action.sequence -2024-08-07 16:52:19 - Building property sequence -2024-08-07 16:52:19 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:52:19 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 16:52:19 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 16:52:19 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 16:52:19 - Import with entity name BillAction -2024-08-07 16:52:19 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 16:52:19 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:52:19 - Binding column: AnnotatedColumn() -2024-08-07 16:52:19 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:52:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:52:19 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:52:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 16:52:19 - building BasicValue for id -2024-08-07 16:52:19 - Skipping column re-registration: bill_action.id -2024-08-07 16:52:19 - Building property id -2024-08-07 16:52:19 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:52:19 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:52:19 - Binding column: AnnotatedColumn() -2024-08-07 16:52:19 - Building property action -2024-08-07 16:52:19 - Binding column: AnnotatedColumn() -2024-08-07 16:52:19 - MetadataSourceProcessor property price with lazy=false -2024-08-07 16:52:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 16:52:19 - building BasicValue for price -2024-08-07 16:52:19 - Skipping column re-registration: bill_action.price -2024-08-07 16:52:19 - Building property price -2024-08-07 16:52:19 - Binding column: AnnotatedColumn() -2024-08-07 16:52:19 - MetadataSourceProcessor property title with lazy=false -2024-08-07 16:52:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 16:52:19 - building BasicValue for title -2024-08-07 16:52:19 - Skipping column re-registration: bill_action.title -2024-08-07 16:52:19 - Building property title -2024-08-07 16:52:19 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:52:19 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 16:52:19 - Import with entity name MemberAction -2024-08-07 16:52:19 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 16:52:19 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:52:19 - Binding column: AnnotatedColumn() -2024-08-07 16:52:19 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:52:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:52:19 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:52:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 16:52:19 - building BasicValue for id -2024-08-07 16:52:19 - Skipping column re-registration: member_action.id -2024-08-07 16:52:19 - Building property id -2024-08-07 16:52:19 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:52:19 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:52:19 - Binding column: AnnotatedColumn() -2024-08-07 16:52:19 - Building property action -2024-08-07 16:52:19 - Binding column: AnnotatedColumn() -2024-08-07 16:52:19 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 16:52:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 16:52:19 - building BasicValue for memberGroupId -2024-08-07 16:52:19 - Skipping column re-registration: member_action.member_group_id -2024-08-07 16:52:19 - Building property memberGroupId -2024-08-07 16:52:19 - Binding column: AnnotatedColumn() -2024-08-07 16:52:19 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 16:52:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 16:52:19 - building BasicValue for memberName -2024-08-07 16:52:19 - Skipping column re-registration: member_action.member_name -2024-08-07 16:52:19 - Building property memberName -2024-08-07 16:52:19 - Binding column: AnnotatedColumn() -2024-08-07 16:52:19 - MetadataSourceProcessor property status with lazy=false -2024-08-07 16:52:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 16:52:19 - building BasicValue for status -2024-08-07 16:52:19 - Skipping column re-registration: member_action.status -2024-08-07 16:52:19 - Building property status -2024-08-07 16:52:19 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:52:19 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 16:52:19 - Import with entity name Event -2024-08-07 16:52:19 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 16:52:19 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:52:19 - Binding column: AnnotatedColumn() -2024-08-07 16:52:19 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:52:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:52:19 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:52:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 16:52:19 - building BasicValue for id -2024-08-07 16:52:19 - Skipping column re-registration: event.id -2024-08-07 16:52:19 - Building property id -2024-08-07 16:52:19 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:52:19 - Binding column: AnnotatedColumn() -2024-08-07 16:52:19 - MetadataSourceProcessor property name with lazy=false -2024-08-07 16:52:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 16:52:19 - building BasicValue for name -2024-08-07 16:52:19 - Skipping column re-registration: event.name -2024-08-07 16:52:19 - Building property name -2024-08-07 16:52:19 - Binding column: AnnotatedColumn() -2024-08-07 16:52:19 - MetadataSourceProcessor property password with lazy=false -2024-08-07 16:52:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 16:52:19 - building BasicValue for password -2024-08-07 16:52:19 - Skipping column re-registration: event.password -2024-08-07 16:52:19 - Building property password -2024-08-07 16:52:19 - Binding column: AnnotatedColumn() -2024-08-07 16:52:19 - MetadataSourceProcessor property token with lazy=false -2024-08-07 16:52:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 16:52:19 - building BasicValue for token -2024-08-07 16:52:19 - Skipping column re-registration: event.token -2024-08-07 16:52:19 - Building property token -2024-08-07 16:52:19 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 16:52:19 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 16:52:19 - Import with entity name EventStep -2024-08-07 16:52:19 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 16:52:19 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:52:19 - Binding column: AnnotatedColumn() -2024-08-07 16:52:19 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:52:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:52:19 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:52:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 16:52:19 - building BasicValue for id -2024-08-07 16:52:19 - Skipping column re-registration: event_step.id -2024-08-07 16:52:19 - Building property id -2024-08-07 16:52:19 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:52:19 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:52:19 - Binding column: AnnotatedColumn() -2024-08-07 16:52:19 - Building property event -2024-08-07 16:52:19 - Binding column: AnnotatedColumn() -2024-08-07 16:52:19 - MetadataSourceProcessor property name with lazy=false -2024-08-07 16:52:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 16:52:19 - building BasicValue for name -2024-08-07 16:52:19 - Skipping column re-registration: event_step.name -2024-08-07 16:52:19 - Building property name -2024-08-07 16:52:19 - Binding column: AnnotatedColumn() -2024-08-07 16:52:19 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 16:52:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 16:52:19 - building BasicValue for sequence -2024-08-07 16:52:19 - Skipping column re-registration: event_step.sequence -2024-08-07 16:52:19 - Building property sequence -2024-08-07 16:52:19 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 16:52:19 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:52:19 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 16:52:19 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:52:19 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 16:52:19 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 16:52:19 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:52:19 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 16:52:19 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 16:52:19 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 16:52:19 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:52:19 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 16:52:19 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 16:52:19 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 16:52:19 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:52:19 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 16:52:19 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 16:52:19 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 16:52:19 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 16:52:19 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 16:52:19 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 16:52:19 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 16:52:19 - Building session factory -2024-08-07 16:52:19 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 16:52:19 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 16:52:19 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:52:19 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@3050d479, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@5c7a06ec, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.14222014197992428828, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=61927, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.14222014197992428828, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@697b48e4, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 16:52:19 - Session factory constructed with filter configurations : {} -2024-08-07 16:52:19 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:52:19 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:52:19 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:52:19 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:52:19 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:52:19 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:52:19 - Loaded expression factory via original TCCL -2024-08-07 16:52:19 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:52:19 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:52:19 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:52:19 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:52:19 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:52:19 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:52:19 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:52:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:52:19 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:52:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:52:19 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:52:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:52:19 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:52:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:52:19 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:52:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:52:19 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 16:52:19 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 16:52:19 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@4d9cf71d] under count; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@eb6ccbc] under every; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@5eae392d] under any; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6ad0cd43] under sinh; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7de43652] under cosh; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7fe0ca60] under tanh; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@fdf029a] under pi; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@63896cf7] under log; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 16:52:19 - Registering alternate key : length -> character_length -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@2ba0b95f] under position; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@7c8a91e2] under overlay; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@34ff08c6] under trim; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@37f627d0] under cast; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2a7392a3] under collate; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@5382a35f] under extract; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@4a7c72af] under ifnull; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@1b53e6fc] under pad; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@4add4dff] under str; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@2fccd98f] under format; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@575fe6da] under timestampadd; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@7d7c05fa] under timestampdiff; prior registration was null -2024-08-07 16:52:19 - Registering alternate key : dateadd -> timestampadd -2024-08-07 16:52:19 - Registering alternate key : datediff -> timestampdiff -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@34d3409d] under current_date; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16732340] under current_time; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@38e052b2] under current_timestamp; prior registration was null -2024-08-07 16:52:19 - Registering alternate key : current date -> current_date -2024-08-07 16:52:19 - Registering alternate key : current time -> current_time -2024-08-07 16:52:19 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7fa68ff4] under local_date; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@515fff35] under local_time; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5eb9bf7d] under local_datetime; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@64f613da] under offset_datetime; prior registration was null -2024-08-07 16:52:19 - Registering alternate key : local date -> local_date -2024-08-07 16:52:19 - Registering alternate key : local time -> local_time -2024-08-07 16:52:19 - Registering alternate key : local datetime -> local_datetime -2024-08-07 16:52:19 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2f64f99f] under instant; prior registration was null -2024-08-07 16:52:19 - Registering alternate key : current_instant -> instant -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@4e210016] under sql; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@2fc40856] under count; prior registration was org.hibernate.dialect.function.CountFunction@4d9cf71d -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@57ed8f95] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@fdf029a -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1c25deb0] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 16:52:19 - Registering alternate key : day -> day_of_month -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@515fff35 -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@5eb9bf7d -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@30e15628] under trunc; prior registration was null -2024-08-07 16:52:19 - Registering alternate key : truncate -> trunc -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@37ab1b10] under date_trunc; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 16:52:19 - Registering alternate key : chr -> char -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@55d87b73] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@2ba0b95f -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@618e7761] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 16:52:19 - Registering alternate key : every -> bool_and -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 16:52:19 - Registering alternate key : any -> bool_or -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@5b643d6e] under format; prior registration was org.hibernate.dialect.function.FormatFunction@2fccd98f -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@38c1b1a7] under listagg; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@cbc3bf3] under mode; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@31f9f9b3] under percentile_cont; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@7730da00] under percentile_disc; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@3085befb] under rank; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@62264d4f] under dense_rank; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@2bc0603f] under percent_rank; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@4ed19540] under cume_dist; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@3163e03b] under array; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@6aa18912] under array_list; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@440d2d64] under array_agg; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@4965454c] under array_position; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@4e1104f4] under array_positions; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@15c3585] under array_positions_list; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5b86f4cb] under array_length; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@5f14590c] under array_concat; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@1ce8084a] under array_prepend; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@61d24347] under array_append; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@1e09c0b] under array_contains; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@4880a9d] under array_contains_nullable; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@2119b989] under array_overlaps; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@73905dff] under array_overlaps_nullable; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@40d04cf8] under array_get; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@7304ca87] under array_set; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@3a012678] under array_remove; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@329efc61] under array_remove_index; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@32f45e15] under array_slice; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@4e481512] under array_replace; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1ba98508] under array_trim; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@583b4af4] under array_fill; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@72c175f1] under array_fill_list; prior registration was null -2024-08-07 16:52:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@27691ee8] under array_to_string; prior registration was null -2024-08-07 16:52:19 - abs(NUMERIC arg) -2024-08-07 16:52:19 - Double acos(NUMERIC arg) -2024-08-07 16:52:19 - Boolean any(BOOLEAN predicate) -2024-08-07 16:52:19 - array( ... ) -2024-08-07 16:52:19 - array_agg(arg) -2024-08-07 16:52:19 - array_append( ... ) -2024-08-07 16:52:19 - array_concat( ... ) -2024-08-07 16:52:19 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 16:52:19 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 16:52:19 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 16:52:19 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 16:52:19 - array_get(ARRAY array, INTEGER index) -2024-08-07 16:52:19 - Integer array_length(ARRAY array) -2024-08-07 16:52:19 - array_list( ... ) -2024-08-07 16:52:19 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 16:52:19 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 16:52:19 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 16:52:19 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 16:52:19 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 16:52:19 - array_prepend( ... ) -2024-08-07 16:52:19 - array_remove( ... ) -2024-08-07 16:52:19 - array_remove_index( ... ) -2024-08-07 16:52:19 - array_replace( ... ) -2024-08-07 16:52:19 - array_set( ... ) -2024-08-07 16:52:19 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 16:52:19 - String array_to_string( ... ) -2024-08-07 16:52:19 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 16:52:19 - Integer ascii(STRING arg) -2024-08-07 16:52:19 - Double asin(NUMERIC arg) -2024-08-07 16:52:19 - Double atan(NUMERIC arg) -2024-08-07 16:52:19 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 16:52:19 - avg(NUMERIC arg) -2024-08-07 16:52:19 - bit_and(arg) -2024-08-07 16:52:19 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 16:52:19 - bit_or(arg) -2024-08-07 16:52:19 - bitand(arg0, arg1) -2024-08-07 16:52:19 - bitnot(arg) -2024-08-07 16:52:19 - bitor(arg0, arg1) -2024-08-07 16:52:19 - bitxor(arg0, arg1) -2024-08-07 16:52:19 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 16:52:19 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 16:52:19 - cast(arg as Type) -2024-08-07 16:52:19 - ceiling(NUMERIC arg) -2024-08-07 16:52:19 - Character char(INTEGER arg) -2024-08-07 16:52:19 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 16:52:19 - Character chr(INTEGER arg) -2024-08-07 16:52:19 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 16:52:19 - String collate(STRING string as COLLATION collation) -2024-08-07 16:52:19 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 16:52:19 - Double cos(NUMERIC arg) -2024-08-07 16:52:19 - Double cosh(NUMERIC arg) -2024-08-07 16:52:19 - Double cot(NUMERIC arg) -2024-08-07 16:52:19 - Long count([distinct ]{arg|*}) -2024-08-07 16:52:19 - Double cume_dist([arg0[, ...]]) -2024-08-07 16:52:19 - Date curdate() -2024-08-07 16:52:19 - Date current date -2024-08-07 16:52:19 - Time current time -2024-08-07 16:52:19 - Timestamp current timestamp -2024-08-07 16:52:19 - Date current_date -2024-08-07 16:52:19 - Instant current_instant -2024-08-07 16:52:19 - Time current_time -2024-08-07 16:52:19 - Timestamp current_timestamp -2024-08-07 16:52:19 - Time curtime() -2024-08-07 16:52:19 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 16:52:19 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 16:52:19 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 16:52:19 - Integer day(DATE arg) -2024-08-07 16:52:19 - Integer day_of_month(DATE arg) -2024-08-07 16:52:19 - Integer day_of_week(DATE arg) -2024-08-07 16:52:19 - Integer day_of_year(DATE arg) -2024-08-07 16:52:19 - String dayname(DATE arg) -2024-08-07 16:52:19 - Double degrees(NUMERIC arg) -2024-08-07 16:52:19 - Long dense_rank([arg0[, ...]]) -2024-08-07 16:52:19 - Boolean every(BOOLEAN predicate) -2024-08-07 16:52:19 - Double exp(NUMERIC arg) -2024-08-07 16:52:19 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 16:52:19 - first_valueANY value -2024-08-07 16:52:19 - floor(NUMERIC arg) -2024-08-07 16:52:19 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 16:52:19 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 16:52:19 - Integer hour(TIME arg) -2024-08-07 16:52:19 - ifnull(arg0, arg1) -2024-08-07 16:52:19 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 16:52:19 - Instant instant -2024-08-07 16:52:19 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 16:52:19 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 16:52:19 - last_valueANY value -2024-08-07 16:52:19 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 16:52:19 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 16:52:19 - String left(STRING string, INTEGER length) -2024-08-07 16:52:19 - Integer length(STRING_OR_CLOB arg) -2024-08-07 16:52:19 - String listagg(STRING arg0, STRING arg1) -2024-08-07 16:52:19 - Double ln(NUMERIC arg) -2024-08-07 16:52:19 - LocalDate local date -2024-08-07 16:52:19 - LocalDateTime local datetime -2024-08-07 16:52:19 - LocalTime local time -2024-08-07 16:52:19 - LocalDate local_date -2024-08-07 16:52:19 - LocalDateTime local_datetime -2024-08-07 16:52:19 - LocalTime local_time -2024-08-07 16:52:19 - Time localtime -2024-08-07 16:52:19 - Timestamp localtimestamp -2024-08-07 16:52:19 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 16:52:19 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 16:52:19 - Double log10(NUMERIC arg) -2024-08-07 16:52:19 - String lower(STRING string) -2024-08-07 16:52:19 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 16:52:19 - String ltrim(STRING string) -2024-08-07 16:52:19 - max(COMPARABLE arg) -2024-08-07 16:52:19 - Double median(NUMERIC arg) -2024-08-07 16:52:19 - Integer microsecond(TIME arg) -2024-08-07 16:52:19 - min(COMPARABLE arg) -2024-08-07 16:52:19 - Integer minute(TIME arg) -2024-08-07 16:52:19 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 16:52:19 - mode() -2024-08-07 16:52:19 - Integer month(DATE arg) -2024-08-07 16:52:19 - String monthname(DATE arg) -2024-08-07 16:52:19 - Timestamp now() -2024-08-07 16:52:19 - nth_valueANY value, INTEGER nth -2024-08-07 16:52:19 - nullif(arg0, arg1) -2024-08-07 16:52:19 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 16:52:19 - OffsetDateTime offset datetime -2024-08-07 16:52:19 - OffsetDateTime offset_datetime -2024-08-07 16:52:19 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 16:52:19 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 16:52:19 - Double percent_rank([arg0[, ...]]) -2024-08-07 16:52:19 - percentile_cont(NUMERIC arg) -2024-08-07 16:52:19 - percentile_disc(NUMERIC arg) -2024-08-07 16:52:19 - Double pi -2024-08-07 16:52:19 - Integer position(STRING pattern in STRING string) -2024-08-07 16:52:19 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 16:52:19 - Integer quarter(DATE arg) -2024-08-07 16:52:19 - Double radians(NUMERIC arg) -2024-08-07 16:52:19 - Double rand([INTEGER seed]) -2024-08-07 16:52:19 - Long rank([arg0[, ...]]) -2024-08-07 16:52:19 - String repeat(STRING string, INTEGER times) -2024-08-07 16:52:19 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 16:52:19 - String right(STRING string, INTEGER length) -2024-08-07 16:52:19 - round(NUMERIC number[, INTEGER places]) -2024-08-07 16:52:19 - Long row_number() -2024-08-07 16:52:19 - Long rownum() -2024-08-07 16:52:19 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 16:52:19 - String rtrim(STRING string) -2024-08-07 16:52:19 - Integer second(TIME arg) -2024-08-07 16:52:19 - Integer sign(NUMERIC arg) -2024-08-07 16:52:19 - Double sin(NUMERIC arg) -2024-08-07 16:52:19 - Double sinh(NUMERIC arg) -2024-08-07 16:52:19 - String soundex(arg) -2024-08-07 16:52:19 - String space(INTEGER arg) -2024-08-07 16:52:19 - Object sql -2024-08-07 16:52:19 - Double sqrt(NUMERIC arg) -2024-08-07 16:52:19 - Double stddev_pop(NUMERIC arg) -2024-08-07 16:52:19 - Double stddev_samp(NUMERIC arg) -2024-08-07 16:52:19 - String str(arg) -2024-08-07 16:52:19 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 16:52:19 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 16:52:19 - sum(arg) -2024-08-07 16:52:19 - Timestamp sysdate -2024-08-07 16:52:19 - Double tan(NUMERIC arg) -2024-08-07 16:52:19 - Double tanh(NUMERIC arg) -2024-08-07 16:52:19 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 16:52:19 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 16:52:19 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 16:52:19 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 16:52:19 - trunc( ... ) -2024-08-07 16:52:19 - truncate( ... ) -2024-08-07 16:52:19 - String upper(STRING string) -2024-08-07 16:52:19 - Double var_pop(NUMERIC arg) -2024-08-07 16:52:19 - Double var_samp(NUMERIC arg) -2024-08-07 16:52:19 - Integer week(DATE arg) -2024-08-07 16:52:19 - Integer year(DATE arg) -2024-08-07 16:52:19 - Starting QueryInterpretationCache(2048) -2024-08-07 16:52:19 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 16:52:19 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 16:52:19 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:52:19 - Configured EntityCopyObserver strategy: disallow -2024-08-07 16:52:19 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:52:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:52:19 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:52:19 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 16:52:19 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:52:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:52:19 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 16:52:19 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:52:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:52:19 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 16:52:19 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:52:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:52:19 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 16:52:19 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:52:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:52:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 16:52:20 - Starting post-init callbacks -2024-08-07 16:52:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 16:52:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 16:52:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:52:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 16:52:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 16:52:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 16:52:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 16:52:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 16:52:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 82 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 82 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 82 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 84 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 82 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 82 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:20 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 82 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:20 - [javax.management.remote.rmi.RMIConnectionImpl@757fc6ce: connectionId=rmi://127.0.0.1 2] closing. -2024-08-07 16:52:20 - [javax.management.remote.rmi.RMIConnectionImpl@757fc6ce: connectionId=rmi://127.0.0.1 2] closed. -2024-08-07 16:52:20 - Created new SQL alias : ba1_0 -2024-08-07 16:52:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 16:52:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@ae85aad] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 16:52:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 16:52:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 16:52:20 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 16:52:20 - Version select: select id from bill_action where id=? -2024-08-07 16:52:20 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 16:52:20 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 16:52:20 - Delete (0): delete from bill_action where id=? -2024-08-07 16:52:20 - Created new SQL alias : ma1_0 -2024-08-07 16:52:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 16:52:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6c75c5e8] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:52:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 16:52:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 16:52:20 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 16:52:20 - Version select: select id from member_action where id=? -2024-08-07 16:52:20 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 16:52:20 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 16:52:20 - Delete (0): delete from member_action where id=? -2024-08-07 16:52:20 - Created new SQL alias : e1_0 -2024-08-07 16:52:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 16:52:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 16:52:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 16:52:20 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 16:52:20 - Version select: select id from event where id=? -2024-08-07 16:52:20 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 16:52:20 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 16:52:20 - Delete (0): delete from event where id=? -2024-08-07 16:52:20 - Created new SQL alias : a1_0 -2024-08-07 16:52:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 16:52:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7b1b1784] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 16:52:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 16:52:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 16:52:20 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 16:52:20 - Version select: select id from action where id=? -2024-08-07 16:52:20 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 16:52:20 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 16:52:20 - Delete (0): delete from action where id=? -2024-08-07 16:52:20 - Created new SQL alias : es1_0 -2024-08-07 16:52:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 16:52:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@58e0d1ac] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 16:52:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 16:52:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 16:52:20 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 16:52:20 - Version select: select id from event_step where id=? -2024-08-07 16:52:20 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 16:52:20 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 16:52:20 - Delete (0): delete from event_step where id=? -2024-08-07 16:52:20 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 16:52:20 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@714b6999] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@1b1d93e9] -2024-08-07 16:52:20 - Checking 0 named HQL queries -2024-08-07 16:52:20 - Checking 0 named SQL queries -2024-08-07 16:52:20 - - drop table if exists action cascade -2024-08-07 16:52:20 - - drop table if exists bill_action cascade -2024-08-07 16:52:20 - - drop table if exists event cascade -2024-08-07 16:52:20 - - drop table if exists event_step cascade -2024-08-07 16:52:20 - - drop table if exists member_action cascade -2024-08-07 16:52:20 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 16:52:20 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 16:52:20 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 16:52:20 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 16:52:20 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 16:52:20 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 16:52:20 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 16:52:20 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 16:52:20 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 16:52:20 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@3984e2b3 -2024-08-07 16:52:20 - Registering SessionFactory: 6f57c26d-a5bb-4ae5-9bc5-645a89d1f819 (<unnamed>) -2024-08-07 16:52:20 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 16:52:20 - Instantiated SessionFactory -2024-08-07 16:52:20 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'actionService' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 16:52:20 - Initializing JpaMetamodelMappingContext… -2024-08-07 16:52:20 - Finished initializing JpaMetamodelMappingContext -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - Statistics initialized [enabled=false] -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 16:52:20 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 16:52:20 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - Looking up named query BillAction.findByAction_Event -2024-08-07 16:52:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:52:20 - Did not find named query BillAction.findByAction_Event -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - Looking up named query BillAction.findByAction_Id -2024-08-07 16:52:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:52:20 - Did not find named query BillAction.findByAction_Id -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 16:52:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:52:20 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 16:52:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:52:20 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 16:52:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:52:20 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(743111489847125)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(743111489847125)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(743111489847125)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(743111489847125)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(743111489847125).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:52:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:52:20 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 16:52:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:52:20 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:52:20 - Looking up named query MemberAction.findByAction -2024-08-07 16:52:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:52:20 - Did not find named query MemberAction.findByAction -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 16:52:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:52:20 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 16:52:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:52:20 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:52:20 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 16:52:20 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 16:52:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:52:20 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 16:52:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:52:20 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 16:52:20 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 16:52:20 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 16:52:20 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 16:52:20 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - Looking up named query Event.findByToken -2024-08-07 16:52:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:52:20 - Did not find named query Event.findByToken -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 16:52:20 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 16:52:20 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:52:20 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:52:20 - Did not find named query Action.findLastByEvent.count -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 16:52:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:52:20 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:52:20 - Looking up named query Action.findByIdAndEvent -2024-08-07 16:52:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:52:20 - Did not find named query Action.findByIdAndEvent -2024-08-07 16:52:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:52:20 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 16:52:20 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 16:52:20 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 16:52:20 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'eventService' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 16:52:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 16:52:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 16:52:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 16:52:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 16:52:20 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 16:52:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 16:52:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:52:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 16:52:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 16:52:20 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 16:52:20 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'actionController' -2024-08-07 16:52:20 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 16:52:20 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'eventController' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'authService' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 16:52:20 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 16:52:20 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 16:52:20 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 16:52:20 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 16:52:20 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:52:20 - Loaded expression factory via original TCCL -2024-08-07 16:52:20 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 16:52:20 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 16:52:20 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:52:20 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 16:52:20 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:52:20 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:52:20 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:52:20 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:52:20 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:52:20 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:52:20 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:52:20 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:52:20 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:52:20 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:52:20 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'error' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 16:52:20 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 16:52:20 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 16:52:20 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 16:52:20 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 16:52:20 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:52:20 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:52:20 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 16:52:20 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:52:20 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:52:20 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 16:52:20 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:52:20 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:52:20 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:52:20 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 16:52:20 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 16:52:20 - - s.h.p.EventController: - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) -2024-08-07 16:52:20 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 16:52:20 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 16:52:20 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 16:52:20 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:52:20 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 16:52:20 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:52:20 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:52:20 - 'beanNameHandlerMapping' {} -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 16:52:20 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:52:20 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 16:52:20 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 16:52:20 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:52:20 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:52:20 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 16:52:20 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:52:20 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 16:52:20 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 16:52:20 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 16:52:20 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:52:20 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:52:20 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:52:20 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 16:52:20 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:52:20 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 16:52:20 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 16:52:20 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 16:52:20 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 16:52:20 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 16:52:20 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 16:52:20 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 16:52:20 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:52:20 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 16:52:20 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 82 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 82 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 82 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 84 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 82 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 82 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:20 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 82 -2024-08-07 16:52:20 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:20 - [javax.management.remote.rmi.RMIConnectionImpl@7c1889dc: connectionId=rmi://127.0.0.1 3] closing. -2024-08-07 16:52:20 - [javax.management.remote.rmi.RMIConnectionImpl@7c1889dc: connectionId=rmi://127.0.0.1 3] closed. -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 16:52:20 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 16:52:20 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 16:52:20 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:52:20 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 16:52:20 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:52:20 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 16:52:20 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 16:52:20 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 16:52:20 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 16:52:20 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 16:52:20 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 16:52:20 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 16:52:20 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 16:52:20 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 16:52:20 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 16:52:20 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 16:52:20 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 16:52:20 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 16:52:20 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:52:20 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 16:52:20 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 16:52:20 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 16:52:20 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 16:52:20 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 16:52:20 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 16:52:20 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 16:52:20 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 16:52:20 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 16:52:20 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 16:52:20 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 16:52:20 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:52:20 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:52:20 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 16:52:20 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 16:52:20 - Using SLF4J as the default logging framework -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 16:52:20 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 16:52:20 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 16:52:20 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 16:52:20 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 16:52:20 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 16:52:20 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 16:52:20 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 16:52:20 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 16:52:20 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 16:52:20 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 16:52:20 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 16:52:20 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 16:52:20 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 16:52:20 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 16:52:20 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 16:52:20 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 16:52:20 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 16:52:20 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 16:52:20 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:52:20 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:52:20 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 16:52:20 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 16:52:20 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 16:52:20 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:52:20 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:52:20 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 16:52:20 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 16:52:20 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 16:52:20 - Registering beans for JMX exposure on startup -2024-08-07 16:52:20 - Auto-detecting user-defined JMX MBeans -2024-08-07 16:52:20 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 16:52:20 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 16:52:20 - Starting beans in phase -2147483647 -2024-08-07 16:52:20 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 16:52:20 - Starting beans in phase 2147481599 -2024-08-07 16:52:20 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 16:52:20 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 16:52:20 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 16:52:20 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 16:52:20 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 16:52:20 - Successfully started bean 'webServerStartStop' -2024-08-07 16:52:20 - Starting beans in phase 2147482623 -2024-08-07 16:52:20 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 16:52:20 - Starting beans in phase 2147483647 -2024-08-07 16:52:20 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.web.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 16:52:20 - Started HaengdongApplication in 2.171 seconds (process running for 2.362) -2024-08-07 16:52:20 - Application availability state LivenessState changed to CORRECT -2024-08-07 16:52:20 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 16:52:21 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 82 -2024-08-07 16:52:21 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 82 -2024-08-07 16:52:21 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 82 -2024-08-07 16:52:21 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 84 -2024-08-07 16:52:21 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 82 -2024-08-07 16:52:21 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 82 -2024-08-07 16:52:21 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:52:21 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 82 -2024-08-07 16:52:21 - RMI TCP Connection(1)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - [javax.management.remote.rmi.RMIConnectionImpl@48880b04: connectionId=rmi://127.0.0.1 4] closing. -2024-08-07 16:52:21 - [javax.management.remote.rmi.RMIConnectionImpl@48880b04: connectionId=rmi://127.0.0.1 4] closed. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:64644] -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:64645] -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 84 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 84 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - [javax.management.remote.rmi.RMIConnectionImpl@1e83d9b2: connectionId=rmi://127.0.0.1 6] closing. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - [javax.management.remote.rmi.RMIConnectionImpl@1e83d9b2: connectionId=rmi://127.0.0.1 6] closed. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 84 -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - [javax.management.remote.rmi.RMIConnectionImpl@2d50f113: connectionId=rmi://127.0.0.1 5] closing. -2024-08-07 16:52:21 - [javax.management.remote.rmi.RMIConnectionImpl@2d50f113: connectionId=rmi://127.0.0.1 5] closed. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 84 -2024-08-07 16:52:21 - [javax.management.remote.rmi.RMIConnectionImpl@5c13c81e: connectionId=rmi://127.0.0.1 7] closing. -2024-08-07 16:52:21 - [javax.management.remote.rmi.RMIConnectionImpl@5c13c81e: connectionId=rmi://127.0.0.1 7] closed. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 82 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - [javax.management.remote.rmi.RMIConnectionImpl@5be5d7c1: connectionId=rmi://127.0.0.1 8] closing. -2024-08-07 16:52:21 - [javax.management.remote.rmi.RMIConnectionImpl@5be5d7c1: connectionId=rmi://127.0.0.1 8] closed. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 84 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 84 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - [javax.management.remote.rmi.RMIConnectionImpl@47ec75e2: connectionId=rmi://127.0.0.1 9] closing. -2024-08-07 16:52:21 - [javax.management.remote.rmi.RMIConnectionImpl@47ec75e2: connectionId=rmi://127.0.0.1 9] closed. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - [javax.management.remote.rmi.RMIConnectionImpl@1ac3a0b7: connectionId=rmi://127.0.0.1 10] closing. -2024-08-07 16:52:21 - [javax.management.remote.rmi.RMIConnectionImpl@1ac3a0b7: connectionId=rmi://127.0.0.1 10] closed. -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 84 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 84 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:52:21 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 16:52:21 - Fetching JDBC Connection from DataSource -2024-08-07 16:52:21 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 16:52:21 - Initializing Servlet 'dispatcherServlet' -2024-08-07 16:52:21 - Detected StandardServletMultipartResolver -2024-08-07 16:52:21 - Detected AcceptHeaderLocaleResolver -2024-08-07 16:52:21 - Detected FixedThemeResolver -2024-08-07 16:52:21 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@46b4d4e7 -2024-08-07 16:52:21 - Fetching JDBC Connection from DataSource -2024-08-07 16:52:21 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@3a3740a5 -2024-08-07 16:52:21 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 16:52:21 - Completed initialization in 1 ms -2024-08-07 16:52:21 - RMI TCP Connection(3)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - [javax.management.remote.rmi.RMIConnectionImpl@1ba743ee: connectionId=rmi://127.0.0.1 12] closing. -2024-08-07 16:52:21 - [javax.management.remote.rmi.RMIConnectionImpl@1ba743ee: connectionId=rmi://127.0.0.1 12] closed. -2024-08-07 16:52:21 - RMI TCP Connection(2)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:52:21 - [javax.management.remote.rmi.RMIConnectionImpl@4b10e3fb: connectionId=rmi://127.0.0.1 11] closing. -2024-08-07 16:52:21 - [javax.management.remote.rmi.RMIConnectionImpl@4b10e3fb: connectionId=rmi://127.0.0.1 11] closed. -2024-08-07 16:52:49 - RMI TCP Connection(3)-127.0.0.1: (port 64642) connection closed -2024-08-07 16:52:49 - RMI TCP Connection(1)-127.0.0.1: (port 64642) connection closed -2024-08-07 16:52:49 - RMI TCP Connection(2)-127.0.0.1: (port 64642) connection closed -2024-08-07 16:52:49 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=64645,localport=64642] -2024-08-07 16:52:49 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=64643,localport=64642] -2024-08-07 16:52:49 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=64644,localport=64642] -2024-08-07 16:52:49 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=64644,localport=64642] -2024-08-07 16:52:49 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=64643,localport=64642] -2024-08-07 16:52:49 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=64645,localport=64642] -2024-08-07 16:52:49 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:52:49 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:52:59 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.14222014197992428828/conf/jaspic-providers.xml] -2024-08-07 16:52:59 - POST "/api/events", parameters={} -2024-08-07 16:52:59 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:52:59 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:52:59 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=쿠키내놔, password=1234]] -2024-08-07 16:52:59 - Found thread-bound EntityManager [SessionImpl(2105453341<open>)] for JPA transaction -2024-08-07 16:52:59 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 16:52:59 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:52:59 - begin -2024-08-07 16:52:59 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@ae67ce8] -2024-08-07 16:52:59 - Found thread-bound EntityManager [SessionImpl(2105453341<open>)] for JPA transaction -2024-08-07 16:52:59 - Participating in existing transaction -2024-08-07 16:52:59 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 16:52:59 - Executing identity-insert immediately -2024-08-07 16:52:59 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 16:52:59 - Initializer list is empty -2024-08-07 16:52:59 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@464e2507 -2024-08-07 16:52:59 - Extracted JDBC value [0] - [1] -2024-08-07 16:52:59 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@323f6107 -2024-08-07 16:52:59 - Initiating transaction commit -2024-08-07 16:52:59 - Committing JPA transaction on EntityManager [SessionImpl(2105453341<open>)] -2024-08-07 16:52:59 - committing -2024-08-07 16:52:59 - Processing flush-time cascades -2024-08-07 16:52:59 - Dirty checking collections -2024-08-07 16:52:59 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 16:52:59 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 16:52:59 - Listing entities: -2024-08-07 16:52:59 - server.haengdong.domain.event.Event{password=1234, name=쿠키내놔, id=1, token=e329b2d5-e890-4a27-8e1b-3d35f49943c4} -2024-08-07 16:52:59 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:52:59 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:52:59 - Writing [EventResponse[eventId=e329b2d5-e890-4a27-8e1b-3d35f49943c4]] -2024-08-07 16:52:59 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:52:59 - Completed 200 OK -2024-08-07 16:53:04 - OPTIONS "/api/events/e329b2d5-e890-4a27-8e1b-3d35f49943c4", parameters={} -2024-08-07 16:53:04 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:53:04 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:53:04 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:53:04 - Completed 200 OK -2024-08-07 16:53:04 - OPTIONS "/api/events/e329b2d5-e890-4a27-8e1b-3d35f49943c4/actions", parameters={} -2024-08-07 16:53:04 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:53:04 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:53:04 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:53:04 - Completed 200 OK -2024-08-07 16:53:04 - GET "/api/events/e329b2d5-e890-4a27-8e1b-3d35f49943c4", parameters={} -2024-08-07 16:53:04 - GET "/api/events/e329b2d5-e890-4a27-8e1b-3d35f49943c4/actions", parameters={} -2024-08-07 16:53:04 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:53:04 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:53:04 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:53:04 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:53:04 - Found thread-bound EntityManager [SessionImpl(1936409494<open>)] for JPA transaction -2024-08-07 16:53:04 - Found thread-bound EntityManager [SessionImpl(899107052<open>)] for JPA transaction -2024-08-07 16:53:04 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 16:53:04 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 16:53:04 - HikariPool-1 - Connection not added, stats (total=10, active=2, idle=8, waiting=0) -2024-08-07 16:53:04 - Setting JDBC Connection [HikariProxyConnection@369842074 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 16:53:04 - Setting JDBC Connection [HikariProxyConnection@303725443 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 16:53:04 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:53:04 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:53:04 - begin -2024-08-07 16:53:04 - begin -2024-08-07 16:53:04 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@6d4fdb0d] -2024-08-07 16:53:04 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@377af785] -2024-08-07 16:53:04 - Created new SQL alias : e1_0 -2024-08-07 16:53:04 - Created new SQL alias : e1_0 -2024-08-07 16:53:04 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(743111529163291))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 16:53:04 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(743111529163291))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 16:53:04 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@157749cf -2024-08-07 16:53:04 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@2b169dc5 -2024-08-07 16:53:04 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(743111529163291).token) -2024-08-07 16:53:04 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(743111529163291).token) -2024-08-07 16:53:04 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(743111529163291)] - | +-BasicFetch [server.haengdong.domain.event.Event(743111529163291).name] - | +-BasicFetch [server.haengdong.domain.event.Event(743111529163291).password] - | \-BasicFetch [server.haengdong.domain.event.Event(743111529163291).token] - -2024-08-07 16:53:04 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(743111529163291)] - | +-BasicFetch [server.haengdong.domain.event.Event(743111529163291).name] - | +-BasicFetch [server.haengdong.domain.event.Event(743111529163291).password] - | \-BasicFetch [server.haengdong.domain.event.Event(743111529163291).token] - -2024-08-07 16:53:04 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(743111529163291)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 16:53:04 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(743111529163291)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 16:53:04 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 16:53:04 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 16:53:04 - Initializer list: - server.haengdong.domain.event.Event(743111529163291) -> EntityResultInitializer(server.haengdong.domain.event.Event(743111529163291))@481336272 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 16:53:04 - Initializer list: - server.haengdong.domain.event.Event(743111529163291) -> EntityResultInitializer(server.haengdong.domain.event.Event(743111529163291))@2069288079 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 16:53:04 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 16:53:04 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 16:53:04 - Extracted JDBC value [0] - [1] -2024-08-07 16:53:04 - Extracted JDBC value [0] - [1] -2024-08-07 16:53:04 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(743111529163291)): 1 -2024-08-07 16:53:04 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(743111529163291)): 1 -2024-08-07 16:53:04 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(743111529163291)#1] : 411485631 -2024-08-07 16:53:04 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(743111529163291)#1] : 2086724987 -2024-08-07 16:53:04 - Extracted JDBC value [1] - [쿠키내놔] -2024-08-07 16:53:04 - Extracted JDBC value [1] - [쿠키내놔] -2024-08-07 16:53:04 - Extracted JDBC value [2] - [1234] -2024-08-07 16:53:04 - Extracted JDBC value [2] - [1234] -2024-08-07 16:53:04 - Extracted JDBC value [3] - [e329b2d5-e890-4a27-8e1b-3d35f49943c4] -2024-08-07 16:53:04 - Extracted JDBC value [3] - [e329b2d5-e890-4a27-8e1b-3d35f49943c4] -2024-08-07 16:53:04 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(743111529163291)#1 -2024-08-07 16:53:04 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(743111529163291)#1 -2024-08-07 16:53:04 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@209bd18e -2024-08-07 16:53:04 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@21166e1 -2024-08-07 16:53:04 - Initiating transaction commit -2024-08-07 16:53:04 - Committing JPA transaction on EntityManager [SessionImpl(1936409494<open>)] -2024-08-07 16:53:04 - committing -2024-08-07 16:53:04 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@369842074 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 16:53:04 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:53:04 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:53:04 - Writing [EventDetailResponse[eventName=쿠키내놔]] -2024-08-07 16:53:04 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:53:04 - Completed 200 OK -2024-08-07 16:53:04 - Created new SQL alias : ba1_0 -2024-08-07 16:53:04 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(743111373297125))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 16:53:04 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@3db3c6ef] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 16:53:04 - Created new SQL alias : a1_0 -2024-08-07 16:53:04 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1013e075] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 16:53:04 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@3db3c6ef] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 16:53:04 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@20eadd66 -2024-08-07 16:53:04 - Created new SQL alias : e1_0 -2024-08-07 16:53:04 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@4dd8104d -2024-08-07 16:53:04 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(743111373297125).action(743111373334416).event(743111373345083) : event) -2024-08-07 16:53:04 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(743111373297125)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(743111373297125).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(743111373297125).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(743111373297125).title] - -2024-08-07 16:53:04 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(743111373297125)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(743111373297125).action(743111373334416)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(743111373297125).action(743111373334416).event(743111373345083)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 16:53:04 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 16:53:04 - Initializer list: - server.haengdong.domain.action.BillAction(743111373297125).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(743111373297125).action.event)@1301251331 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@835797187) - server.haengdong.domain.action.BillAction(743111373297125).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(743111373297125).action)@1318711619 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@223175777) - server.haengdong.domain.action.BillAction(743111373297125) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(743111373297125))@1021009750 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - -2024-08-07 16:53:04 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 16:53:04 - Created new SQL alias : ma1_0 -2024-08-07 16:53:04 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction(m))] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 16:53:04 - Created new SQL alias : a1_0 -2024-08-07 16:53:04 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@75c1d07f] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:53:04 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@108b8e94] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 16:53:04 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2b8df710] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 16:53:04 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2b8df710] for NavigablePath [server.haengdong.domain.action.MemberAction(m).action(743111489847125).event] overrode previous registration : org.hibernate.sql.ast.tree.from.LazyTableGroup@108b8e94 -2024-08-07 16:53:04 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 16:53:04 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 16:53:04 - Determining mapping-model type for SqmPath : SqmEntityValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action(743111489847125).event) -2024-08-07 16:53:04 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction(m)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.MemberAction(m).action(743111489847125)] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction(m).status] - -2024-08-07 16:53:04 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction(m)) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction(m).action(743111489847125)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.MemberAction(m).action(743111489847125).event) { - } - join LazyTableGroup (e2 : server.haengdong.domain.action.MemberAction(m).action(743111489847125).event) { - } - } - } - } - } - } - } - -2024-08-07 16:53:04 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 16:53:04 - Initializer list: - server.haengdong.domain.action.MemberAction(m).action(743111489847125).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(743111489847125).event)@478630794 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@835797187) - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@1215911409 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(743111489847125) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(743111489847125))@210243225 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@2013872646) - -2024-08-07 16:53:04 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 16:53:04 - Initiating transaction commit -2024-08-07 16:53:04 - Committing JPA transaction on EntityManager [SessionImpl(899107052<open>)] -2024-08-07 16:53:04 - committing -2024-08-07 16:53:04 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@303725443 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 16:53:04 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:53:04 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:53:04 - Writing [StepsResponse[steps=[]]] -2024-08-07 16:53:04 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:53:04 - Completed 200 OK -2024-08-07 16:53:19 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:53:19 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:53:33 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:64649] -2024-08-07 16:53:33 - RMI TCP Connection(4)-127.0.0.1: (port 64642) op = 80 -2024-08-07 16:53:33 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:53:33 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:53:33 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:53:33 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:53:33 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@447521e -2024-08-07 16:53:41 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 16:53:41 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Wed Aug 07 16:52:18 KST 2024 -2024-08-07 16:53:41 - Stopping beans in phase 2147483647 -2024-08-07 16:53:41 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 16:53:41 - Stopping beans in phase 2147482623 -2024-08-07 16:53:41 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 16:53:41 - Stopping beans in phase 2147481599 -2024-08-07 16:53:41 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 16:53:41 - Stopping beans in phase -2147483647 -2024-08-07 16:53:41 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 16:53:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 16:53:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 16:53:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 16:53:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 16:53:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 16:53:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 16:53:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 16:53:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 16:53:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 16:53:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 16:53:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 16:53:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 16:53:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 16:53:41 - Unregistering JMX-exposed beans on shutdown -2024-08-07 16:53:41 - Unregistering JMX-exposed beans -2024-08-07 16:53:41 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 16:53:41 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 16:53:41 - HHH000031: Closing -2024-08-07 16:53:41 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@4b1e7dd2] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@1b1d93e9] -2024-08-07 16:53:41 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 16:53:41 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 16:53:41 - HikariPool-1 - Shutdown initiated... -2024-08-07 16:53:41 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:53:41 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:53:41 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:53:41 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:53:41 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:53:41 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:53:41 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:53:41 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:53:41 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:53:41 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:53:41 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:53:41 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 16:53:41 - HikariPool-1 - Shutdown completed. -2024-08-07 16:53:41 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 16:53:42 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 16:53:42 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 16:53:42 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:53:42 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:53:42 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:53:42 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:53:42 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:53:42 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:53:42 - Loaded expression factory via original TCCL -2024-08-07 16:53:42 - Starting HaengdongApplication using Java 17.0.12 with PID 61992 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 16:53:42 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 16:53:42 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 16:53:42 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 16:53:42 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-07 16:53:42 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 16:53:42 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:53:42 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 16:53:42 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:53:42 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:53:42 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:53:42 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:53:42 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:53:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 16:53:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 16:53:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 16:53:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 16:53:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 16:53:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 16:53:42 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 16:53:42 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 16:53:42 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 16:53:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 16:53:42 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 16:53:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 16:53:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 16:53:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 16:53:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 16:53:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 16:53:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 16:53:43 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 16:53:43 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 16:53:43 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 16:53:43 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 16:53:43 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 16:53:43 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 16:53:43 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 16:53:43 - Finished Spring Data repository scanning in 15 ms. Found 4 JPA repository interfaces. -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 16:53:43 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 16:53:43 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 16:53:43 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 16:53:43 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 16:53:43 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 16:53:43 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 16:53:43 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 16:53:43 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 16:53:43 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@2744dcae] -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 16:53:43 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 16:53:43 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 16:53:43 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 16:53:43 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 16:53:43 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 16:53:43 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 16:53:43 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 16:53:43 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 16:53:43 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:53:43 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:53:43 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 16:53:43 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 16:53:43 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 16:53:43 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 16:53:43 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:43 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:43 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:43 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 16:53:43 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 16:53:43 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 16:53:43 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 16:53:43 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 16:53:43 - Tomcat initialized with port 8080 (http) -2024-08-07 16:53:43 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@3bbb8c16] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@3bbb8c16] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.mapper.MapperListener@65600fb3] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.mapper.MapperListener@65600fb3] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 16:53:43 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 16:53:43 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@3bbb8c16] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@3bbb8c16] to [STARTING] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@3bbb8c16] to [STARTED] -2024-08-07 16:53:43 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 16:53:43 - Starting service [Tomcat] -2024-08-07 16:53:43 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 16:53:43 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 16:53:43 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.webresources.StandardRoot@625487a6] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.webresources.StandardRoot@625487a6] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.webresources.StandardRoot@625487a6] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.webresources.DirResourceSet@65593327] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.webresources.DirResourceSet@65593327] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.webresources.DirResourceSet@65593327] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.webresources.DirResourceSet@65593327] to [STARTING] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.webresources.DirResourceSet@65593327] to [STARTED] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.webresources.StandardRoot@625487a6] to [STARTING] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.webresources.StandardRoot@625487a6] to [STARTED] -2024-08-07 16:53:43 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:53:43 - Starting this Loader -2024-08-07 16:53:43 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:53:43 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:53:43 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 16:53:43 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@111a7973] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@111a7973] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@111a7973] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@111a7973] to [STARTING] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@111a7973] to [STARTED] -2024-08-07 16:53:43 - Initializing Spring embedded WebApplicationContext -2024-08-07 16:53:43 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 16:53:43 - Root WebApplicationContext: initialization completed in 627 ms -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:53:43 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 16:53:43 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 16:53:43 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 16:53:43 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:53:43 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 16:53:43 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:53:43 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 16:53:43 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:53:43 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:53:43 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:53:43 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:53:43 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 16:53:43 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 16:53:43 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 16:53:43 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:53:43 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:53:43 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 16:53:43 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 16:53:43 - HikariPool-1 - configuration: -2024-08-07 16:53:43 - allowPoolSuspension.............false -2024-08-07 16:53:43 - autoCommit......................true -2024-08-07 16:53:43 - catalog.........................none -2024-08-07 16:53:43 - connectionInitSql...............none -2024-08-07 16:53:43 - connectionTestQuery.............none -2024-08-07 16:53:43 - connectionTimeout...............30000 -2024-08-07 16:53:43 - dataSource......................none -2024-08-07 16:53:43 - dataSourceClassName.............none -2024-08-07 16:53:43 - dataSourceJNDI..................none -2024-08-07 16:53:43 - dataSourceProperties............{password=<masked>} -2024-08-07 16:53:43 - driverClassName................."org.h2.Driver" -2024-08-07 16:53:43 - exceptionOverrideClassName......none -2024-08-07 16:53:43 - healthCheckProperties...........{} -2024-08-07 16:53:43 - healthCheckRegistry.............none -2024-08-07 16:53:43 - idleTimeout.....................600000 -2024-08-07 16:53:43 - initializationFailTimeout.......1 -2024-08-07 16:53:43 - isolateInternalQueries..........false -2024-08-07 16:53:43 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 16:53:43 - keepaliveTime...................0 -2024-08-07 16:53:43 - leakDetectionThreshold..........0 -2024-08-07 16:53:43 - maxLifetime.....................1800000 -2024-08-07 16:53:43 - maximumPoolSize.................10 -2024-08-07 16:53:43 - metricRegistry..................none -2024-08-07 16:53:43 - metricsTrackerFactory...........none -2024-08-07 16:53:43 - minimumIdle.....................10 -2024-08-07 16:53:43 - password........................<masked> -2024-08-07 16:53:43 - poolName........................"HikariPool-1" -2024-08-07 16:53:43 - readOnly........................false -2024-08-07 16:53:43 - registerMbeans..................false -2024-08-07 16:53:43 - scheduledExecutor...............none -2024-08-07 16:53:43 - schema..........................none -2024-08-07 16:53:43 - threadFactory...................internal -2024-08-07 16:53:43 - transactionIsolation............default -2024-08-07 16:53:43 - username........................"sa" -2024-08-07 16:53:43 - validationTimeout...............5000 -2024-08-07 16:53:43 - HikariPool-1 - Starting... -2024-08-07 16:53:43 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 16:53:43 - HikariPool-1 - Start completed. -2024-08-07 16:53:43 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 16:53:43 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 16:53:43 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:43 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:64656] -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 16:53:43 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:43 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:53:43 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:53:43 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 84 -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:43 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 16:53:43 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:43 - [javax.management.remote.rmi.RMIConnectionImpl@f8e177b: connectionId=rmi://127.0.0.1 1] closing. -2024-08-07 16:53:43 - [javax.management.remote.rmi.RMIConnectionImpl@f8e177b: connectionId=rmi://127.0.0.1 1] closed. -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 16:53:43 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 16:53:43 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 16:53:43 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 16:53:43 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 16:53:43 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5a6195b8] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5a6195b8] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5a6195b8] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5a6195b8] to [STARTING] -2024-08-07 16:53:43 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5a6195b8] to [STARTED] -2024-08-07 16:53:43 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:53:43 - Filter 'requestContextFilter' configured for use -2024-08-07 16:53:43 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 16:53:43 - Filter 'characterEncodingFilter' configured for use -2024-08-07 16:53:43 - Filter 'formContentFilter' configured for use -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:53:43 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:53:43 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:53:43 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 16:53:43 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.mapper.MapperListener@65600fb3] to [STARTING_PREP] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.mapper.MapperListener@65600fb3] to [STARTING] -2024-08-07 16:53:43 - Registered host [localhost] -2024-08-07 16:53:43 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 16:53:43 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 16:53:43 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 16:53:43 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 16:53:43 - Setting state for [org.apache.catalina.mapper.MapperListener@65600fb3] to [STARTED] -2024-08-07 16:53:43 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 16:53:43 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 16:53:43 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 16:53:43 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 16:53:43 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 16:53:43 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:53:43 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:53:43 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 16:53:43 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 16:53:43 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 16:53:43 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:53:43 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:43 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 16:53:43 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 16:53:43 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 16:53:43 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 16:53:43 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 16:53:43 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 16:53:43 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 16:53:43 - HHH000206: 'hibernate.properties' not found -2024-08-07 16:53:43 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 16:53:43 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 16:53:43 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 16:53:43 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 16:53:43 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 16:53:43 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 16:53:43 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 16:53:43 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 16:53:43 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 16:53:43 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 16:53:43 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 16:53:43 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 16:53:43 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 16:53:43 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 16:53:43 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 16:53:43 - HHH000026: Second-level cache disabled -2024-08-07 16:53:43 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@19d3f6ad -2024-08-07 16:53:43 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@19d3f6ad -2024-08-07 16:53:43 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@19d3f6ad -2024-08-07 16:53:43 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@1b69fc07 -2024-08-07 16:53:43 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@1b69fc07 -2024-08-07 16:53:43 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@19e801b5 -2024-08-07 16:53:43 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@19e801b5 -2024-08-07 16:53:43 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-07 16:53:43 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-07 16:53:43 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-07 16:53:43 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-07 16:53:43 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-07 16:53:43 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-07 16:53:43 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-07 16:53:43 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-07 16:53:43 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-07 16:53:43 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-07 16:53:43 - Adding type registration image -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-07 16:53:43 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 16:53:43 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 16:53:43 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-07 16:53:43 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 16:53:43 - Adding type registration short -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 16:53:43 - Adding type registration short -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 16:53:43 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 16:53:43 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 16:53:43 - Adding type registration int -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 16:53:43 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 16:53:43 - Adding type registration long -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 16:53:43 - Adding type registration long -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 16:53:43 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 16:53:43 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 16:53:43 - Adding type registration float -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 16:53:43 - Adding type registration float -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 16:53:43 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 16:53:43 - Adding type registration double -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:53:43 - Adding type registration double -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:53:43 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:53:43 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 16:53:43 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 16:53:43 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 16:53:43 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 16:53:43 - Adding type registration character -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 16:53:43 - Adding type registration char -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 16:53:43 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 16:53:43 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 16:53:43 - Adding type registration string -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 16:53:43 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 16:53:43 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 16:53:43 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 16:53:43 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 16:53:43 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 16:53:43 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 16:53:43 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 16:53:43 - Adding type registration text -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 16:53:43 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 16:53:43 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 16:53:43 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 16:53:43 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 16:53:43 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 16:53:43 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 16:53:43 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 16:53:43 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 16:53:43 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 16:53:43 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 16:53:43 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 16:53:43 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 16:53:43 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 16:53:43 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 16:53:43 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 16:53:43 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 16:53:43 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 16:53:43 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:53:43 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:53:43 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 16:53:43 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 16:53:43 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 16:53:43 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 16:53:43 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 16:53:43 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 16:53:43 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 16:53:43 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 16:53:43 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 16:53:43 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 16:53:43 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 16:53:43 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 16:53:43 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 16:53:43 - Adding type registration date -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 16:53:43 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 16:53:43 - Adding type registration time -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 16:53:43 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 16:53:43 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 16:53:43 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 16:53:43 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 16:53:43 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:53:43 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:53:43 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:53:43 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 16:53:43 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 16:53:43 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 16:53:43 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 16:53:43 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 16:53:43 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 16:53:43 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 16:53:43 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 16:53:43 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 16:53:43 - Adding type registration class -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 16:53:43 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 16:53:43 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 16:53:43 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 16:53:43 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 16:53:43 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 16:53:43 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 16:53:43 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 16:53:43 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 16:53:43 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 16:53:43 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 16:53:43 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 16:53:43 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 16:53:43 - Adding type registration url -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 16:53:43 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 16:53:43 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:53:43 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 16:53:43 - Adding type registration object -> org.hibernate.type.JavaObjectType@4ad8d36f -2024-08-07 16:53:43 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@4ad8d36f -2024-08-07 16:53:43 - Adding type registration null -> org.hibernate.type.NullType@6ffbf0ac -2024-08-07 16:53:43 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@ad5cffa -2024-08-07 16:53:43 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@237aa0c7 -2024-08-07 16:53:43 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@1b8ee69d -2024-08-07 16:53:43 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@2b400bd0 -2024-08-07 16:53:43 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@fceab5d -2024-08-07 16:53:43 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@79445efb -2024-08-07 16:53:43 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@1592e540 -2024-08-07 16:53:43 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@3e2772a9 -2024-08-07 16:53:43 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@7d5ef1c3] into BootstrapContext; was [null] -2024-08-07 16:53:43 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@7d5ef1c3) [was null] -2024-08-07 16:53:43 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@5bf7f15f] into BootstrapContext; was [null] -2024-08-07 16:53:43 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@14b26e90] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@11309dd4] -2024-08-07 16:53:43 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 16:53:43 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 16:53:43 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-07 16:53:43 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 16:53:43 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 16:53:43 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@7d5ef1c3] -2024-08-07 16:53:43 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@7d5ef1c3] -2024-08-07 16:53:43 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 16:53:43 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 16:53:43 - JDBC version : 4.2 -2024-08-07 16:53:43 - HikariPool-1 - After adding stats (total=5, active=1, idle=4, waiting=0) -2024-08-07 16:53:43 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 16:53:43 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 16:53:43 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 16:53:43 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 16:53:43 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 16:53:43 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 16:53:43 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 16:53:43 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 16:53:43 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 16:53:43 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 16:53:43 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 16:53:43 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 16:53:43 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@7b2f8152] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@6371c5ec] -2024-08-07 16:53:43 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 16:53:43 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 16:53:43 - Import with entity name Action -2024-08-07 16:53:43 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 16:53:43 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 16:53:43 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 16:53:43 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:53:43 - Binding column: AnnotatedColumn() -2024-08-07 16:53:43 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:53:43 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:53:43 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:53:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 16:53:43 - building BasicValue for id -2024-08-07 16:53:43 - Skipping column re-registration: action.id -2024-08-07 16:53:43 - Building property id -2024-08-07 16:53:43 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:53:43 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:53:43 - Binding column: AnnotatedColumn() -2024-08-07 16:53:43 - Building property event -2024-08-07 16:53:43 - Binding column: AnnotatedColumn() -2024-08-07 16:53:43 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 16:53:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 16:53:43 - building BasicValue for sequence -2024-08-07 16:53:43 - Skipping column re-registration: action.sequence -2024-08-07 16:53:43 - Building property sequence -2024-08-07 16:53:43 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:53:43 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 16:53:43 - Import with entity name BillAction -2024-08-07 16:53:43 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 16:53:43 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:53:43 - Binding column: AnnotatedColumn() -2024-08-07 16:53:43 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:53:43 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:53:43 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:53:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 16:53:43 - building BasicValue for id -2024-08-07 16:53:43 - Skipping column re-registration: bill_action.id -2024-08-07 16:53:43 - Building property id -2024-08-07 16:53:43 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:53:43 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:53:43 - Binding column: AnnotatedColumn() -2024-08-07 16:53:43 - Building property action -2024-08-07 16:53:43 - Binding column: AnnotatedColumn() -2024-08-07 16:53:43 - MetadataSourceProcessor property price with lazy=false -2024-08-07 16:53:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 16:53:43 - building BasicValue for price -2024-08-07 16:53:43 - Skipping column re-registration: bill_action.price -2024-08-07 16:53:43 - Building property price -2024-08-07 16:53:43 - Binding column: AnnotatedColumn() -2024-08-07 16:53:43 - MetadataSourceProcessor property title with lazy=false -2024-08-07 16:53:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 16:53:43 - building BasicValue for title -2024-08-07 16:53:43 - Skipping column re-registration: bill_action.title -2024-08-07 16:53:43 - Building property title -2024-08-07 16:53:43 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:53:43 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 16:53:43 - Import with entity name MemberAction -2024-08-07 16:53:43 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 16:53:43 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:53:43 - Binding column: AnnotatedColumn() -2024-08-07 16:53:43 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:53:43 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:53:43 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:53:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 16:53:43 - building BasicValue for id -2024-08-07 16:53:43 - Skipping column re-registration: member_action.id -2024-08-07 16:53:43 - Building property id -2024-08-07 16:53:43 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:53:43 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:53:43 - Binding column: AnnotatedColumn() -2024-08-07 16:53:43 - Building property action -2024-08-07 16:53:43 - Binding column: AnnotatedColumn() -2024-08-07 16:53:43 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 16:53:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 16:53:43 - building BasicValue for memberGroupId -2024-08-07 16:53:43 - Skipping column re-registration: member_action.member_group_id -2024-08-07 16:53:43 - Building property memberGroupId -2024-08-07 16:53:43 - Binding column: AnnotatedColumn() -2024-08-07 16:53:43 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 16:53:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 16:53:43 - building BasicValue for memberName -2024-08-07 16:53:43 - Skipping column re-registration: member_action.member_name -2024-08-07 16:53:43 - Building property memberName -2024-08-07 16:53:43 - Binding column: AnnotatedColumn() -2024-08-07 16:53:43 - MetadataSourceProcessor property status with lazy=false -2024-08-07 16:53:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 16:53:43 - building BasicValue for status -2024-08-07 16:53:43 - Skipping column re-registration: member_action.status -2024-08-07 16:53:43 - Building property status -2024-08-07 16:53:43 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:53:43 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 16:53:43 - Import with entity name Event -2024-08-07 16:53:43 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 16:53:43 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:53:43 - Binding column: AnnotatedColumn() -2024-08-07 16:53:43 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:53:43 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:53:43 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:53:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 16:53:43 - building BasicValue for id -2024-08-07 16:53:43 - Skipping column re-registration: event.id -2024-08-07 16:53:43 - Building property id -2024-08-07 16:53:43 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:53:43 - Binding column: AnnotatedColumn() -2024-08-07 16:53:43 - MetadataSourceProcessor property name with lazy=false -2024-08-07 16:53:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 16:53:43 - building BasicValue for name -2024-08-07 16:53:43 - Skipping column re-registration: event.name -2024-08-07 16:53:43 - Building property name -2024-08-07 16:53:43 - Binding column: AnnotatedColumn() -2024-08-07 16:53:43 - MetadataSourceProcessor property password with lazy=false -2024-08-07 16:53:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 16:53:43 - building BasicValue for password -2024-08-07 16:53:43 - Skipping column re-registration: event.password -2024-08-07 16:53:43 - Building property password -2024-08-07 16:53:43 - Binding column: AnnotatedColumn() -2024-08-07 16:53:43 - MetadataSourceProcessor property token with lazy=false -2024-08-07 16:53:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 16:53:43 - building BasicValue for token -2024-08-07 16:53:43 - Skipping column re-registration: event.token -2024-08-07 16:53:43 - Building property token -2024-08-07 16:53:43 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 16:53:43 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 16:53:43 - Import with entity name EventStep -2024-08-07 16:53:43 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 16:53:43 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:53:43 - Binding column: AnnotatedColumn() -2024-08-07 16:53:43 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:53:43 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:53:43 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:53:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 16:53:43 - building BasicValue for id -2024-08-07 16:53:43 - Skipping column re-registration: event_step.id -2024-08-07 16:53:43 - Building property id -2024-08-07 16:53:43 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:53:43 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:53:43 - Binding column: AnnotatedColumn() -2024-08-07 16:53:43 - Building property event -2024-08-07 16:53:43 - Binding column: AnnotatedColumn() -2024-08-07 16:53:43 - MetadataSourceProcessor property name with lazy=false -2024-08-07 16:53:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 16:53:43 - building BasicValue for name -2024-08-07 16:53:43 - Skipping column re-registration: event_step.name -2024-08-07 16:53:43 - Building property name -2024-08-07 16:53:43 - Binding column: AnnotatedColumn() -2024-08-07 16:53:43 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 16:53:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 16:53:43 - building BasicValue for sequence -2024-08-07 16:53:43 - Skipping column re-registration: event_step.sequence -2024-08-07 16:53:43 - Building property sequence -2024-08-07 16:53:43 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 16:53:43 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:53:43 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 16:53:43 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:53:43 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 16:53:43 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 16:53:43 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:53:43 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 16:53:43 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 16:53:43 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 16:53:43 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:53:43 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 16:53:43 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 16:53:43 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 16:53:43 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:53:43 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 16:53:43 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 16:53:43 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 16:53:43 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 16:53:43 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 16:53:43 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 16:53:43 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 16:53:43 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 16:53:43 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 16:53:43 - Building session factory -2024-08-07 16:53:43 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:53:43 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@20e3b165, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@34d3bfca, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.17636382829388421508, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=61992, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.17636382829388421508, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@6655f3cd, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 16:53:43 - Session factory constructed with filter configurations : {} -2024-08-07 16:53:43 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:53:43 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:53:43 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:53:43 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:53:43 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:53:43 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:53:43 - Loaded expression factory via original TCCL -2024-08-07 16:53:43 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:53:43 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:53:43 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:53:43 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:53:43 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:53:43 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:53:43 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:53:43 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:53:44 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:53:44 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:53:44 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:53:44 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:53:44 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:53:44 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:53:44 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 16:53:44 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 16:53:44 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:53:44 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:53:44 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@7164e28a] under count; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@39fc17be] under every; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@106edde4] under any; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@32121140] under sinh; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@96c840a] under cosh; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5c81ddab] under tanh; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@24ee6faa] under pi; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6d4f266] under log; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 16:53:44 - Registering alternate key : length -> character_length -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@63896cf7] under position; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@2ba0b95f] under overlay; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@517d9cd5] under trim; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@c7443f] under cast; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@74e175c7] under collate; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@71135794] under extract; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@4a10c019] under ifnull; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@639cb0c8] under pad; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@7f9d40b3] under str; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@62c42a3] under format; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@4cd6f08b] under timestampadd; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@309e7215] under timestampdiff; prior registration was null -2024-08-07 16:53:44 - Registering alternate key : dateadd -> timestampadd -2024-08-07 16:53:44 - Registering alternate key : datediff -> timestampdiff -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@149238fe] under current_date; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@a0bdbe2] under current_time; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@261099e1] under current_timestamp; prior registration was null -2024-08-07 16:53:44 - Registering alternate key : current date -> current_date -2024-08-07 16:53:44 - Registering alternate key : current time -> current_time -2024-08-07 16:53:44 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@ed1d2cf] under local_date; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@b814e23] under local_time; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5f81507a] under local_datetime; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7d7c05fa] under offset_datetime; prior registration was null -2024-08-07 16:53:44 - Registering alternate key : local date -> local_date -2024-08-07 16:53:44 - Registering alternate key : local time -> local_time -2024-08-07 16:53:44 - Registering alternate key : local datetime -> local_datetime -2024-08-07 16:53:44 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7dbbf730] under instant; prior registration was null -2024-08-07 16:53:44 - Registering alternate key : current_instant -> instant -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@16732340] under sql; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@38e052b2] under count; prior registration was org.hibernate.dialect.function.CountFunction@7164e28a -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@64f613da] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@24ee6faa -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2f64f99f] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 16:53:44 - Registering alternate key : day -> day_of_month -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@b814e23 -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@5f81507a -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@7d60bd5a] under trunc; prior registration was null -2024-08-07 16:53:44 - Registering alternate key : truncate -> trunc -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@43312512] under date_trunc; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 16:53:44 - Registering alternate key : chr -> char -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@13f7c165] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@63896cf7 -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@655f92a1] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 16:53:44 - Registering alternate key : every -> bool_and -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 16:53:44 - Registering alternate key : any -> bool_or -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@1d2d793d] under format; prior registration was org.hibernate.dialect.function.FormatFunction@62c42a3 -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@34001c5d] under listagg; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@34f8ce89] under mode; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@22ed2886] under percentile_cont; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@30ca66c5] under percentile_disc; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@10bcbbce] under rank; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@27234b7c] under dense_rank; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@125a8ab6] under percent_rank; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@792b9dd3] under cume_dist; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@4ed19540] under array; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@533e8807] under array_list; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@4eab9aec] under array_agg; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@656c0eae] under array_position; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@180fb796] under array_positions; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@7ea8224b] under array_positions_list; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5a010eec] under array_length; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@69fe8c75] under array_concat; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@4c0ab04f] under array_prepend; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@384f0e32] under array_append; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@630e5010] under array_contains; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@10b5ff4d] under array_contains_nullable; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@257d3968] under array_overlaps; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@23cfdfa2] under array_overlaps_nullable; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@151d216e] under array_get; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@5d67bf4d] under array_set; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@64921450] under array_remove; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@22c4354d] under array_remove_index; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2681185e] under array_slice; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@15fd3088] under array_replace; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@f13e0a2] under array_trim; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@1ba98508] under array_fill; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@4b552b13] under array_fill_list; prior registration was null -2024-08-07 16:53:44 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@30b97fcf] under array_to_string; prior registration was null -2024-08-07 16:53:44 - abs(NUMERIC arg) -2024-08-07 16:53:44 - Double acos(NUMERIC arg) -2024-08-07 16:53:44 - Boolean any(BOOLEAN predicate) -2024-08-07 16:53:44 - array( ... ) -2024-08-07 16:53:44 - array_agg(arg) -2024-08-07 16:53:44 - array_append( ... ) -2024-08-07 16:53:44 - array_concat( ... ) -2024-08-07 16:53:44 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 16:53:44 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 16:53:44 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 16:53:44 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 16:53:44 - array_get(ARRAY array, INTEGER index) -2024-08-07 16:53:44 - Integer array_length(ARRAY array) -2024-08-07 16:53:44 - array_list( ... ) -2024-08-07 16:53:44 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 16:53:44 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 16:53:44 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 16:53:44 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 16:53:44 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 16:53:44 - array_prepend( ... ) -2024-08-07 16:53:44 - array_remove( ... ) -2024-08-07 16:53:44 - array_remove_index( ... ) -2024-08-07 16:53:44 - array_replace( ... ) -2024-08-07 16:53:44 - array_set( ... ) -2024-08-07 16:53:44 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 16:53:44 - String array_to_string( ... ) -2024-08-07 16:53:44 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 16:53:44 - Integer ascii(STRING arg) -2024-08-07 16:53:44 - Double asin(NUMERIC arg) -2024-08-07 16:53:44 - Double atan(NUMERIC arg) -2024-08-07 16:53:44 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 16:53:44 - avg(NUMERIC arg) -2024-08-07 16:53:44 - bit_and(arg) -2024-08-07 16:53:44 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 16:53:44 - bit_or(arg) -2024-08-07 16:53:44 - bitand(arg0, arg1) -2024-08-07 16:53:44 - bitnot(arg) -2024-08-07 16:53:44 - bitor(arg0, arg1) -2024-08-07 16:53:44 - bitxor(arg0, arg1) -2024-08-07 16:53:44 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 16:53:44 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 16:53:44 - cast(arg as Type) -2024-08-07 16:53:44 - ceiling(NUMERIC arg) -2024-08-07 16:53:44 - Character char(INTEGER arg) -2024-08-07 16:53:44 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 16:53:44 - Character chr(INTEGER arg) -2024-08-07 16:53:44 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 16:53:44 - String collate(STRING string as COLLATION collation) -2024-08-07 16:53:44 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 16:53:44 - Double cos(NUMERIC arg) -2024-08-07 16:53:44 - Double cosh(NUMERIC arg) -2024-08-07 16:53:44 - Double cot(NUMERIC arg) -2024-08-07 16:53:44 - Long count([distinct ]{arg|*}) -2024-08-07 16:53:44 - Double cume_dist([arg0[, ...]]) -2024-08-07 16:53:44 - Date curdate() -2024-08-07 16:53:44 - Date current date -2024-08-07 16:53:44 - Time current time -2024-08-07 16:53:44 - Timestamp current timestamp -2024-08-07 16:53:44 - Date current_date -2024-08-07 16:53:44 - Instant current_instant -2024-08-07 16:53:44 - Time current_time -2024-08-07 16:53:44 - Timestamp current_timestamp -2024-08-07 16:53:44 - Time curtime() -2024-08-07 16:53:44 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 16:53:44 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 16:53:44 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 16:53:44 - Integer day(DATE arg) -2024-08-07 16:53:44 - Integer day_of_month(DATE arg) -2024-08-07 16:53:44 - Integer day_of_week(DATE arg) -2024-08-07 16:53:44 - Integer day_of_year(DATE arg) -2024-08-07 16:53:44 - String dayname(DATE arg) -2024-08-07 16:53:44 - Double degrees(NUMERIC arg) -2024-08-07 16:53:44 - Long dense_rank([arg0[, ...]]) -2024-08-07 16:53:44 - Boolean every(BOOLEAN predicate) -2024-08-07 16:53:44 - Double exp(NUMERIC arg) -2024-08-07 16:53:44 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 16:53:44 - first_valueANY value -2024-08-07 16:53:44 - floor(NUMERIC arg) -2024-08-07 16:53:44 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 16:53:44 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 16:53:44 - Integer hour(TIME arg) -2024-08-07 16:53:44 - ifnull(arg0, arg1) -2024-08-07 16:53:44 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 16:53:44 - Instant instant -2024-08-07 16:53:44 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 16:53:44 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 16:53:44 - last_valueANY value -2024-08-07 16:53:44 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 16:53:44 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 16:53:44 - String left(STRING string, INTEGER length) -2024-08-07 16:53:44 - Integer length(STRING_OR_CLOB arg) -2024-08-07 16:53:44 - String listagg(STRING arg0, STRING arg1) -2024-08-07 16:53:44 - Double ln(NUMERIC arg) -2024-08-07 16:53:44 - LocalDate local date -2024-08-07 16:53:44 - LocalDateTime local datetime -2024-08-07 16:53:44 - LocalTime local time -2024-08-07 16:53:44 - LocalDate local_date -2024-08-07 16:53:44 - LocalDateTime local_datetime -2024-08-07 16:53:44 - LocalTime local_time -2024-08-07 16:53:44 - Time localtime -2024-08-07 16:53:44 - Timestamp localtimestamp -2024-08-07 16:53:44 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 16:53:44 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 16:53:44 - Double log10(NUMERIC arg) -2024-08-07 16:53:44 - String lower(STRING string) -2024-08-07 16:53:44 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 16:53:44 - String ltrim(STRING string) -2024-08-07 16:53:44 - max(COMPARABLE arg) -2024-08-07 16:53:44 - Double median(NUMERIC arg) -2024-08-07 16:53:44 - Integer microsecond(TIME arg) -2024-08-07 16:53:44 - min(COMPARABLE arg) -2024-08-07 16:53:44 - Integer minute(TIME arg) -2024-08-07 16:53:44 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 16:53:44 - mode() -2024-08-07 16:53:44 - Integer month(DATE arg) -2024-08-07 16:53:44 - String monthname(DATE arg) -2024-08-07 16:53:44 - Timestamp now() -2024-08-07 16:53:44 - nth_valueANY value, INTEGER nth -2024-08-07 16:53:44 - nullif(arg0, arg1) -2024-08-07 16:53:44 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 16:53:44 - OffsetDateTime offset datetime -2024-08-07 16:53:44 - OffsetDateTime offset_datetime -2024-08-07 16:53:44 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 16:53:44 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 16:53:44 - Double percent_rank([arg0[, ...]]) -2024-08-07 16:53:44 - percentile_cont(NUMERIC arg) -2024-08-07 16:53:44 - percentile_disc(NUMERIC arg) -2024-08-07 16:53:44 - Double pi -2024-08-07 16:53:44 - Integer position(STRING pattern in STRING string) -2024-08-07 16:53:44 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 16:53:44 - Integer quarter(DATE arg) -2024-08-07 16:53:44 - Double radians(NUMERIC arg) -2024-08-07 16:53:44 - Double rand([INTEGER seed]) -2024-08-07 16:53:44 - Long rank([arg0[, ...]]) -2024-08-07 16:53:44 - String repeat(STRING string, INTEGER times) -2024-08-07 16:53:44 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 16:53:44 - String right(STRING string, INTEGER length) -2024-08-07 16:53:44 - round(NUMERIC number[, INTEGER places]) -2024-08-07 16:53:44 - Long row_number() -2024-08-07 16:53:44 - Long rownum() -2024-08-07 16:53:44 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 16:53:44 - String rtrim(STRING string) -2024-08-07 16:53:44 - Integer second(TIME arg) -2024-08-07 16:53:44 - Integer sign(NUMERIC arg) -2024-08-07 16:53:44 - Double sin(NUMERIC arg) -2024-08-07 16:53:44 - Double sinh(NUMERIC arg) -2024-08-07 16:53:44 - String soundex(arg) -2024-08-07 16:53:44 - String space(INTEGER arg) -2024-08-07 16:53:44 - Object sql -2024-08-07 16:53:44 - Double sqrt(NUMERIC arg) -2024-08-07 16:53:44 - Double stddev_pop(NUMERIC arg) -2024-08-07 16:53:44 - Double stddev_samp(NUMERIC arg) -2024-08-07 16:53:44 - String str(arg) -2024-08-07 16:53:44 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 16:53:44 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 16:53:44 - sum(arg) -2024-08-07 16:53:44 - Timestamp sysdate -2024-08-07 16:53:44 - Double tan(NUMERIC arg) -2024-08-07 16:53:44 - Double tanh(NUMERIC arg) -2024-08-07 16:53:44 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 16:53:44 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 16:53:44 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 16:53:44 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 16:53:44 - trunc( ... ) -2024-08-07 16:53:44 - truncate( ... ) -2024-08-07 16:53:44 - String upper(STRING string) -2024-08-07 16:53:44 - Double var_pop(NUMERIC arg) -2024-08-07 16:53:44 - Double var_samp(NUMERIC arg) -2024-08-07 16:53:44 - Integer week(DATE arg) -2024-08-07 16:53:44 - Integer year(DATE arg) -2024-08-07 16:53:44 - Starting QueryInterpretationCache(2048) -2024-08-07 16:53:44 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 16:53:44 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 16:53:44 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:53:44 - Configured EntityCopyObserver strategy: disallow -2024-08-07 16:53:44 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:53:44 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:53:44 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:53:44 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 16:53:44 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:53:44 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:53:44 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 16:53:44 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:53:44 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:53:44 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 16:53:44 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:53:44 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:53:44 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 16:53:44 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:53:44 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:53:44 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 16:53:44 - Starting post-init callbacks -2024-08-07 16:53:44 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 16:53:44 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 16:53:44 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:53:44 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 16:53:44 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 16:53:44 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 16:53:44 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 16:53:44 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 16:53:44 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 82 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 82 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 84 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:44 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:44 - [javax.management.remote.rmi.RMIConnectionImpl@5ef2fa85: connectionId=rmi://127.0.0.1 2] closing. -2024-08-07 16:53:44 - [javax.management.remote.rmi.RMIConnectionImpl@5ef2fa85: connectionId=rmi://127.0.0.1 2] closed. -2024-08-07 16:53:44 - Created new SQL alias : ba1_0 -2024-08-07 16:53:44 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 16:53:44 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2e7563f6] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 16:53:44 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 16:53:44 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 16:53:44 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 16:53:44 - Version select: select id from bill_action where id=? -2024-08-07 16:53:44 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 16:53:44 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 16:53:44 - Delete (0): delete from bill_action where id=? -2024-08-07 16:53:44 - Created new SQL alias : ma1_0 -2024-08-07 16:53:44 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 16:53:44 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@68024e57] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:53:44 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 16:53:44 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 16:53:44 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 16:53:44 - Version select: select id from member_action where id=? -2024-08-07 16:53:44 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 16:53:44 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 16:53:44 - Delete (0): delete from member_action where id=? -2024-08-07 16:53:44 - Created new SQL alias : e1_0 -2024-08-07 16:53:44 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 16:53:44 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 16:53:44 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 16:53:44 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 16:53:44 - Version select: select id from event where id=? -2024-08-07 16:53:44 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 16:53:44 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 16:53:44 - Delete (0): delete from event where id=? -2024-08-07 16:53:44 - Created new SQL alias : a1_0 -2024-08-07 16:53:44 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 16:53:44 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@62aefc75] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 16:53:44 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 16:53:44 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 16:53:44 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 16:53:44 - Version select: select id from action where id=? -2024-08-07 16:53:44 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 16:53:44 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 16:53:44 - Delete (0): delete from action where id=? -2024-08-07 16:53:44 - Created new SQL alias : es1_0 -2024-08-07 16:53:44 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 16:53:44 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@435e224d] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 16:53:44 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 16:53:44 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 16:53:44 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 16:53:44 - Version select: select id from event_step where id=? -2024-08-07 16:53:44 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 16:53:44 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 16:53:44 - Delete (0): delete from event_step where id=? -2024-08-07 16:53:44 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 16:53:44 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@7b2f8152] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@7d741200] -2024-08-07 16:53:44 - Checking 0 named HQL queries -2024-08-07 16:53:44 - Checking 0 named SQL queries -2024-08-07 16:53:44 - - drop table if exists action cascade -2024-08-07 16:53:44 - - drop table if exists bill_action cascade -2024-08-07 16:53:44 - - drop table if exists event cascade -2024-08-07 16:53:44 - - drop table if exists event_step cascade -2024-08-07 16:53:44 - - drop table if exists member_action cascade -2024-08-07 16:53:44 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 16:53:44 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 16:53:44 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 16:53:44 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 16:53:44 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 16:53:44 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 16:53:44 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 16:53:44 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 16:53:44 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 16:53:44 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@62fa4a88 -2024-08-07 16:53:44 - Registering SessionFactory: 5122a0b3-5318-4bb1-94e8-093654f37eef (<unnamed>) -2024-08-07 16:53:44 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 16:53:44 - Instantiated SessionFactory -2024-08-07 16:53:44 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'actionService' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 16:53:44 - Initializing JpaMetamodelMappingContext… -2024-08-07 16:53:44 - Finished initializing JpaMetamodelMappingContext -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - Statistics initialized [enabled=false] -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 16:53:44 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 16:53:44 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 16:53:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:44 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - Looking up named query BillAction.findByAction_Event -2024-08-07 16:53:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:44 - Did not find named query BillAction.findByAction_Event -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - Looking up named query BillAction.findByAction_Id -2024-08-07 16:53:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:44 - Did not find named query BillAction.findByAction_Id -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 16:53:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:44 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 16:53:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:44 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 16:53:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:44 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 16:53:44 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 16:53:44 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:53:44 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 16:53:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:44 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 16:53:44 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 16:53:44 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 16:53:44 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 16:53:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:44 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 16:53:44 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:53:44 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(743195680240166)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(743195680240166)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(743195680240166)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(743195680240166)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(743195680240166).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:53:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:44 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 16:53:44 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:53:44 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:53:44 - Looking up named query MemberAction.findByAction -2024-08-07 16:53:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:44 - Did not find named query MemberAction.findByAction -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - Looking up named query Event.findByToken -2024-08-07 16:53:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:44 - Did not find named query Event.findByToken -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 16:53:44 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 16:53:44 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:53:44 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:44 - Did not find named query Action.findLastByEvent.count -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 16:53:44 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:53:44 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:53:44 - Looking up named query Action.findByIdAndEvent -2024-08-07 16:53:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:44 - Did not find named query Action.findByIdAndEvent -2024-08-07 16:53:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:44 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 16:53:44 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 16:53:44 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 16:53:44 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'eventService' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 16:53:44 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 16:53:44 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 16:53:44 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 16:53:44 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 16:53:44 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 16:53:44 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 16:53:44 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:53:44 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 16:53:44 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 16:53:44 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 16:53:44 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'actionController' -2024-08-07 16:53:44 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 16:53:44 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'eventController' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'authService' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 16:53:44 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 16:53:44 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 16:53:44 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 16:53:44 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 16:53:44 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:44 - Loaded expression factory via original TCCL -2024-08-07 16:53:44 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 16:53:44 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 16:53:44 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:53:44 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 16:53:44 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:53:44 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:53:44 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:53:44 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:53:44 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:53:44 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:53:44 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:53:44 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:53:44 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:53:44 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:53:44 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'error' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 16:53:44 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 16:53:44 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 16:53:44 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 16:53:44 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 16:53:44 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:44 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:53:44 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 16:53:44 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:44 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:53:44 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 16:53:44 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:53:44 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:53:44 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:53:44 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 16:53:44 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 16:53:44 - - s.h.p.EventController: - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) -2024-08-07 16:53:44 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 16:53:44 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 16:53:44 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 16:53:44 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:53:44 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 16:53:44 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:53:44 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:53:44 - 'beanNameHandlerMapping' {} -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 16:53:44 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:53:44 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 16:53:44 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 16:53:44 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:44 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:44 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 16:53:44 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:44 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 16:53:44 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 16:53:44 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 16:53:44 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:53:44 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:53:44 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:53:44 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 16:53:44 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:53:44 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 16:53:44 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 16:53:44 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 16:53:44 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 16:53:44 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 82 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 82 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 82 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 84 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 82 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 82 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:44 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 82 -2024-08-07 16:53:44 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:44 - [javax.management.remote.rmi.RMIConnectionImpl@7f95c6b7: connectionId=rmi://127.0.0.1 3] closing. -2024-08-07 16:53:44 - [javax.management.remote.rmi.RMIConnectionImpl@7f95c6b7: connectionId=rmi://127.0.0.1 3] closed. -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 16:53:44 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 16:53:44 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 16:53:44 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:53:44 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 16:53:44 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 16:53:44 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 16:53:44 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 16:53:44 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 16:53:44 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:44 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 16:53:44 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:44 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 16:53:44 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 16:53:44 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 16:53:44 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 16:53:44 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 16:53:44 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 16:53:44 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 16:53:44 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 16:53:44 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 16:53:44 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 16:53:44 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 16:53:44 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 16:53:44 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 16:53:44 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:53:44 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 16:53:44 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 16:53:44 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 16:53:44 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 16:53:44 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 16:53:44 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 16:53:44 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 16:53:44 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 16:53:44 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 16:53:44 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 16:53:44 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 16:53:44 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:53:44 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:53:44 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 16:53:44 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 16:53:44 - Using SLF4J as the default logging framework -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 16:53:44 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 16:53:44 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 16:53:44 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 16:53:44 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 16:53:44 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 16:53:44 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 16:53:44 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 16:53:44 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 16:53:44 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 16:53:44 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 16:53:44 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 16:53:44 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 16:53:44 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 16:53:44 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 16:53:44 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 16:53:44 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 16:53:44 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 16:53:44 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 16:53:44 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:53:44 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:53:44 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 16:53:44 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 16:53:44 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 16:53:44 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:53:44 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:53:44 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 16:53:44 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 16:53:44 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 16:53:44 - Registering beans for JMX exposure on startup -2024-08-07 16:53:44 - Auto-detecting user-defined JMX MBeans -2024-08-07 16:53:44 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 16:53:44 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 16:53:44 - Starting beans in phase -2147483647 -2024-08-07 16:53:44 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 16:53:44 - Starting beans in phase 2147481599 -2024-08-07 16:53:44 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 16:53:44 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 16:53:44 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 16:53:44 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 16:53:44 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 16:53:44 - Successfully started bean 'webServerStartStop' -2024-08-07 16:53:44 - Starting beans in phase 2147482623 -2024-08-07 16:53:44 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 16:53:44 - Starting beans in phase 2147483647 -2024-08-07 16:53:44 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 16:53:44 - Started HaengdongApplication in 2.191 seconds (process running for 2.375) -2024-08-07 16:53:44 - Application availability state LivenessState changed to CORRECT -2024-08-07 16:53:44 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 16:53:45 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 82 -2024-08-07 16:53:45 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 82 -2024-08-07 16:53:45 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 82 -2024-08-07 16:53:45 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 84 -2024-08-07 16:53:45 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 82 -2024-08-07 16:53:45 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 82 -2024-08-07 16:53:45 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:53:45 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 82 -2024-08-07 16:53:45 - RMI TCP Connection(1)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - [javax.management.remote.rmi.RMIConnectionImpl@146d9f64: connectionId=rmi://127.0.0.1 4] closing. -2024-08-07 16:53:45 - [javax.management.remote.rmi.RMIConnectionImpl@146d9f64: connectionId=rmi://127.0.0.1 4] closed. -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:64658] -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:64657] -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 84 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 84 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - [javax.management.remote.rmi.RMIConnectionImpl@15f37ea3: connectionId=rmi://127.0.0.1 5] closing. -2024-08-07 16:53:45 - [javax.management.remote.rmi.RMIConnectionImpl@15f37ea3: connectionId=rmi://127.0.0.1 5] closed. -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 84 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - [javax.management.remote.rmi.RMIConnectionImpl@3016a9af: connectionId=rmi://127.0.0.1 6] closing. -2024-08-07 16:53:45 - [javax.management.remote.rmi.RMIConnectionImpl@3016a9af: connectionId=rmi://127.0.0.1 6] closed. -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - [javax.management.remote.rmi.RMIConnectionImpl@2e8567: connectionId=rmi://127.0.0.1 7] closing. -2024-08-07 16:53:45 - [javax.management.remote.rmi.RMIConnectionImpl@2e8567: connectionId=rmi://127.0.0.1 7] closed. -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 84 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - [javax.management.remote.rmi.RMIConnectionImpl@599d9ca0: connectionId=rmi://127.0.0.1 8] closing. -2024-08-07 16:53:45 - [javax.management.remote.rmi.RMIConnectionImpl@599d9ca0: connectionId=rmi://127.0.0.1 8] closed. -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 82 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 84 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 82 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - [javax.management.remote.rmi.RMIConnectionImpl@61eebffe: connectionId=rmi://127.0.0.1 9] closing. -2024-08-07 16:53:45 - [javax.management.remote.rmi.RMIConnectionImpl@61eebffe: connectionId=rmi://127.0.0.1 9] closed. -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 84 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 82 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 84 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - Fetching JDBC Connection from DataSource -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - [javax.management.remote.rmi.RMIConnectionImpl@ebec5a9: connectionId=rmi://127.0.0.1 10] closing. -2024-08-07 16:53:45 - [javax.management.remote.rmi.RMIConnectionImpl@ebec5a9: connectionId=rmi://127.0.0.1 10] closed. -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - Fetching JDBC Connection from DataSource -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 84 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:45 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 16:53:45 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 16:53:45 - Initializing Servlet 'dispatcherServlet' -2024-08-07 16:53:45 - Detected StandardServletMultipartResolver -2024-08-07 16:53:45 - Detected AcceptHeaderLocaleResolver -2024-08-07 16:53:45 - Detected FixedThemeResolver -2024-08-07 16:53:45 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@5757ef9b -2024-08-07 16:53:45 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@7e09bee -2024-08-07 16:53:45 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 16:53:45 - Completed initialization in 1 ms -2024-08-07 16:53:45 - RMI TCP Connection(2)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - [javax.management.remote.rmi.RMIConnectionImpl@2bdabc43: connectionId=rmi://127.0.0.1 11] closing. -2024-08-07 16:53:45 - [javax.management.remote.rmi.RMIConnectionImpl@2bdabc43: connectionId=rmi://127.0.0.1 11] closed. -2024-08-07 16:53:45 - RMI TCP Connection(3)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:45 - [javax.management.remote.rmi.RMIConnectionImpl@7f708445: connectionId=rmi://127.0.0.1 12] closing. -2024-08-07 16:53:45 - [javax.management.remote.rmi.RMIConnectionImpl@7f708445: connectionId=rmi://127.0.0.1 12] closed. -2024-08-07 16:53:46 - RMI TCP Connection(2)-127.0.0.1: (port 64655) connection closed -2024-08-07 16:53:46 - RMI TCP Connection(1)-127.0.0.1: (port 64655) connection closed -2024-08-07 16:53:46 - RMI TCP Connection(3)-127.0.0.1: (port 64655) connection closed -2024-08-07 16:53:46 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=64658,localport=64655] -2024-08-07 16:53:46 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=64656,localport=64655] -2024-08-07 16:53:46 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=64657,localport=64655] -2024-08-07 16:53:46 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:64659] -2024-08-07 16:53:46 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=64656,localport=64655] -2024-08-07 16:53:46 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=64658,localport=64655] -2024-08-07 16:53:46 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=64657,localport=64655] -2024-08-07 16:53:46 - RMI TCP Connection(4)-127.0.0.1: (port 64655) op = 80 -2024-08-07 16:53:46 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:46 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:46 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:46 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:46 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@56fda064 -2024-08-07 16:53:52 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 16:53:52 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Wed Aug 07 16:53:42 KST 2024 -2024-08-07 16:53:52 - Stopping beans in phase 2147483647 -2024-08-07 16:53:52 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 16:53:52 - Stopping beans in phase 2147482623 -2024-08-07 16:53:52 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 16:53:52 - Stopping beans in phase 2147481599 -2024-08-07 16:53:52 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 16:53:52 - Stopping beans in phase -2147483647 -2024-08-07 16:53:52 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 16:53:52 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 16:53:52 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 16:53:52 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 16:53:52 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 16:53:52 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 16:53:52 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 16:53:52 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 16:53:52 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 16:53:52 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 16:53:52 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 16:53:52 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 16:53:52 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 16:53:52 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 16:53:52 - Unregistering JMX-exposed beans on shutdown -2024-08-07 16:53:52 - Unregistering JMX-exposed beans -2024-08-07 16:53:52 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 16:53:52 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 16:53:52 - HHH000031: Closing -2024-08-07 16:53:52 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@3cbfe862] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@7d741200] -2024-08-07 16:53:52 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 16:53:52 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 16:53:52 - HikariPool-1 - Shutdown initiated... -2024-08-07 16:53:52 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:53:52 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:53:52 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:53:52 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:53:52 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:53:52 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:53:52 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:53:52 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:53:52 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:53:52 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:53:52 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:53:52 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 16:53:52 - HikariPool-1 - Shutdown completed. -2024-08-07 16:53:52 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 16:53:54 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 16:53:54 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 16:53:54 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:53:54 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:53:54 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:53:54 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:53:54 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:53:54 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:53:54 - Loaded expression factory via original TCCL -2024-08-07 16:53:54 - Starting HaengdongApplication using Java 17.0.12 with PID 62007 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 16:53:54 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 16:53:54 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 16:53:54 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 16:53:54 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 16:53:54 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 16:53:54 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:53:54 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:53:54 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:53:54 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:53:54 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:53:54 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 16:53:54 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 16:53:54 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 16:53:54 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 16:53:54 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 16:53:54 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 16:53:54 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 16:53:54 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 16:53:54 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 16:53:54 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 16:53:54 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 16:53:54 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 16:53:54 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 16:53:54 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 16:53:54 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 16:53:54 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 16:53:54 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 16:53:54 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 16:53:54 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 16:53:54 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 16:53:54 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 16:53:54 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 16:53:54 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 16:53:54 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 16:53:54 - Finished Spring Data repository scanning in 16 ms. Found 4 JPA repository interfaces. -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 16:53:54 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 16:53:54 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 16:53:54 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 16:53:54 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 16:53:54 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 16:53:54 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 16:53:54 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 16:53:54 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 16:53:54 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@1d6a8386] -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 16:53:54 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 16:53:54 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 16:53:54 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 16:53:54 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 16:53:54 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 16:53:54 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 16:53:54 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 16:53:54 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 16:53:54 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:53:54 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:53:54 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 16:53:54 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 16:53:54 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 16:53:54 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 16:53:54 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:54 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:54 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:54 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 16:53:54 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 16:53:54 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 16:53:54 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 16:53:54 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 16:53:54 - Tomcat initialized with port 8080 (http) -2024-08-07 16:53:54 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [INITIALIZING] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [INITIALIZED] -2024-08-07 16:53:54 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 16:53:54 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 16:53:54 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [INITIALIZING] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [INITIALIZED] -2024-08-07 16:53:54 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 16:53:54 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 16:53:54 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 16:53:54 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 16:53:54 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 16:53:54 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 16:53:54 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [STARTING_PREP] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [STARTING] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [STARTED] -2024-08-07 16:53:54 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 16:53:54 - Starting service [Tomcat] -2024-08-07 16:53:54 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 16:53:54 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 16:53:54 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 16:53:54 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:53:54 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:53:54 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:53:54 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:53:54 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:53:54 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 16:53:54 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 16:53:54 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 16:53:54 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 16:53:54 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 16:53:54 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [INITIALIZING] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [INITIALIZED] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [STARTING_PREP] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [INITIALIZING] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [INITIALIZED] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [STARTING_PREP] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [STARTING] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [STARTED] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [STARTING] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [STARTED] -2024-08-07 16:53:54 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:53:54 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:53:54 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:53:54 - Starting this Loader -2024-08-07 16:53:54 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:53:54 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:53:54 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:53:54 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:53:54 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:53:54 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:53:54 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:53:54 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:53:54 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:53:54 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:53:54 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:53:54 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:53:54 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:53:54 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:53:54 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:53:54 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:53:54 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:53:54 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 16:53:54 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [INITIALIZING] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [INITIALIZED] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [STARTING_PREP] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [STARTING] -2024-08-07 16:53:54 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [STARTED] -2024-08-07 16:53:54 - Initializing Spring embedded WebApplicationContext -2024-08-07 16:53:54 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 16:53:54 - Root WebApplicationContext: initialization completed in 688 ms -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:53:54 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 16:53:54 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 16:53:54 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 16:53:54 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:53:54 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 16:53:54 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:53:54 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 16:53:54 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:53:54 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:53:54 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:53:54 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:53:54 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 16:53:54 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 16:53:54 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 16:53:54 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:53:54 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:53:54 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 16:53:54 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 16:53:54 - HikariPool-1 - configuration: -2024-08-07 16:53:54 - allowPoolSuspension.............false -2024-08-07 16:53:54 - autoCommit......................true -2024-08-07 16:53:54 - catalog.........................none -2024-08-07 16:53:54 - connectionInitSql...............none -2024-08-07 16:53:54 - connectionTestQuery.............none -2024-08-07 16:53:54 - connectionTimeout...............30000 -2024-08-07 16:53:54 - dataSource......................none -2024-08-07 16:53:54 - dataSourceClassName.............none -2024-08-07 16:53:54 - dataSourceJNDI..................none -2024-08-07 16:53:54 - dataSourceProperties............{password=<masked>} -2024-08-07 16:53:54 - driverClassName................."org.h2.Driver" -2024-08-07 16:53:54 - exceptionOverrideClassName......none -2024-08-07 16:53:54 - healthCheckProperties...........{} -2024-08-07 16:53:54 - healthCheckRegistry.............none -2024-08-07 16:53:54 - idleTimeout.....................600000 -2024-08-07 16:53:54 - initializationFailTimeout.......1 -2024-08-07 16:53:54 - isolateInternalQueries..........false -2024-08-07 16:53:54 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 16:53:54 - keepaliveTime...................0 -2024-08-07 16:53:54 - leakDetectionThreshold..........0 -2024-08-07 16:53:54 - maxLifetime.....................1800000 -2024-08-07 16:53:54 - maximumPoolSize.................10 -2024-08-07 16:53:54 - metricRegistry..................none -2024-08-07 16:53:54 - metricsTrackerFactory...........none -2024-08-07 16:53:54 - minimumIdle.....................10 -2024-08-07 16:53:54 - password........................<masked> -2024-08-07 16:53:54 - poolName........................"HikariPool-1" -2024-08-07 16:53:54 - readOnly........................false -2024-08-07 16:53:54 - registerMbeans..................false -2024-08-07 16:53:54 - scheduledExecutor...............none -2024-08-07 16:53:54 - schema..........................none -2024-08-07 16:53:54 - threadFactory...................internal -2024-08-07 16:53:54 - transactionIsolation............default -2024-08-07 16:53:54 - username........................"sa" -2024-08-07 16:53:54 - validationTimeout...............5000 -2024-08-07 16:53:54 - HikariPool-1 - Starting... -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:64666] -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 84 -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:54 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:53:54 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:54 - [javax.management.remote.rmi.RMIConnectionImpl@14bc18f3: connectionId=rmi://127.0.0.1 1] closing. -2024-08-07 16:53:54 - [javax.management.remote.rmi.RMIConnectionImpl@14bc18f3: connectionId=rmi://127.0.0.1 1] closed. -2024-08-07 16:53:54 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 16:53:54 - HikariPool-1 - Start completed. -2024-08-07 16:53:54 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 16:53:54 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 16:53:54 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:54 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 16:53:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 16:53:54 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:53:54 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:53:54 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:53:54 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 16:53:55 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 16:53:55 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 16:53:55 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 16:53:55 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 16:53:55 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 16:53:55 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 16:53:55 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 16:53:55 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 16:53:55 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 16:53:55 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 16:53:55 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 16:53:55 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 16:53:55 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 16:53:55 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 16:53:55 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 16:53:55 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 16:53:55 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 16:53:55 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 16:53:55 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 16:53:55 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 16:53:55 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 16:53:55 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 16:53:55 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 16:53:55 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 16:53:55 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 16:53:55 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 16:53:55 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 16:53:55 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 16:53:55 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 16:53:55 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 16:53:55 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 16:53:55 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 16:53:55 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 16:53:55 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 16:53:55 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:53:55 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:53:55 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:53:55 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@23469199] to [INITIALIZING] -2024-08-07 16:53:55 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@23469199] to [INITIALIZED] -2024-08-07 16:53:55 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@23469199] to [STARTING_PREP] -2024-08-07 16:53:55 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@23469199] to [STARTING] -2024-08-07 16:53:55 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@23469199] to [STARTED] -2024-08-07 16:53:55 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:53:55 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:53:55 - Filter 'requestContextFilter' configured for use -2024-08-07 16:53:55 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 16:53:55 - Filter 'characterEncodingFilter' configured for use -2024-08-07 16:53:55 - Filter 'formContentFilter' configured for use -2024-08-07 16:53:55 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 16:53:55 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 16:53:55 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:53:55 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:53:55 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:53:55 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:53:55 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:53:55 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:53:55 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:53:55 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:53:55 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:53:55 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:53:55 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:53:55 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:53:55 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:53:55 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:53:55 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:53:55 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 16:53:55 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 16:53:55 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:53:55 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:53:55 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:53:55 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:53:55 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:53:55 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:53:55 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:53:55 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:53:55 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:53:55 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:53:55 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 16:53:55 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 16:53:55 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [STARTING_PREP] -2024-08-07 16:53:55 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [STARTING] -2024-08-07 16:53:55 - Registered host [localhost] -2024-08-07 16:53:55 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 16:53:55 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 16:53:55 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 16:53:55 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 16:53:55 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [STARTED] -2024-08-07 16:53:55 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 16:53:55 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 16:53:55 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 16:53:55 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 16:53:55 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 16:53:55 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:53:55 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:53:55 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 16:53:55 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 16:53:55 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:53:55 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:55 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 16:53:55 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 16:53:55 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 16:53:55 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 16:53:55 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 16:53:55 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 16:53:55 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 16:53:55 - HHH000206: 'hibernate.properties' not found -2024-08-07 16:53:55 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 16:53:55 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 16:53:55 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 16:53:55 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 16:53:55 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 16:53:55 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 16:53:55 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 16:53:55 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 16:53:55 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 16:53:55 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 16:53:55 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 16:53:55 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 16:53:55 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 16:53:55 - HHH000026: Second-level cache disabled -2024-08-07 16:53:55 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 16:53:55 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 16:53:55 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-07 16:53:55 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-07 16:53:55 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-07 16:53:55 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-07 16:53:55 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-07 16:53:55 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-07 16:53:55 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-07 16:53:55 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-07 16:53:55 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-07 16:53:55 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-07 16:53:55 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-07 16:53:55 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-07 16:53:55 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 16:53:55 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 16:53:55 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 16:53:55 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-07 16:53:55 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-07 16:53:55 - Adding type registration image -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 16:53:55 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 16:53:55 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 16:53:55 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 16:53:55 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 16:53:55 - Adding type registration short -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 16:53:55 - Adding type registration short -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 16:53:55 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 16:53:55 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:53:55 - Adding type registration int -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:53:55 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:53:55 - Adding type registration long -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 16:53:55 - Adding type registration long -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 16:53:55 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 16:53:55 - Adding type registration float -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 16:53:55 - Adding type registration float -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 16:53:55 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 16:53:55 - Adding type registration double -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 16:53:55 - Adding type registration double -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 16:53:55 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 16:53:55 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 16:53:55 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 16:53:55 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 16:53:55 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 16:53:55 - Adding type registration character -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 16:53:55 - Adding type registration char -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 16:53:55 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 16:53:55 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 16:53:55 - Adding type registration string -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 16:53:55 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 16:53:55 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 16:53:55 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 16:53:55 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 16:53:55 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 16:53:55 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 16:53:55 - Adding type registration text -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 16:53:55 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 16:53:55 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 16:53:55 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 16:53:55 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 16:53:55 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 16:53:55 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 16:53:55 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 16:53:55 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 16:53:55 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 16:53:55 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 16:53:55 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 16:53:55 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:53:55 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:53:55 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 16:53:55 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 16:53:55 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 16:53:55 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 16:53:55 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 16:53:55 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 16:53:55 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 16:53:55 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 16:53:55 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 16:53:55 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 16:53:55 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 16:53:55 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 16:53:55 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 16:53:55 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 16:53:55 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 16:53:55 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 16:53:55 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 16:53:55 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 16:53:55 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 16:53:55 - Adding type registration date -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:53:55 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:53:55 - Adding type registration time -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 16:53:55 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 16:53:55 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 16:53:55 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 16:53:55 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 16:53:55 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 16:53:55 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 16:53:55 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 16:53:55 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 16:53:55 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 16:53:55 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 16:53:55 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 16:53:55 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 16:53:55 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 16:53:55 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 16:53:55 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 16:53:55 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 16:53:55 - Adding type registration class -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 16:53:55 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 16:53:55 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 16:53:55 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 16:53:55 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 16:53:55 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 16:53:55 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 16:53:55 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 16:53:55 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 16:53:55 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:53:55 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:53:55 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 16:53:55 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 16:53:55 - Adding type registration url -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 16:53:55 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 16:53:55 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 16:53:55 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 16:53:55 - Adding type registration object -> org.hibernate.type.JavaObjectType@570ed9c -2024-08-07 16:53:55 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@570ed9c -2024-08-07 16:53:55 - Adding type registration null -> org.hibernate.type.NullType@1b8ee69d -2024-08-07 16:53:55 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@2b400bd0 -2024-08-07 16:53:55 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@fceab5d -2024-08-07 16:53:55 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@79445efb -2024-08-07 16:53:55 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@1592e540 -2024-08-07 16:53:55 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@3e2772a9 -2024-08-07 16:53:55 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@4449b273 -2024-08-07 16:53:55 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@1fa18f87 -2024-08-07 16:53:55 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@1d9bd1d6 -2024-08-07 16:53:55 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@37364634] into BootstrapContext; was [null] -2024-08-07 16:53:55 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@37364634) [was null] -2024-08-07 16:53:55 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@4f4d05b3] into BootstrapContext; was [null] -2024-08-07 16:53:55 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@2bd4780c] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@2c154508] -2024-08-07 16:53:55 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 16:53:55 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 16:53:55 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 16:53:55 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 16:53:55 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 16:53:55 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@37364634] -2024-08-07 16:53:55 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@37364634] -2024-08-07 16:53:55 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 16:53:55 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 16:53:55 - JDBC version : 4.2 -2024-08-07 16:53:55 - HikariPool-1 - After adding stats (total=4, active=1, idle=3, waiting=0) -2024-08-07 16:53:55 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 16:53:55 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 16:53:55 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 16:53:55 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 16:53:55 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 16:53:55 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 16:53:55 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 16:53:55 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 16:53:55 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 16:53:55 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 16:53:55 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 16:53:55 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 16:53:55 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@6738e8b2] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@609ad016] -2024-08-07 16:53:55 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 16:53:55 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-07 16:53:55 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 16:53:55 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 16:53:55 - Import with entity name Action -2024-08-07 16:53:55 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 16:53:55 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:53:55 - Binding column: AnnotatedColumn() -2024-08-07 16:53:55 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:53:55 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:53:55 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:53:55 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 16:53:55 - building BasicValue for id -2024-08-07 16:53:55 - Skipping column re-registration: action.id -2024-08-07 16:53:55 - Building property id -2024-08-07 16:53:55 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:53:55 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:53:55 - Binding column: AnnotatedColumn() -2024-08-07 16:53:55 - Building property event -2024-08-07 16:53:55 - Binding column: AnnotatedColumn() -2024-08-07 16:53:55 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 16:53:55 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 16:53:55 - building BasicValue for sequence -2024-08-07 16:53:55 - Skipping column re-registration: action.sequence -2024-08-07 16:53:55 - Building property sequence -2024-08-07 16:53:55 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:53:55 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 16:53:55 - Import with entity name BillAction -2024-08-07 16:53:55 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 16:53:55 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:53:55 - Binding column: AnnotatedColumn() -2024-08-07 16:53:55 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:53:55 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:53:55 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:53:55 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 16:53:55 - building BasicValue for id -2024-08-07 16:53:55 - Skipping column re-registration: bill_action.id -2024-08-07 16:53:55 - Building property id -2024-08-07 16:53:55 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:53:55 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:53:55 - Binding column: AnnotatedColumn() -2024-08-07 16:53:55 - Building property action -2024-08-07 16:53:55 - Binding column: AnnotatedColumn() -2024-08-07 16:53:55 - MetadataSourceProcessor property price with lazy=false -2024-08-07 16:53:55 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 16:53:55 - building BasicValue for price -2024-08-07 16:53:55 - Skipping column re-registration: bill_action.price -2024-08-07 16:53:55 - Building property price -2024-08-07 16:53:55 - Binding column: AnnotatedColumn() -2024-08-07 16:53:55 - MetadataSourceProcessor property title with lazy=false -2024-08-07 16:53:55 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 16:53:55 - building BasicValue for title -2024-08-07 16:53:55 - Skipping column re-registration: bill_action.title -2024-08-07 16:53:55 - Building property title -2024-08-07 16:53:55 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:53:55 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 16:53:55 - Import with entity name MemberAction -2024-08-07 16:53:55 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 16:53:55 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:53:55 - Binding column: AnnotatedColumn() -2024-08-07 16:53:55 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:53:55 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:53:55 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:53:55 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 16:53:55 - building BasicValue for id -2024-08-07 16:53:55 - Skipping column re-registration: member_action.id -2024-08-07 16:53:55 - Building property id -2024-08-07 16:53:55 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:53:55 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:53:55 - Binding column: AnnotatedColumn() -2024-08-07 16:53:55 - Building property action -2024-08-07 16:53:55 - Binding column: AnnotatedColumn() -2024-08-07 16:53:55 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 16:53:55 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 16:53:55 - building BasicValue for memberGroupId -2024-08-07 16:53:55 - Skipping column re-registration: member_action.member_group_id -2024-08-07 16:53:55 - Building property memberGroupId -2024-08-07 16:53:55 - Binding column: AnnotatedColumn() -2024-08-07 16:53:55 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 16:53:55 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 16:53:55 - building BasicValue for memberName -2024-08-07 16:53:55 - Skipping column re-registration: member_action.member_name -2024-08-07 16:53:55 - Building property memberName -2024-08-07 16:53:55 - Binding column: AnnotatedColumn() -2024-08-07 16:53:55 - MetadataSourceProcessor property status with lazy=false -2024-08-07 16:53:55 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 16:53:55 - building BasicValue for status -2024-08-07 16:53:55 - Skipping column re-registration: member_action.status -2024-08-07 16:53:55 - Building property status -2024-08-07 16:53:55 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:53:55 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 16:53:55 - Import with entity name Event -2024-08-07 16:53:55 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 16:53:55 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:53:55 - Binding column: AnnotatedColumn() -2024-08-07 16:53:55 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:53:55 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:53:55 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:53:55 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 16:53:55 - building BasicValue for id -2024-08-07 16:53:55 - Skipping column re-registration: event.id -2024-08-07 16:53:55 - Building property id -2024-08-07 16:53:55 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:53:55 - Binding column: AnnotatedColumn() -2024-08-07 16:53:55 - MetadataSourceProcessor property name with lazy=false -2024-08-07 16:53:55 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 16:53:55 - building BasicValue for name -2024-08-07 16:53:55 - Skipping column re-registration: event.name -2024-08-07 16:53:55 - Building property name -2024-08-07 16:53:55 - Binding column: AnnotatedColumn() -2024-08-07 16:53:55 - MetadataSourceProcessor property password with lazy=false -2024-08-07 16:53:55 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 16:53:55 - building BasicValue for password -2024-08-07 16:53:55 - Skipping column re-registration: event.password -2024-08-07 16:53:55 - Building property password -2024-08-07 16:53:55 - Binding column: AnnotatedColumn() -2024-08-07 16:53:55 - MetadataSourceProcessor property token with lazy=false -2024-08-07 16:53:55 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 16:53:55 - building BasicValue for token -2024-08-07 16:53:55 - Skipping column re-registration: event.token -2024-08-07 16:53:55 - Building property token -2024-08-07 16:53:55 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 16:53:55 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 16:53:55 - Import with entity name EventStep -2024-08-07 16:53:55 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 16:53:55 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:53:55 - Binding column: AnnotatedColumn() -2024-08-07 16:53:55 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:53:55 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:53:55 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:53:55 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 16:53:55 - building BasicValue for id -2024-08-07 16:53:55 - Skipping column re-registration: event_step.id -2024-08-07 16:53:55 - Building property id -2024-08-07 16:53:55 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:53:55 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:53:55 - Binding column: AnnotatedColumn() -2024-08-07 16:53:55 - Building property event -2024-08-07 16:53:55 - Binding column: AnnotatedColumn() -2024-08-07 16:53:55 - MetadataSourceProcessor property name with lazy=false -2024-08-07 16:53:55 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 16:53:55 - building BasicValue for name -2024-08-07 16:53:55 - Skipping column re-registration: event_step.name -2024-08-07 16:53:55 - Building property name -2024-08-07 16:53:55 - Binding column: AnnotatedColumn() -2024-08-07 16:53:55 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 16:53:55 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 16:53:55 - building BasicValue for sequence -2024-08-07 16:53:55 - Skipping column re-registration: event_step.sequence -2024-08-07 16:53:55 - Building property sequence -2024-08-07 16:53:55 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 16:53:55 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:53:55 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 16:53:55 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:53:55 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 16:53:55 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 16:53:55 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:53:55 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 16:53:55 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 16:53:55 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 16:53:55 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:53:55 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 16:53:55 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 16:53:55 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 16:53:55 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:53:55 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 16:53:55 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 16:53:55 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 16:53:55 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 16:53:55 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 16:53:55 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 16:53:55 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 16:53:55 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 16:53:55 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 16:53:55 - Building session factory -2024-08-07 16:53:55 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:53:55 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@2484c868, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@19d13d04, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.16452877182067891200, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=62007, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.16452877182067891200, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@30d5fc1b, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 16:53:55 - Session factory constructed with filter configurations : {} -2024-08-07 16:53:55 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:53:55 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:53:55 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:53:55 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:53:55 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:53:55 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:53:55 - Loaded expression factory via original TCCL -2024-08-07 16:53:55 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:53:55 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:53:55 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:53:55 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:53:55 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:53:55 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:53:55 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:53:55 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:53:55 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 16:53:55 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 16:53:55 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:53:55 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:53:55 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:53:55 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:53:55 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:53:55 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:53:55 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:53:55 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:53:55 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@7bc6b117] under count; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@5c43cb12] under every; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@5db66c3] under any; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@24ee6faa] under sinh; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6d4f266] under cosh; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6b756a62] under tanh; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@394b9e22] under pi; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6e0f259e] under log; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 16:53:55 - Registering alternate key : length -> character_length -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@31f5ffb9] under position; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@7fb9a83c] under overlay; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@3aa8c337] under trim; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@34ff08c6] under cast; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@e2344da] under collate; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@21d48c40] under extract; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@2fc0ad21] under ifnull; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@7901a5ab] under pad; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@3e24bab6] under str; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@288b8663] under format; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@3055f310] under timestampadd; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@575fe6da] under timestampdiff; prior registration was null -2024-08-07 16:53:55 - Registering alternate key : dateadd -> timestampadd -2024-08-07 16:53:55 - Registering alternate key : datediff -> timestampdiff -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@ed1d2cf] under current_date; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@b814e23] under current_time; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5f81507a] under current_timestamp; prior registration was null -2024-08-07 16:53:55 - Registering alternate key : current date -> current_date -2024-08-07 16:53:55 - Registering alternate key : current time -> current_time -2024-08-07 16:53:55 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7d7c05fa] under local_date; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7dbbf730] under local_time; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7c4a5ef2] under local_datetime; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@299dd381] under offset_datetime; prior registration was null -2024-08-07 16:53:55 - Registering alternate key : local date -> local_date -2024-08-07 16:53:55 - Registering alternate key : local time -> local_time -2024-08-07 16:53:55 - Registering alternate key : local datetime -> local_datetime -2024-08-07 16:53:55 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@34d3409d] under instant; prior registration was null -2024-08-07 16:53:55 - Registering alternate key : current_instant -> instant -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@515fff35] under sql; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@5eb9bf7d] under count; prior registration was org.hibernate.dialect.function.CountFunction@7bc6b117 -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@123d0816] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@394b9e22 -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4601a148] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 16:53:55 - Registering alternate key : day -> day_of_month -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@7dbbf730 -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@7c4a5ef2 -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@655f92a1] under trunc; prior registration was null -2024-08-07 16:53:55 - Registering alternate key : truncate -> trunc -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1d2d793d] under date_trunc; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 16:53:55 - Registering alternate key : chr -> char -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@57fec63f] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@31f5ffb9 -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7a2fd94c] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 16:53:55 - Registering alternate key : every -> bool_and -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 16:53:55 - Registering alternate key : any -> bool_or -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@637c8632] under format; prior registration was org.hibernate.dialect.function.FormatFunction@288b8663 -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@55d87b73] under listagg; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@4abfa2ff] under mode; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@38c1b1a7] under percentile_cont; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@73230721] under percentile_disc; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@792b9dd3] under rank; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@cbc3bf3] under dense_rank; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@31f9f9b3] under percent_rank; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@7730da00] under cume_dist; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@2b4ba2d9] under array; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@69f24965] under array_list; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@57ac236a] under array_agg; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@4113d9ab] under array_position; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@4423692a] under array_positions; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@180e33b0] under array_positions_list; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@270be080] under array_length; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@5b86f4cb] under array_concat; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@5f14590c] under array_prepend; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@46051269] under array_append; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@222eda8a] under array_contains; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@3331800f] under array_contains_nullable; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@4880a9d] under array_overlaps; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@48f2d51d] under array_overlaps_nullable; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@a84b6de] under array_get; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@75507e68] under array_set; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@7304ca87] under array_remove; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@3a012678] under array_remove_index; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@396c1228] under array_slice; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@32f45e15] under array_replace; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4e7151b3] under array_trim; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@5ca3acad] under array_fill; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@b75f3f4] under array_fill_list; prior registration was null -2024-08-07 16:53:55 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@72c175f1] under array_to_string; prior registration was null -2024-08-07 16:53:55 - abs(NUMERIC arg) -2024-08-07 16:53:55 - Double acos(NUMERIC arg) -2024-08-07 16:53:55 - Boolean any(BOOLEAN predicate) -2024-08-07 16:53:55 - array( ... ) -2024-08-07 16:53:55 - array_agg(arg) -2024-08-07 16:53:55 - array_append( ... ) -2024-08-07 16:53:55 - array_concat( ... ) -2024-08-07 16:53:55 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 16:53:55 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 16:53:55 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 16:53:55 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 16:53:55 - array_get(ARRAY array, INTEGER index) -2024-08-07 16:53:55 - Integer array_length(ARRAY array) -2024-08-07 16:53:55 - array_list( ... ) -2024-08-07 16:53:55 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 16:53:55 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 16:53:55 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 16:53:55 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 16:53:55 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 16:53:55 - array_prepend( ... ) -2024-08-07 16:53:55 - array_remove( ... ) -2024-08-07 16:53:55 - array_remove_index( ... ) -2024-08-07 16:53:55 - array_replace( ... ) -2024-08-07 16:53:55 - array_set( ... ) -2024-08-07 16:53:55 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 16:53:55 - String array_to_string( ... ) -2024-08-07 16:53:55 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 16:53:55 - Integer ascii(STRING arg) -2024-08-07 16:53:55 - Double asin(NUMERIC arg) -2024-08-07 16:53:55 - Double atan(NUMERIC arg) -2024-08-07 16:53:55 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 16:53:55 - avg(NUMERIC arg) -2024-08-07 16:53:55 - bit_and(arg) -2024-08-07 16:53:55 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 16:53:55 - bit_or(arg) -2024-08-07 16:53:55 - bitand(arg0, arg1) -2024-08-07 16:53:55 - bitnot(arg) -2024-08-07 16:53:55 - bitor(arg0, arg1) -2024-08-07 16:53:55 - bitxor(arg0, arg1) -2024-08-07 16:53:55 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 16:53:55 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 16:53:55 - cast(arg as Type) -2024-08-07 16:53:55 - ceiling(NUMERIC arg) -2024-08-07 16:53:55 - Character char(INTEGER arg) -2024-08-07 16:53:55 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 16:53:55 - Character chr(INTEGER arg) -2024-08-07 16:53:55 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 16:53:55 - String collate(STRING string as COLLATION collation) -2024-08-07 16:53:55 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 16:53:55 - Double cos(NUMERIC arg) -2024-08-07 16:53:55 - Double cosh(NUMERIC arg) -2024-08-07 16:53:55 - Double cot(NUMERIC arg) -2024-08-07 16:53:55 - Long count([distinct ]{arg|*}) -2024-08-07 16:53:55 - Double cume_dist([arg0[, ...]]) -2024-08-07 16:53:55 - Date curdate() -2024-08-07 16:53:55 - Date current date -2024-08-07 16:53:55 - Time current time -2024-08-07 16:53:55 - Timestamp current timestamp -2024-08-07 16:53:55 - Date current_date -2024-08-07 16:53:55 - Instant current_instant -2024-08-07 16:53:55 - Time current_time -2024-08-07 16:53:55 - Timestamp current_timestamp -2024-08-07 16:53:55 - Time curtime() -2024-08-07 16:53:55 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 16:53:55 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 16:53:55 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 16:53:55 - Integer day(DATE arg) -2024-08-07 16:53:55 - Integer day_of_month(DATE arg) -2024-08-07 16:53:55 - Integer day_of_week(DATE arg) -2024-08-07 16:53:55 - Integer day_of_year(DATE arg) -2024-08-07 16:53:55 - String dayname(DATE arg) -2024-08-07 16:53:55 - Double degrees(NUMERIC arg) -2024-08-07 16:53:55 - Long dense_rank([arg0[, ...]]) -2024-08-07 16:53:55 - Boolean every(BOOLEAN predicate) -2024-08-07 16:53:55 - Double exp(NUMERIC arg) -2024-08-07 16:53:55 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 16:53:55 - first_valueANY value -2024-08-07 16:53:55 - floor(NUMERIC arg) -2024-08-07 16:53:55 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 16:53:55 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 16:53:55 - Integer hour(TIME arg) -2024-08-07 16:53:55 - ifnull(arg0, arg1) -2024-08-07 16:53:55 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 16:53:55 - Instant instant -2024-08-07 16:53:55 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 16:53:55 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 16:53:55 - last_valueANY value -2024-08-07 16:53:55 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 16:53:55 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 16:53:55 - String left(STRING string, INTEGER length) -2024-08-07 16:53:55 - Integer length(STRING_OR_CLOB arg) -2024-08-07 16:53:55 - String listagg(STRING arg0, STRING arg1) -2024-08-07 16:53:55 - Double ln(NUMERIC arg) -2024-08-07 16:53:55 - LocalDate local date -2024-08-07 16:53:55 - LocalDateTime local datetime -2024-08-07 16:53:55 - LocalTime local time -2024-08-07 16:53:55 - LocalDate local_date -2024-08-07 16:53:55 - LocalDateTime local_datetime -2024-08-07 16:53:55 - LocalTime local_time -2024-08-07 16:53:55 - Time localtime -2024-08-07 16:53:55 - Timestamp localtimestamp -2024-08-07 16:53:55 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 16:53:55 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 16:53:55 - Double log10(NUMERIC arg) -2024-08-07 16:53:55 - String lower(STRING string) -2024-08-07 16:53:55 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 16:53:55 - String ltrim(STRING string) -2024-08-07 16:53:55 - max(COMPARABLE arg) -2024-08-07 16:53:55 - Double median(NUMERIC arg) -2024-08-07 16:53:55 - Integer microsecond(TIME arg) -2024-08-07 16:53:55 - min(COMPARABLE arg) -2024-08-07 16:53:55 - Integer minute(TIME arg) -2024-08-07 16:53:55 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 16:53:55 - mode() -2024-08-07 16:53:55 - Integer month(DATE arg) -2024-08-07 16:53:55 - String monthname(DATE arg) -2024-08-07 16:53:55 - Timestamp now() -2024-08-07 16:53:55 - nth_valueANY value, INTEGER nth -2024-08-07 16:53:55 - nullif(arg0, arg1) -2024-08-07 16:53:55 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 16:53:55 - OffsetDateTime offset datetime -2024-08-07 16:53:55 - OffsetDateTime offset_datetime -2024-08-07 16:53:55 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 16:53:55 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 16:53:55 - Double percent_rank([arg0[, ...]]) -2024-08-07 16:53:55 - percentile_cont(NUMERIC arg) -2024-08-07 16:53:55 - percentile_disc(NUMERIC arg) -2024-08-07 16:53:55 - Double pi -2024-08-07 16:53:55 - Integer position(STRING pattern in STRING string) -2024-08-07 16:53:55 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 16:53:55 - Integer quarter(DATE arg) -2024-08-07 16:53:55 - Double radians(NUMERIC arg) -2024-08-07 16:53:55 - Double rand([INTEGER seed]) -2024-08-07 16:53:55 - Long rank([arg0[, ...]]) -2024-08-07 16:53:55 - String repeat(STRING string, INTEGER times) -2024-08-07 16:53:55 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 16:53:55 - String right(STRING string, INTEGER length) -2024-08-07 16:53:55 - round(NUMERIC number[, INTEGER places]) -2024-08-07 16:53:55 - Long row_number() -2024-08-07 16:53:55 - Long rownum() -2024-08-07 16:53:55 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 16:53:55 - String rtrim(STRING string) -2024-08-07 16:53:55 - Integer second(TIME arg) -2024-08-07 16:53:55 - Integer sign(NUMERIC arg) -2024-08-07 16:53:55 - Double sin(NUMERIC arg) -2024-08-07 16:53:55 - Double sinh(NUMERIC arg) -2024-08-07 16:53:55 - String soundex(arg) -2024-08-07 16:53:55 - String space(INTEGER arg) -2024-08-07 16:53:55 - Object sql -2024-08-07 16:53:55 - Double sqrt(NUMERIC arg) -2024-08-07 16:53:55 - Double stddev_pop(NUMERIC arg) -2024-08-07 16:53:55 - Double stddev_samp(NUMERIC arg) -2024-08-07 16:53:55 - String str(arg) -2024-08-07 16:53:55 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 16:53:55 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 16:53:55 - sum(arg) -2024-08-07 16:53:55 - Timestamp sysdate -2024-08-07 16:53:55 - Double tan(NUMERIC arg) -2024-08-07 16:53:55 - Double tanh(NUMERIC arg) -2024-08-07 16:53:55 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 16:53:55 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 16:53:55 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 16:53:55 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 16:53:55 - trunc( ... ) -2024-08-07 16:53:55 - truncate( ... ) -2024-08-07 16:53:55 - String upper(STRING string) -2024-08-07 16:53:55 - Double var_pop(NUMERIC arg) -2024-08-07 16:53:55 - Double var_samp(NUMERIC arg) -2024-08-07 16:53:55 - Integer week(DATE arg) -2024-08-07 16:53:55 - Integer year(DATE arg) -2024-08-07 16:53:55 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 16:53:55 - Starting QueryInterpretationCache(2048) -2024-08-07 16:53:55 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 16:53:55 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:53:55 - Configured EntityCopyObserver strategy: disallow -2024-08-07 16:53:55 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 16:53:55 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 16:53:55 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:53:55 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:53:55 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:55 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 84 -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:55 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:55 - [javax.management.remote.rmi.RMIConnectionImpl@6e8c097e: connectionId=rmi://127.0.0.1 2] closing. -2024-08-07 16:53:55 - [javax.management.remote.rmi.RMIConnectionImpl@6e8c097e: connectionId=rmi://127.0.0.1 2] closed. -2024-08-07 16:53:55 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:53:55 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:53:55 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 16:53:55 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:53:55 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:53:55 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 16:53:55 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:53:55 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:53:55 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 16:53:55 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:53:55 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:53:55 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 16:53:55 - Starting post-init callbacks -2024-08-07 16:53:55 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 16:53:55 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 16:53:55 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:53:55 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 16:53:55 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 16:53:55 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 16:53:55 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 16:53:55 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 16:53:55 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 16:53:55 - Created new SQL alias : ba1_0 -2024-08-07 16:53:55 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 16:53:55 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7be9e9fc] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 16:53:55 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 16:53:55 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 16:53:55 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 16:53:55 - Version select: select id from bill_action where id=? -2024-08-07 16:53:55 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 16:53:55 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 16:53:55 - Delete (0): delete from bill_action where id=? -2024-08-07 16:53:55 - Created new SQL alias : ma1_0 -2024-08-07 16:53:55 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 16:53:55 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@182469d0] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:53:55 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 16:53:55 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 16:53:55 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 16:53:55 - Version select: select id from member_action where id=? -2024-08-07 16:53:55 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 16:53:55 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 16:53:55 - Delete (0): delete from member_action where id=? -2024-08-07 16:53:55 - Created new SQL alias : e1_0 -2024-08-07 16:53:55 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 16:53:55 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 16:53:55 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 16:53:55 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 16:53:55 - Version select: select id from event where id=? -2024-08-07 16:53:55 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 16:53:55 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 16:53:55 - Delete (0): delete from event where id=? -2024-08-07 16:53:55 - Created new SQL alias : a1_0 -2024-08-07 16:53:55 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 16:53:55 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@788fa91f] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 16:53:55 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 16:53:55 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 16:53:55 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 16:53:55 - Version select: select id from action where id=? -2024-08-07 16:53:55 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 16:53:55 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 16:53:55 - Delete (0): delete from action where id=? -2024-08-07 16:53:55 - Created new SQL alias : es1_0 -2024-08-07 16:53:55 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 16:53:55 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5e8bc83e] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 16:53:55 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 16:53:55 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 16:53:55 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 16:53:55 - Version select: select id from event_step where id=? -2024-08-07 16:53:55 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 16:53:55 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 16:53:55 - Delete (0): delete from event_step where id=? -2024-08-07 16:53:55 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 16:53:55 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@6738e8b2] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@6af02de0] -2024-08-07 16:53:55 - Checking 0 named HQL queries -2024-08-07 16:53:55 - Checking 0 named SQL queries -2024-08-07 16:53:55 - - drop table if exists action cascade -2024-08-07 16:53:55 - - drop table if exists bill_action cascade -2024-08-07 16:53:55 - - drop table if exists event cascade -2024-08-07 16:53:55 - - drop table if exists event_step cascade -2024-08-07 16:53:55 - - drop table if exists member_action cascade -2024-08-07 16:53:55 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 16:53:55 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 16:53:55 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 16:53:55 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 16:53:55 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 16:53:55 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 16:53:55 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 16:53:55 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 16:53:55 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 16:53:55 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@2e845f1c -2024-08-07 16:53:55 - Registering SessionFactory: 6a1e3054-1f25-4d73-b797-e09b9b3f2742 (<unnamed>) -2024-08-07 16:53:55 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 16:53:55 - Instantiated SessionFactory -2024-08-07 16:53:55 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'actionService' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 16:53:55 - Initializing JpaMetamodelMappingContext… -2024-08-07 16:53:55 - Finished initializing JpaMetamodelMappingContext -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - Statistics initialized [enabled=false] -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 16:53:55 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 16:53:55 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 16:53:55 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 16:53:55 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:55 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - Looking up named query BillAction.findByAction_Event -2024-08-07 16:53:55 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:55 - Did not find named query BillAction.findByAction_Event -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - Looking up named query BillAction.findByAction_Id -2024-08-07 16:53:55 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:55 - Did not find named query BillAction.findByAction_Id -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 16:53:55 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:55 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 16:53:55 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:55 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 16:53:55 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:55 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 16:53:55 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 16:53:55 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:53:55 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 16:53:55 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:55 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 16:53:55 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 16:53:55 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 16:53:55 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 16:53:55 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:55 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 16:53:55 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:53:55 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(743207019276708)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(743207019276708)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(743207019276708)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(743207019276708)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(743207019276708).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:53:55 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:55 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 16:53:55 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:53:55 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:53:55 - Looking up named query MemberAction.findByAction -2024-08-07 16:53:55 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:55 - Did not find named query MemberAction.findByAction -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - Looking up named query Event.findByToken -2024-08-07 16:53:55 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:55 - Did not find named query Event.findByToken -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 16:53:55 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 16:53:55 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:53:55 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:55 - Did not find named query Action.findLastByEvent.count -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 16:53:55 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:53:55 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:53:55 - Looking up named query Action.findByIdAndEvent -2024-08-07 16:53:55 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:53:55 - Did not find named query Action.findByIdAndEvent -2024-08-07 16:53:55 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:53:55 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 16:53:55 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 16:53:55 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 16:53:55 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'eventService' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 16:53:55 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 16:53:55 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 16:53:55 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 16:53:55 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 16:53:55 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 16:53:55 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 16:53:55 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:53:55 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 16:53:55 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 16:53:55 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 16:53:55 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 16:53:55 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'actionController' -2024-08-07 16:53:55 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 16:53:55 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'eventController' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'authService' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 16:53:55 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 16:53:55 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 16:53:55 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 16:53:55 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:53:55 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 16:53:55 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 16:53:55 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 16:53:55 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:55 - Loaded expression factory via original TCCL -2024-08-07 16:53:55 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 16:53:55 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 16:53:55 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:53:55 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 16:53:55 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:53:55 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:53:55 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:53:55 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:53:55 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:53:55 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:53:55 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:53:55 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:53:55 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:53:55 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:53:55 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'error' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:53:55 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:55 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 16:53:55 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 16:53:55 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:53:55 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:53:55 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 16:53:55 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:53:55 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:53:55 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 16:53:55 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 16:53:55 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 16:53:55 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 16:53:55 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 16:53:55 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 16:53:55 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:55 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:53:55 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 16:53:55 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:55 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:53:55 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 16:53:55 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:53:55 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:53:55 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:53:55 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 16:53:55 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 16:53:55 - - s.h.p.EventController: - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) -2024-08-07 16:53:55 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 16:53:55 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 16:53:55 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 16:53:55 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:53:55 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 16:53:55 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:53:55 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:53:55 - 'beanNameHandlerMapping' {} -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 16:53:55 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:53:55 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:55 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 84 -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:55 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:55 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:55 - [javax.management.remote.rmi.RMIConnectionImpl@33be2eab: connectionId=rmi://127.0.0.1 3] closing. -2024-08-07 16:53:55 - [javax.management.remote.rmi.RMIConnectionImpl@33be2eab: connectionId=rmi://127.0.0.1 3] closed. -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 16:53:55 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 16:53:55 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:55 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:55 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 16:53:55 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:55 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 16:53:55 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 16:53:55 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 16:53:55 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 16:53:55 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:53:55 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:53:55 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:53:55 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 16:53:56 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:53:56 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 16:53:56 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 16:53:56 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 16:53:56 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 16:53:56 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 16:53:56 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 16:53:56 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 16:53:56 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:53:56 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 16:53:56 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 16:53:56 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 16:53:56 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 16:53:56 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 16:53:56 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 16:53:56 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:56 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 16:53:56 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:56 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 16:53:56 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 16:53:56 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 16:53:56 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 16:53:56 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 16:53:56 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 16:53:56 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 16:53:56 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 16:53:56 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 16:53:56 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 16:53:56 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 16:53:56 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 16:53:56 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 16:53:56 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:56 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:53:56 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 16:53:56 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 16:53:56 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 16:53:56 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 16:53:56 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 16:53:56 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 16:53:56 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 16:53:56 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 16:53:56 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 16:53:56 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 16:53:56 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 16:53:56 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:53:56 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:53:56 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 16:53:56 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 16:53:56 - Using SLF4J as the default logging framework -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 16:53:56 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 16:53:56 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 16:53:56 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 16:53:56 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 16:53:56 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 16:53:56 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 16:53:56 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 16:53:56 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 16:53:56 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 16:53:56 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 16:53:56 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 16:53:56 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 16:53:56 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 16:53:56 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 16:53:56 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 16:53:56 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 16:53:56 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 16:53:56 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 16:53:56 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 16:53:56 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:53:56 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:53:56 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 16:53:56 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 16:53:56 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 16:53:56 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:53:56 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:53:56 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 16:53:56 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 16:53:56 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 16:53:56 - Registering beans for JMX exposure on startup -2024-08-07 16:53:56 - Auto-detecting user-defined JMX MBeans -2024-08-07 16:53:56 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 16:53:56 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 16:53:56 - Starting beans in phase -2147483647 -2024-08-07 16:53:56 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 16:53:56 - Starting beans in phase 2147481599 -2024-08-07 16:53:56 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 16:53:56 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 16:53:56 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 16:53:56 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 16:53:56 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 16:53:56 - Successfully started bean 'webServerStartStop' -2024-08-07 16:53:56 - Starting beans in phase 2147482623 -2024-08-07 16:53:56 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 16:53:56 - Starting beans in phase 2147483647 -2024-08-07 16:53:56 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 16:53:56 - Started HaengdongApplication in 2.242 seconds (process running for 2.418) -2024-08-07 16:53:56 - Application availability state LivenessState changed to CORRECT -2024-08-07 16:53:56 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 16:53:56 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:56 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 84 -2024-08-07 16:53:56 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:53:56 - RMI TCP Connection(1)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - [javax.management.remote.rmi.RMIConnectionImpl@41eedc6a: connectionId=rmi://127.0.0.1 4] closing. -2024-08-07 16:53:56 - [javax.management.remote.rmi.RMIConnectionImpl@41eedc6a: connectionId=rmi://127.0.0.1 4] closed. -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:64668] -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:64667] -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 84 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 84 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - [javax.management.remote.rmi.RMIConnectionImpl@24f4010d: connectionId=rmi://127.0.0.1 6] closing. -2024-08-07 16:53:56 - [javax.management.remote.rmi.RMIConnectionImpl@24f4010d: connectionId=rmi://127.0.0.1 6] closed. -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 84 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - [javax.management.remote.rmi.RMIConnectionImpl@47ec831c: connectionId=rmi://127.0.0.1 5] closing. -2024-08-07 16:53:56 - [javax.management.remote.rmi.RMIConnectionImpl@47ec831c: connectionId=rmi://127.0.0.1 5] closed. -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 84 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:53:56 - [javax.management.remote.rmi.RMIConnectionImpl@51a88458: connectionId=rmi://127.0.0.1 7] closing. -2024-08-07 16:53:56 - [javax.management.remote.rmi.RMIConnectionImpl@51a88458: connectionId=rmi://127.0.0.1 7] closed. -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - [javax.management.remote.rmi.RMIConnectionImpl@6d6997a0: connectionId=rmi://127.0.0.1 8] closing. -2024-08-07 16:53:56 - [javax.management.remote.rmi.RMIConnectionImpl@6d6997a0: connectionId=rmi://127.0.0.1 8] closed. -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 84 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 84 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:53:56 - [javax.management.remote.rmi.RMIConnectionImpl@3bf2fe3: connectionId=rmi://127.0.0.1 9] closing. -2024-08-07 16:53:56 - [javax.management.remote.rmi.RMIConnectionImpl@3bf2fe3: connectionId=rmi://127.0.0.1 9] closed. -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - [javax.management.remote.rmi.RMIConnectionImpl@71407585: connectionId=rmi://127.0.0.1 10] closing. -2024-08-07 16:53:56 - [javax.management.remote.rmi.RMIConnectionImpl@71407585: connectionId=rmi://127.0.0.1 10] closed. -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 84 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 84 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:53:56 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 16:53:56 - Fetching JDBC Connection from DataSource -2024-08-07 16:53:56 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 16:53:56 - Initializing Servlet 'dispatcherServlet' -2024-08-07 16:53:56 - Detected StandardServletMultipartResolver -2024-08-07 16:53:56 - Detected AcceptHeaderLocaleResolver -2024-08-07 16:53:56 - Detected FixedThemeResolver -2024-08-07 16:53:56 - Fetching JDBC Connection from DataSource -2024-08-07 16:53:56 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@7e3ccedb -2024-08-07 16:53:56 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@c2cc406 -2024-08-07 16:53:56 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 16:53:56 - Completed initialization in 0 ms -2024-08-07 16:53:56 - RMI TCP Connection(2)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - [javax.management.remote.rmi.RMIConnectionImpl@5c48b97d: connectionId=rmi://127.0.0.1 11] closing. -2024-08-07 16:53:56 - [javax.management.remote.rmi.RMIConnectionImpl@5c48b97d: connectionId=rmi://127.0.0.1 11] closed. -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 82 -2024-08-07 16:53:56 - RMI TCP Connection(3)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:53:56 - [javax.management.remote.rmi.RMIConnectionImpl@f626fd9: connectionId=rmi://127.0.0.1 12] closing. -2024-08-07 16:53:56 - [javax.management.remote.rmi.RMIConnectionImpl@f626fd9: connectionId=rmi://127.0.0.1 12] closed. -2024-08-07 16:54:18 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.16452877182067891200/conf/jaspic-providers.xml] -2024-08-07 16:54:18 - POST "/api/events", parameters={} -2024-08-07 16:54:18 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:54:18 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:54:18 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=아 그러네, password=1234]] -2024-08-07 16:54:18 - Found thread-bound EntityManager [SessionImpl(2119323087<open>)] for JPA transaction -2024-08-07 16:54:18 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 16:54:18 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:54:18 - begin -2024-08-07 16:54:18 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@455a0eda] -2024-08-07 16:54:18 - Found thread-bound EntityManager [SessionImpl(2119323087<open>)] for JPA transaction -2024-08-07 16:54:18 - Participating in existing transaction -2024-08-07 16:54:18 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 16:54:18 - Executing identity-insert immediately -2024-08-07 16:54:18 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 16:54:18 - Initializer list is empty -2024-08-07 16:54:18 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@bb3876f -2024-08-07 16:54:18 - Extracted JDBC value [0] - [1] -2024-08-07 16:54:18 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@2a507f86 -2024-08-07 16:54:18 - Initiating transaction commit -2024-08-07 16:54:18 - Committing JPA transaction on EntityManager [SessionImpl(2119323087<open>)] -2024-08-07 16:54:18 - committing -2024-08-07 16:54:18 - Processing flush-time cascades -2024-08-07 16:54:18 - Dirty checking collections -2024-08-07 16:54:18 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 16:54:18 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 16:54:18 - Listing entities: -2024-08-07 16:54:18 - server.haengdong.domain.event.Event{password=1234, name=아 그러네, id=1, token=516e798b-cf12-4c43-9426-cdd043350267} -2024-08-07 16:54:18 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:54:18 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:54:18 - Writing [EventResponse[eventId=516e798b-cf12-4c43-9426-cdd043350267]] -2024-08-07 16:54:18 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:54:18 - Completed 200 OK -2024-08-07 16:54:23 - OPTIONS "/api/events/516e798b-cf12-4c43-9426-cdd043350267", parameters={} -2024-08-07 16:54:23 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:54:23 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:54:23 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:54:23 - Completed 200 OK -2024-08-07 16:54:23 - OPTIONS "/api/events/516e798b-cf12-4c43-9426-cdd043350267/actions", parameters={} -2024-08-07 16:54:23 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:54:23 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:54:23 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:54:23 - Completed 200 OK -2024-08-07 16:54:23 - GET "/api/events/516e798b-cf12-4c43-9426-cdd043350267/actions", parameters={} -2024-08-07 16:54:23 - GET "/api/events/516e798b-cf12-4c43-9426-cdd043350267", parameters={} -2024-08-07 16:54:23 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:54:23 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:54:23 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:54:23 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:54:23 - Found thread-bound EntityManager [SessionImpl(955650167<open>)] for JPA transaction -2024-08-07 16:54:23 - Found thread-bound EntityManager [SessionImpl(1579213915<open>)] for JPA transaction -2024-08-07 16:54:23 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 16:54:23 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 16:54:23 - HikariPool-1 - Connection not added, stats (total=10, active=2, idle=8, waiting=0) -2024-08-07 16:54:23 - Setting JDBC Connection [HikariProxyConnection@1775968649 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 16:54:23 - Setting JDBC Connection [HikariProxyConnection@2099611459 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 16:54:23 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:54:23 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:54:23 - begin -2024-08-07 16:54:23 - begin -2024-08-07 16:54:23 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@28a5f2a1] -2024-08-07 16:54:23 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@1441e764] -2024-08-07 16:54:23 - Created new SQL alias : e1_0 -2024-08-07 16:54:23 - Created new SQL alias : e1_0 -2024-08-07 16:54:23 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(743207036839458))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 16:54:23 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(743207036839458))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 16:54:23 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@3674deb -2024-08-07 16:54:23 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@7715dfb0 -2024-08-07 16:54:23 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(743207036839458).token) -2024-08-07 16:54:23 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(743207036839458).token) -2024-08-07 16:54:23 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(743207036839458)] - | +-BasicFetch [server.haengdong.domain.event.Event(743207036839458).name] - | +-BasicFetch [server.haengdong.domain.event.Event(743207036839458).password] - | \-BasicFetch [server.haengdong.domain.event.Event(743207036839458).token] - -2024-08-07 16:54:23 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(743207036839458)] - | +-BasicFetch [server.haengdong.domain.event.Event(743207036839458).name] - | +-BasicFetch [server.haengdong.domain.event.Event(743207036839458).password] - | \-BasicFetch [server.haengdong.domain.event.Event(743207036839458).token] - -2024-08-07 16:54:23 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(743207036839458)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 16:54:23 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(743207036839458)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 16:54:23 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 16:54:23 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 16:54:23 - Initializer list: - server.haengdong.domain.event.Event(743207036839458) -> EntityResultInitializer(server.haengdong.domain.event.Event(743207036839458))@333594004 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 16:54:23 - Initializer list: - server.haengdong.domain.event.Event(743207036839458) -> EntityResultInitializer(server.haengdong.domain.event.Event(743207036839458))@1243523025 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 16:54:23 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 16:54:23 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 16:54:23 - Extracted JDBC value [0] - [1] -2024-08-07 16:54:23 - Extracted JDBC value [0] - [1] -2024-08-07 16:54:23 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(743207036839458)): 1 -2024-08-07 16:54:23 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(743207036839458)): 1 -2024-08-07 16:54:23 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(743207036839458)#1] : 298141994 -2024-08-07 16:54:23 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(743207036839458)#1] : 1450071499 -2024-08-07 16:54:23 - Extracted JDBC value [1] - [아 그러네] -2024-08-07 16:54:23 - Extracted JDBC value [1] - [아 그러네] -2024-08-07 16:54:23 - Extracted JDBC value [2] - [1234] -2024-08-07 16:54:23 - Extracted JDBC value [2] - [1234] -2024-08-07 16:54:23 - Extracted JDBC value [3] - [516e798b-cf12-4c43-9426-cdd043350267] -2024-08-07 16:54:23 - Extracted JDBC value [3] - [516e798b-cf12-4c43-9426-cdd043350267] -2024-08-07 16:54:23 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(743207036839458)#1 -2024-08-07 16:54:23 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(743207036839458)#1 -2024-08-07 16:54:23 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@74455d56 -2024-08-07 16:54:23 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@261682e5 -2024-08-07 16:54:23 - Initiating transaction commit -2024-08-07 16:54:23 - Committing JPA transaction on EntityManager [SessionImpl(955650167<open>)] -2024-08-07 16:54:23 - committing -2024-08-07 16:54:23 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1775968649 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 16:54:23 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:54:23 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:54:23 - Writing [EventDetailResponse[eventName=아 그러네]] -2024-08-07 16:54:23 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:54:23 - Completed 200 OK -2024-08-07 16:54:23 - Created new SQL alias : ba1_0 -2024-08-07 16:54:23 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(743206874998708))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 16:54:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@ff5dee6] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 16:54:23 - Created new SQL alias : a1_0 -2024-08-07 16:54:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5ca250b4] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 16:54:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@ff5dee6] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 16:54:23 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@31f65bc9 -2024-08-07 16:54:23 - Created new SQL alias : e1_0 -2024-08-07 16:54:23 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@7e8bec6f -2024-08-07 16:54:23 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(743206874998708).action(743206875017250).event(743206875024333) : event) -2024-08-07 16:54:23 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(743206874998708)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(743206874998708).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(743206874998708).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(743206874998708).title] - -2024-08-07 16:54:23 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(743206874998708)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(743206874998708).action(743206875017250)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(743206874998708).action(743206875017250).event(743206875024333)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 16:54:23 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 16:54:23 - Initializer list: - server.haengdong.domain.action.BillAction(743206874998708) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(743206874998708))@165499598 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - server.haengdong.domain.action.BillAction(743206874998708).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(743206874998708).action.event)@924200 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@1374661559) - server.haengdong.domain.action.BillAction(743206874998708).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(743206874998708).action)@1082037265 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@592897522) - -2024-08-07 16:54:23 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 16:54:23 - Created new SQL alias : ma1_0 -2024-08-07 16:54:23 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction(m))] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 16:54:23 - Created new SQL alias : a1_0 -2024-08-07 16:54:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@8cc8893] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:54:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@785cd77] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 16:54:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@79bd7399] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 16:54:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@79bd7399] for NavigablePath [server.haengdong.domain.action.MemberAction(m).action(743207019276708).event] overrode previous registration : org.hibernate.sql.ast.tree.from.LazyTableGroup@785cd77 -2024-08-07 16:54:23 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 16:54:23 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 16:54:23 - Determining mapping-model type for SqmPath : SqmEntityValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action(743207019276708).event) -2024-08-07 16:54:23 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction(m)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.MemberAction(m).action(743207019276708)] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction(m).status] - -2024-08-07 16:54:23 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction(m)) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction(m).action(743207019276708)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.MemberAction(m).action(743207019276708).event) { - } - join LazyTableGroup (e2 : server.haengdong.domain.action.MemberAction(m).action(743207019276708).event) { - } - } - } - } - } - } - } - -2024-08-07 16:54:23 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 16:54:23 - Initializer list: - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@1008631172 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(743207019276708).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(743207019276708).event)@1270383698 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@1374661559) - server.haengdong.domain.action.MemberAction(m).action(743207019276708) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(743207019276708))@1502287623 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@53049479) - -2024-08-07 16:54:23 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 16:54:23 - Initiating transaction commit -2024-08-07 16:54:23 - Committing JPA transaction on EntityManager [SessionImpl(1579213915<open>)] -2024-08-07 16:54:23 - committing -2024-08-07 16:54:23 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@2099611459 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 16:54:23 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:54:23 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:54:23 - Writing [StepsResponse[steps=[]]] -2024-08-07 16:54:23 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:54:23 - Completed 200 OK -2024-08-07 16:54:24 - RMI TCP Connection(3)-127.0.0.1: (port 64665) connection closed -2024-08-07 16:54:24 - RMI TCP Connection(2)-127.0.0.1: (port 64665) connection closed -2024-08-07 16:54:24 - RMI TCP Connection(1)-127.0.0.1: (port 64665) connection closed -2024-08-07 16:54:24 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=64667,localport=64665] -2024-08-07 16:54:24 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=64668,localport=64665] -2024-08-07 16:54:24 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=64666,localport=64665] -2024-08-07 16:54:24 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=64668,localport=64665] -2024-08-07 16:54:24 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=64667,localport=64665] -2024-08-07 16:54:24 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=64666,localport=64665] -2024-08-07 16:54:25 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:54:25 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:54:55 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:54:55 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:55:10 - OPTIONS "/api/events/516e798b-cf12-4c43-9426-cdd043350267/member-actions", parameters={} -2024-08-07 16:55:10 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 16:55:10 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:55:10 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:55:10 - Completed 200 OK -2024-08-07 16:55:10 - POST "/api/events/516e798b-cf12-4c43-9426-cdd043350267/member-actions", parameters={} -2024-08-07 16:55:10 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 16:55:11 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 16:55:11 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:55:11 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 16:55:11 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 16:55:11 - Completed 401 UNAUTHORIZED -2024-08-07 16:55:25 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:55:25 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:55:50 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:64674] -2024-08-07 16:55:50 - RMI TCP Connection(4)-127.0.0.1: (port 64665) op = 80 -2024-08-07 16:55:50 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:55:50 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:55:50 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:55:50 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:55:50 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-07 16:55:55 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:55:55 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:56:05 - RMI TCP Connection(4)-127.0.0.1: (port 64665) connection closed -2024-08-07 16:56:05 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=64674,localport=64665] -2024-08-07 16:56:05 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=64674,localport=64665] -2024-08-07 16:56:06 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 16:56:06 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Wed Aug 07 16:53:54 KST 2024 -2024-08-07 16:56:06 - Stopping beans in phase 2147483647 -2024-08-07 16:56:06 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 16:56:06 - Stopping beans in phase 2147482623 -2024-08-07 16:56:06 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 16:56:06 - Stopping beans in phase 2147481599 -2024-08-07 16:56:06 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 16:56:06 - Stopping beans in phase -2147483647 -2024-08-07 16:56:06 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 16:56:06 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 16:56:06 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 16:56:06 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 16:56:06 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 16:56:06 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 16:56:06 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 16:56:06 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 16:56:06 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 16:56:06 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 16:56:06 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 16:56:06 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 16:56:06 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 16:56:06 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 16:56:06 - Unregistering JMX-exposed beans on shutdown -2024-08-07 16:56:06 - Unregistering JMX-exposed beans -2024-08-07 16:56:06 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 16:56:06 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 16:56:06 - HHH000031: Closing -2024-08-07 16:56:06 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@4ee308bb] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@6af02de0] -2024-08-07 16:56:06 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 16:56:06 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 16:56:06 - HikariPool-1 - Shutdown initiated... -2024-08-07 16:56:06 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:56:06 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:56:06 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:56:06 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:56:06 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:56:06 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:56:06 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:56:06 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:56:06 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:56:06 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:56:06 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 16:56:06 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 16:56:06 - HikariPool-1 - Shutdown completed. -2024-08-07 16:56:06 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 16:56:07 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 16:56:07 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 16:56:07 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:56:07 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:56:07 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:56:07 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:56:07 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:56:07 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:56:07 - Loaded expression factory via original TCCL -2024-08-07 16:56:07 - Starting HaengdongApplication using Java 17.0.12 with PID 62131 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 16:56:07 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 16:56:07 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 16:56:07 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 16:56:07 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 16:56:07 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:56:07 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:56:07 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:56:07 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:56:07 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:56:07 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 16:56:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 16:56:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 16:56:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 16:56:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 16:56:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 16:56:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 16:56:07 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 16:56:07 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 16:56:07 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 16:56:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 16:56:07 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 16:56:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 16:56:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 16:56:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 16:56:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 16:56:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 16:56:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 16:56:07 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 16:56:07 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 16:56:07 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 16:56:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 16:56:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 16:56:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 16:56:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 16:56:07 - Finished Spring Data repository scanning in 17 ms. Found 4 JPA repository interfaces. -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 16:56:07 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 16:56:07 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 16:56:07 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 16:56:07 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 16:56:07 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 16:56:07 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 16:56:07 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 16:56:07 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 16:56:07 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@54c60202] -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 16:56:07 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 16:56:07 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 16:56:07 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 16:56:07 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 16:56:07 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 16:56:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 16:56:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 16:56:07 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 16:56:07 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:56:07 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:56:07 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:56:07 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 16:56:07 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 16:56:07 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 16:56:07 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 16:56:07 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 16:56:07 - Tomcat initialized with port 8080 (http) -2024-08-07 16:56:07 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1a2e563e] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1a2e563e] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.mapper.MapperListener@47fb7ec9] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.mapper.MapperListener@47fb7ec9] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 16:56:07 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 16:56:07 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1a2e563e] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1a2e563e] to [STARTING] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1a2e563e] to [STARTED] -2024-08-07 16:56:07 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 16:56:07 - Starting service [Tomcat] -2024-08-07 16:56:07 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 16:56:07 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 16:56:07 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.webresources.StandardRoot@79be91eb] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.webresources.StandardRoot@79be91eb] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.webresources.StandardRoot@79be91eb] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.webresources.DirResourceSet@73e4bb60] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.webresources.DirResourceSet@73e4bb60] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.webresources.DirResourceSet@73e4bb60] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.webresources.DirResourceSet@73e4bb60] to [STARTING] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.webresources.DirResourceSet@73e4bb60] to [STARTED] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.webresources.StandardRoot@79be91eb] to [STARTING] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.webresources.StandardRoot@79be91eb] to [STARTED] -2024-08-07 16:56:07 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:56:07 - Starting this Loader -2024-08-07 16:56:07 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:56:07 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:56:07 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 16:56:07 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@2e4eda17] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@2e4eda17] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@2e4eda17] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@2e4eda17] to [STARTING] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@2e4eda17] to [STARTED] -2024-08-07 16:56:07 - Initializing Spring embedded WebApplicationContext -2024-08-07 16:56:07 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 16:56:07 - Root WebApplicationContext: initialization completed in 620 ms -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 16:56:07 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 16:56:07 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 16:56:07 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 16:56:07 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:56:07 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 16:56:07 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 16:56:07 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 16:56:07 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 16:56:07 - HikariPool-1 - configuration: -2024-08-07 16:56:07 - allowPoolSuspension.............false -2024-08-07 16:56:07 - autoCommit......................true -2024-08-07 16:56:07 - catalog.........................none -2024-08-07 16:56:07 - connectionInitSql...............none -2024-08-07 16:56:07 - connectionTestQuery.............none -2024-08-07 16:56:07 - connectionTimeout...............30000 -2024-08-07 16:56:07 - dataSource......................none -2024-08-07 16:56:07 - dataSourceClassName.............none -2024-08-07 16:56:07 - dataSourceJNDI..................none -2024-08-07 16:56:07 - dataSourceProperties............{password=<masked>} -2024-08-07 16:56:07 - driverClassName................."org.h2.Driver" -2024-08-07 16:56:07 - exceptionOverrideClassName......none -2024-08-07 16:56:07 - healthCheckProperties...........{} -2024-08-07 16:56:07 - healthCheckRegistry.............none -2024-08-07 16:56:07 - idleTimeout.....................600000 -2024-08-07 16:56:07 - initializationFailTimeout.......1 -2024-08-07 16:56:07 - isolateInternalQueries..........false -2024-08-07 16:56:07 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 16:56:07 - keepaliveTime...................0 -2024-08-07 16:56:07 - leakDetectionThreshold..........0 -2024-08-07 16:56:07 - maxLifetime.....................1800000 -2024-08-07 16:56:07 - maximumPoolSize.................10 -2024-08-07 16:56:07 - metricRegistry..................none -2024-08-07 16:56:07 - metricsTrackerFactory...........none -2024-08-07 16:56:07 - minimumIdle.....................10 -2024-08-07 16:56:07 - password........................<masked> -2024-08-07 16:56:07 - poolName........................"HikariPool-1" -2024-08-07 16:56:07 - readOnly........................false -2024-08-07 16:56:07 - registerMbeans..................false -2024-08-07 16:56:07 - scheduledExecutor...............none -2024-08-07 16:56:07 - schema..........................none -2024-08-07 16:56:07 - threadFactory...................internal -2024-08-07 16:56:07 - transactionIsolation............default -2024-08-07 16:56:07 - username........................"sa" -2024-08-07 16:56:07 - validationTimeout...............5000 -2024-08-07 16:56:07 - HikariPool-1 - Starting... -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:64683] -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:07 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 16:56:07 - HikariPool-1 - Start completed. -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 84 -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:07 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:56:07 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:56:07 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:07 - [javax.management.remote.rmi.RMIConnectionImpl@6b452160: connectionId=rmi://127.0.0.1 1] closing. -2024-08-07 16:56:07 - [javax.management.remote.rmi.RMIConnectionImpl@6b452160: connectionId=rmi://127.0.0.1 1] closed. -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 16:56:07 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 16:56:07 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:56:07 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 16:56:07 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:56:07 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 16:56:07 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 16:56:07 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 16:56:07 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 16:56:07 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 16:56:07 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@3355168] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@3355168] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@3355168] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@3355168] to [STARTING] -2024-08-07 16:56:07 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@3355168] to [STARTED] -2024-08-07 16:56:07 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 16:56:07 - Filter 'requestContextFilter' configured for use -2024-08-07 16:56:07 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 16:56:07 - Filter 'characterEncodingFilter' configured for use -2024-08-07 16:56:07 - Filter 'formContentFilter' configured for use -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:56:07 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 16:56:07 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 16:56:07 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 16:56:07 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.mapper.MapperListener@47fb7ec9] to [STARTING_PREP] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.mapper.MapperListener@47fb7ec9] to [STARTING] -2024-08-07 16:56:07 - Registered host [localhost] -2024-08-07 16:56:07 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 16:56:07 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 16:56:07 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 16:56:07 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 16:56:07 - Setting state for [org.apache.catalina.mapper.MapperListener@47fb7ec9] to [STARTED] -2024-08-07 16:56:07 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 16:56:07 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 16:56:07 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 16:56:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:56:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:56:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 16:56:07 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 16:56:07 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 16:56:07 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:56:07 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:56:08 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 16:56:08 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 16:56:08 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 16:56:08 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 16:56:08 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 16:56:08 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 16:56:08 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 16:56:08 - HHH000206: 'hibernate.properties' not found -2024-08-07 16:56:08 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 16:56:08 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 16:56:08 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 16:56:08 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 16:56:08 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 16:56:08 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 16:56:08 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 16:56:08 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 16:56:08 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 16:56:08 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 16:56:08 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 16:56:08 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 16:56:08 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 16:56:08 - HHH000026: Second-level cache disabled -2024-08-07 16:56:08 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 16:56:08 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 16:56:08 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 16:56:08 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 16:56:08 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 16:56:08 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 16:56:08 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 16:56:08 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 16:56:08 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 16:56:08 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 16:56:08 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 16:56:08 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 16:56:08 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 16:56:08 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 16:56:08 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:56:08 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:56:08 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 16:56:08 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 16:56:08 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 16:56:08 - Adding type registration image -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 16:56:08 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 16:56:08 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 16:56:08 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 16:56:08 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 16:56:08 - Adding type registration short -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 16:56:08 - Adding type registration short -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 16:56:08 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 16:56:08 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 16:56:08 - Adding type registration int -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 16:56:08 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 16:56:08 - Adding type registration long -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 16:56:08 - Adding type registration long -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 16:56:08 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 16:56:08 - Adding type registration float -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 16:56:08 - Adding type registration float -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 16:56:08 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 16:56:08 - Adding type registration double -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 16:56:08 - Adding type registration double -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 16:56:08 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 16:56:08 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 16:56:08 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 16:56:08 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 16:56:08 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 16:56:08 - Adding type registration character -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 16:56:08 - Adding type registration char -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 16:56:08 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 16:56:08 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 16:56:08 - Adding type registration string -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 16:56:08 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 16:56:08 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 16:56:08 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 16:56:08 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 16:56:08 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 16:56:08 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 16:56:08 - Adding type registration text -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 16:56:08 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 16:56:08 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 16:56:08 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 16:56:08 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:56:08 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 16:56:08 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 16:56:08 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 16:56:08 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 16:56:08 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 16:56:08 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 16:56:08 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 16:56:08 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 16:56:08 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 16:56:08 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 16:56:08 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 16:56:08 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 16:56:08 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 16:56:08 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 16:56:08 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 16:56:08 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 16:56:08 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 16:56:08 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 16:56:08 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 16:56:08 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:56:08 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 16:56:08 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 16:56:08 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 16:56:08 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 16:56:08 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 16:56:08 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 16:56:08 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 16:56:08 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 16:56:08 - Adding type registration date -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 16:56:08 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 16:56:08 - Adding type registration time -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 16:56:08 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 16:56:08 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 16:56:08 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 16:56:08 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 16:56:08 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 16:56:08 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 16:56:08 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 16:56:08 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 16:56:08 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 16:56:08 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 16:56:08 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 16:56:08 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:56:08 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:56:08 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 16:56:08 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 16:56:08 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 16:56:08 - Adding type registration class -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 16:56:08 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 16:56:08 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 16:56:08 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 16:56:08 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 16:56:08 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 16:56:08 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 16:56:08 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 16:56:08 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 16:56:08 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 16:56:08 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 16:56:08 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 16:56:08 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 16:56:08 - Adding type registration url -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 16:56:08 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 16:56:08 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-07 16:56:08 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 16:56:08 - Adding type registration object -> org.hibernate.type.JavaObjectType@727956bb -2024-08-07 16:56:08 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@727956bb -2024-08-07 16:56:08 - Adding type registration null -> org.hibernate.type.NullType@1fa18f87 -2024-08-07 16:56:08 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@1d9bd1d6 -2024-08-07 16:56:08 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@18ac4af6 -2024-08-07 16:56:08 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@117fb9ba -2024-08-07 16:56:08 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@2b1d1a5 -2024-08-07 16:56:08 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@41e7a544 -2024-08-07 16:56:08 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@3b66ac74 -2024-08-07 16:56:08 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@573870cb -2024-08-07 16:56:08 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@5b88af70 -2024-08-07 16:56:08 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@2c154508] into BootstrapContext; was [null] -2024-08-07 16:56:08 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@2c154508) [was null] -2024-08-07 16:56:08 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@5c3710b3] into BootstrapContext; was [null] -2024-08-07 16:56:08 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@8b1202a] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@34bddf43] -2024-08-07 16:56:08 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 16:56:08 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 16:56:08 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 16:56:08 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 16:56:08 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 16:56:08 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@2c154508] -2024-08-07 16:56:08 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@2c154508] -2024-08-07 16:56:08 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 16:56:08 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 16:56:08 - JDBC version : 4.2 -2024-08-07 16:56:08 - HikariPool-1 - After adding stats (total=4, active=1, idle=3, waiting=0) -2024-08-07 16:56:08 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 16:56:08 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 16:56:08 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 16:56:08 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 16:56:08 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 16:56:08 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 16:56:08 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 16:56:08 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 16:56:08 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 16:56:08 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 16:56:08 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 16:56:08 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 16:56:08 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@714b6999] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@2e4d2232] -2024-08-07 16:56:08 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 16:56:08 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-07 16:56:08 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 16:56:08 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 16:56:08 - Import with entity name Action -2024-08-07 16:56:08 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 16:56:08 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:56:08 - Binding column: AnnotatedColumn() -2024-08-07 16:56:08 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:56:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:56:08 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:56:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 16:56:08 - building BasicValue for id -2024-08-07 16:56:08 - Skipping column re-registration: action.id -2024-08-07 16:56:08 - Building property id -2024-08-07 16:56:08 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:56:08 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:56:08 - Binding column: AnnotatedColumn() -2024-08-07 16:56:08 - Building property event -2024-08-07 16:56:08 - Binding column: AnnotatedColumn() -2024-08-07 16:56:08 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 16:56:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 16:56:08 - building BasicValue for sequence -2024-08-07 16:56:08 - Skipping column re-registration: action.sequence -2024-08-07 16:56:08 - Building property sequence -2024-08-07 16:56:08 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:56:08 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 16:56:08 - Import with entity name BillAction -2024-08-07 16:56:08 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 16:56:08 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:56:08 - Binding column: AnnotatedColumn() -2024-08-07 16:56:08 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:56:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:56:08 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:56:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 16:56:08 - building BasicValue for id -2024-08-07 16:56:08 - Skipping column re-registration: bill_action.id -2024-08-07 16:56:08 - Building property id -2024-08-07 16:56:08 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:56:08 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:56:08 - Binding column: AnnotatedColumn() -2024-08-07 16:56:08 - Building property action -2024-08-07 16:56:08 - Binding column: AnnotatedColumn() -2024-08-07 16:56:08 - MetadataSourceProcessor property price with lazy=false -2024-08-07 16:56:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 16:56:08 - building BasicValue for price -2024-08-07 16:56:08 - Skipping column re-registration: bill_action.price -2024-08-07 16:56:08 - Building property price -2024-08-07 16:56:08 - Binding column: AnnotatedColumn() -2024-08-07 16:56:08 - MetadataSourceProcessor property title with lazy=false -2024-08-07 16:56:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 16:56:08 - building BasicValue for title -2024-08-07 16:56:08 - Skipping column re-registration: bill_action.title -2024-08-07 16:56:08 - Building property title -2024-08-07 16:56:08 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:56:08 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 16:56:08 - Import with entity name MemberAction -2024-08-07 16:56:08 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 16:56:08 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:56:08 - Binding column: AnnotatedColumn() -2024-08-07 16:56:08 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:56:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:56:08 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:56:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 16:56:08 - building BasicValue for id -2024-08-07 16:56:08 - Skipping column re-registration: member_action.id -2024-08-07 16:56:08 - Building property id -2024-08-07 16:56:08 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:56:08 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:56:08 - Binding column: AnnotatedColumn() -2024-08-07 16:56:08 - Building property action -2024-08-07 16:56:08 - Binding column: AnnotatedColumn() -2024-08-07 16:56:08 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 16:56:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 16:56:08 - building BasicValue for memberGroupId -2024-08-07 16:56:08 - Skipping column re-registration: member_action.member_group_id -2024-08-07 16:56:08 - Building property memberGroupId -2024-08-07 16:56:08 - Binding column: AnnotatedColumn() -2024-08-07 16:56:08 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 16:56:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 16:56:08 - building BasicValue for memberName -2024-08-07 16:56:08 - Skipping column re-registration: member_action.member_name -2024-08-07 16:56:08 - Building property memberName -2024-08-07 16:56:08 - Binding column: AnnotatedColumn() -2024-08-07 16:56:08 - MetadataSourceProcessor property status with lazy=false -2024-08-07 16:56:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 16:56:08 - building BasicValue for status -2024-08-07 16:56:08 - Skipping column re-registration: member_action.status -2024-08-07 16:56:08 - Building property status -2024-08-07 16:56:08 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 16:56:08 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 16:56:08 - Import with entity name Event -2024-08-07 16:56:08 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 16:56:08 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:56:08 - Binding column: AnnotatedColumn() -2024-08-07 16:56:08 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:56:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:56:08 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:56:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 16:56:08 - building BasicValue for id -2024-08-07 16:56:08 - Skipping column re-registration: event.id -2024-08-07 16:56:08 - Building property id -2024-08-07 16:56:08 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:56:08 - Binding column: AnnotatedColumn() -2024-08-07 16:56:08 - MetadataSourceProcessor property name with lazy=false -2024-08-07 16:56:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 16:56:08 - building BasicValue for name -2024-08-07 16:56:08 - Skipping column re-registration: event.name -2024-08-07 16:56:08 - Building property name -2024-08-07 16:56:08 - Binding column: AnnotatedColumn() -2024-08-07 16:56:08 - MetadataSourceProcessor property password with lazy=false -2024-08-07 16:56:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 16:56:08 - building BasicValue for password -2024-08-07 16:56:08 - Skipping column re-registration: event.password -2024-08-07 16:56:08 - Building property password -2024-08-07 16:56:08 - Binding column: AnnotatedColumn() -2024-08-07 16:56:08 - MetadataSourceProcessor property token with lazy=false -2024-08-07 16:56:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 16:56:08 - building BasicValue for token -2024-08-07 16:56:08 - Skipping column re-registration: event.token -2024-08-07 16:56:08 - Building property token -2024-08-07 16:56:08 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 16:56:08 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 16:56:08 - Import with entity name EventStep -2024-08-07 16:56:08 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 16:56:08 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 16:56:08 - Binding column: AnnotatedColumn() -2024-08-07 16:56:08 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:56:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:56:08 - MetadataSourceProcessor property id with lazy=false -2024-08-07 16:56:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 16:56:08 - building BasicValue for id -2024-08-07 16:56:08 - Skipping column re-registration: event_step.id -2024-08-07 16:56:08 - Building property id -2024-08-07 16:56:08 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 16:56:08 - Binding column: AnnotatedJoinColumn() -2024-08-07 16:56:08 - Binding column: AnnotatedColumn() -2024-08-07 16:56:08 - Building property event -2024-08-07 16:56:08 - Binding column: AnnotatedColumn() -2024-08-07 16:56:08 - MetadataSourceProcessor property name with lazy=false -2024-08-07 16:56:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 16:56:08 - building BasicValue for name -2024-08-07 16:56:08 - Skipping column re-registration: event_step.name -2024-08-07 16:56:08 - Building property name -2024-08-07 16:56:08 - Binding column: AnnotatedColumn() -2024-08-07 16:56:08 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 16:56:08 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 16:56:08 - building BasicValue for sequence -2024-08-07 16:56:08 - Skipping column re-registration: event_step.sequence -2024-08-07 16:56:08 - Building property sequence -2024-08-07 16:56:08 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 16:56:08 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:56:08 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 16:56:08 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:56:08 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 16:56:08 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 16:56:08 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:56:08 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 16:56:08 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 16:56:08 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 16:56:08 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:56:08 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 16:56:08 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 16:56:08 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 16:56:08 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 16:56:08 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 16:56:08 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 16:56:08 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 16:56:08 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 16:56:08 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 16:56:08 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 16:56:08 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 16:56:08 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 16:56:08 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 16:56:08 - Building session factory -2024-08-07 16:56:08 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:56:08 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@3050d479, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@5c7a06ec, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1138838656514973003, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=62131, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1138838656514973003, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@697b48e4, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 16:56:08 - Session factory constructed with filter configurations : {} -2024-08-07 16:56:08 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 16:56:08 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:56:08 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:56:08 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:56:08 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:56:08 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:56:08 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:56:08 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 16:56:08 - Loaded expression factory via original TCCL -2024-08-07 16:56:08 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:56:08 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:56:08 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:56:08 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:56:08 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:56:08 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:56:08 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:56:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:56:08 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:56:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:56:08 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:56:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:56:08 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:56:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:56:08 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:56:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:56:08 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@4d9cf71d] under count; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@eb6ccbc] under every; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@5eae392d] under any; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6ad0cd43] under sinh; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7de43652] under cosh; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7fe0ca60] under tanh; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@fdf029a] under pi; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@63896cf7] under log; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 16:56:08 - Registering alternate key : length -> character_length -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@2ba0b95f] under position; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@7c8a91e2] under overlay; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@34ff08c6] under trim; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@37f627d0] under cast; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2a7392a3] under collate; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@5382a35f] under extract; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@4a7c72af] under ifnull; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@1b53e6fc] under pad; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@4add4dff] under str; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@2fccd98f] under format; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@575fe6da] under timestampadd; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@7d7c05fa] under timestampdiff; prior registration was null -2024-08-07 16:56:08 - Registering alternate key : dateadd -> timestampadd -2024-08-07 16:56:08 - Registering alternate key : datediff -> timestampdiff -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@34d3409d] under current_date; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16732340] under current_time; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@38e052b2] under current_timestamp; prior registration was null -2024-08-07 16:56:08 - Registering alternate key : current date -> current_date -2024-08-07 16:56:08 - Registering alternate key : current time -> current_time -2024-08-07 16:56:08 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7fa68ff4] under local_date; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@515fff35] under local_time; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5eb9bf7d] under local_datetime; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@64f613da] under offset_datetime; prior registration was null -2024-08-07 16:56:08 - Registering alternate key : local date -> local_date -2024-08-07 16:56:08 - Registering alternate key : local time -> local_time -2024-08-07 16:56:08 - Registering alternate key : local datetime -> local_datetime -2024-08-07 16:56:08 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2f64f99f] under instant; prior registration was null -2024-08-07 16:56:08 - Registering alternate key : current_instant -> instant -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@4e210016] under sql; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@2fc40856] under count; prior registration was org.hibernate.dialect.function.CountFunction@4d9cf71d -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@57ed8f95] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@fdf029a -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1c25deb0] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 16:56:08 - Registering alternate key : day -> day_of_month -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@515fff35 -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@5eb9bf7d -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@30e15628] under trunc; prior registration was null -2024-08-07 16:56:08 - Registering alternate key : truncate -> trunc -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@37ab1b10] under date_trunc; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 16:56:08 - Registering alternate key : chr -> char -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@55d87b73] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@2ba0b95f -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@618e7761] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 16:56:08 - Registering alternate key : every -> bool_and -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 16:56:08 - Registering alternate key : any -> bool_or -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@5b643d6e] under format; prior registration was org.hibernate.dialect.function.FormatFunction@2fccd98f -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@38c1b1a7] under listagg; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@cbc3bf3] under mode; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@31f9f9b3] under percentile_cont; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@7730da00] under percentile_disc; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@3085befb] under rank; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@62264d4f] under dense_rank; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@2bc0603f] under percent_rank; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@4ed19540] under cume_dist; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@3163e03b] under array; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@6aa18912] under array_list; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@440d2d64] under array_agg; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@4965454c] under array_position; prior registration was null -2024-08-07 16:56:08 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 16:56:08 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@4e1104f4] under array_positions; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@15c3585] under array_positions_list; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5b86f4cb] under array_length; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@5f14590c] under array_concat; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@1ce8084a] under array_prepend; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@61d24347] under array_append; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@1e09c0b] under array_contains; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@4880a9d] under array_contains_nullable; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@2119b989] under array_overlaps; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@73905dff] under array_overlaps_nullable; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@40d04cf8] under array_get; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@7304ca87] under array_set; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@3a012678] under array_remove; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@329efc61] under array_remove_index; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@32f45e15] under array_slice; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@4e481512] under array_replace; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1ba98508] under array_trim; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@583b4af4] under array_fill; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@72c175f1] under array_fill_list; prior registration was null -2024-08-07 16:56:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@27691ee8] under array_to_string; prior registration was null -2024-08-07 16:56:08 - abs(NUMERIC arg) -2024-08-07 16:56:08 - Double acos(NUMERIC arg) -2024-08-07 16:56:08 - Boolean any(BOOLEAN predicate) -2024-08-07 16:56:08 - array( ... ) -2024-08-07 16:56:08 - array_agg(arg) -2024-08-07 16:56:08 - array_append( ... ) -2024-08-07 16:56:08 - array_concat( ... ) -2024-08-07 16:56:08 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 16:56:08 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 16:56:08 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 16:56:08 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 16:56:08 - array_get(ARRAY array, INTEGER index) -2024-08-07 16:56:08 - Integer array_length(ARRAY array) -2024-08-07 16:56:08 - array_list( ... ) -2024-08-07 16:56:08 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 16:56:08 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 16:56:08 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 16:56:08 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 16:56:08 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 16:56:08 - array_prepend( ... ) -2024-08-07 16:56:08 - array_remove( ... ) -2024-08-07 16:56:08 - array_remove_index( ... ) -2024-08-07 16:56:08 - array_replace( ... ) -2024-08-07 16:56:08 - array_set( ... ) -2024-08-07 16:56:08 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 16:56:08 - String array_to_string( ... ) -2024-08-07 16:56:08 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 16:56:08 - Integer ascii(STRING arg) -2024-08-07 16:56:08 - Double asin(NUMERIC arg) -2024-08-07 16:56:08 - Double atan(NUMERIC arg) -2024-08-07 16:56:08 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 16:56:08 - avg(NUMERIC arg) -2024-08-07 16:56:08 - bit_and(arg) -2024-08-07 16:56:08 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 16:56:08 - bit_or(arg) -2024-08-07 16:56:08 - bitand(arg0, arg1) -2024-08-07 16:56:08 - bitnot(arg) -2024-08-07 16:56:08 - bitor(arg0, arg1) -2024-08-07 16:56:08 - bitxor(arg0, arg1) -2024-08-07 16:56:08 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 16:56:08 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 16:56:08 - cast(arg as Type) -2024-08-07 16:56:08 - ceiling(NUMERIC arg) -2024-08-07 16:56:08 - Character char(INTEGER arg) -2024-08-07 16:56:08 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 16:56:08 - Character chr(INTEGER arg) -2024-08-07 16:56:08 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 16:56:08 - String collate(STRING string as COLLATION collation) -2024-08-07 16:56:08 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 16:56:08 - Double cos(NUMERIC arg) -2024-08-07 16:56:08 - Double cosh(NUMERIC arg) -2024-08-07 16:56:08 - Double cot(NUMERIC arg) -2024-08-07 16:56:08 - Long count([distinct ]{arg|*}) -2024-08-07 16:56:08 - Double cume_dist([arg0[, ...]]) -2024-08-07 16:56:08 - Date curdate() -2024-08-07 16:56:08 - Date current date -2024-08-07 16:56:08 - Time current time -2024-08-07 16:56:08 - Timestamp current timestamp -2024-08-07 16:56:08 - Date current_date -2024-08-07 16:56:08 - Instant current_instant -2024-08-07 16:56:08 - Time current_time -2024-08-07 16:56:08 - Timestamp current_timestamp -2024-08-07 16:56:08 - Time curtime() -2024-08-07 16:56:08 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 16:56:08 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 16:56:08 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 16:56:08 - Integer day(DATE arg) -2024-08-07 16:56:08 - Integer day_of_month(DATE arg) -2024-08-07 16:56:08 - Integer day_of_week(DATE arg) -2024-08-07 16:56:08 - Integer day_of_year(DATE arg) -2024-08-07 16:56:08 - String dayname(DATE arg) -2024-08-07 16:56:08 - Double degrees(NUMERIC arg) -2024-08-07 16:56:08 - Long dense_rank([arg0[, ...]]) -2024-08-07 16:56:08 - Boolean every(BOOLEAN predicate) -2024-08-07 16:56:08 - Double exp(NUMERIC arg) -2024-08-07 16:56:08 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 16:56:08 - first_valueANY value -2024-08-07 16:56:08 - floor(NUMERIC arg) -2024-08-07 16:56:08 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 16:56:08 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 16:56:08 - Integer hour(TIME arg) -2024-08-07 16:56:08 - ifnull(arg0, arg1) -2024-08-07 16:56:08 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 16:56:08 - Instant instant -2024-08-07 16:56:08 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 16:56:08 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 16:56:08 - last_valueANY value -2024-08-07 16:56:08 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 16:56:08 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 16:56:08 - String left(STRING string, INTEGER length) -2024-08-07 16:56:08 - Integer length(STRING_OR_CLOB arg) -2024-08-07 16:56:08 - String listagg(STRING arg0, STRING arg1) -2024-08-07 16:56:08 - Double ln(NUMERIC arg) -2024-08-07 16:56:08 - LocalDate local date -2024-08-07 16:56:08 - LocalDateTime local datetime -2024-08-07 16:56:08 - LocalTime local time -2024-08-07 16:56:08 - LocalDate local_date -2024-08-07 16:56:08 - LocalDateTime local_datetime -2024-08-07 16:56:08 - LocalTime local_time -2024-08-07 16:56:08 - Time localtime -2024-08-07 16:56:08 - Timestamp localtimestamp -2024-08-07 16:56:08 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 16:56:08 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 16:56:08 - Double log10(NUMERIC arg) -2024-08-07 16:56:08 - String lower(STRING string) -2024-08-07 16:56:08 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 16:56:08 - String ltrim(STRING string) -2024-08-07 16:56:08 - max(COMPARABLE arg) -2024-08-07 16:56:08 - Double median(NUMERIC arg) -2024-08-07 16:56:08 - Integer microsecond(TIME arg) -2024-08-07 16:56:08 - min(COMPARABLE arg) -2024-08-07 16:56:08 - Integer minute(TIME arg) -2024-08-07 16:56:08 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 16:56:08 - mode() -2024-08-07 16:56:08 - Integer month(DATE arg) -2024-08-07 16:56:08 - String monthname(DATE arg) -2024-08-07 16:56:08 - Timestamp now() -2024-08-07 16:56:08 - nth_valueANY value, INTEGER nth -2024-08-07 16:56:08 - nullif(arg0, arg1) -2024-08-07 16:56:08 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 16:56:08 - OffsetDateTime offset datetime -2024-08-07 16:56:08 - OffsetDateTime offset_datetime -2024-08-07 16:56:08 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 16:56:08 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 16:56:08 - Double percent_rank([arg0[, ...]]) -2024-08-07 16:56:08 - percentile_cont(NUMERIC arg) -2024-08-07 16:56:08 - percentile_disc(NUMERIC arg) -2024-08-07 16:56:08 - Double pi -2024-08-07 16:56:08 - Integer position(STRING pattern in STRING string) -2024-08-07 16:56:08 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 16:56:08 - Integer quarter(DATE arg) -2024-08-07 16:56:08 - Double radians(NUMERIC arg) -2024-08-07 16:56:08 - Double rand([INTEGER seed]) -2024-08-07 16:56:08 - Long rank([arg0[, ...]]) -2024-08-07 16:56:08 - String repeat(STRING string, INTEGER times) -2024-08-07 16:56:08 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 16:56:08 - String right(STRING string, INTEGER length) -2024-08-07 16:56:08 - round(NUMERIC number[, INTEGER places]) -2024-08-07 16:56:08 - Long row_number() -2024-08-07 16:56:08 - Long rownum() -2024-08-07 16:56:08 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 16:56:08 - String rtrim(STRING string) -2024-08-07 16:56:08 - Integer second(TIME arg) -2024-08-07 16:56:08 - Integer sign(NUMERIC arg) -2024-08-07 16:56:08 - Double sin(NUMERIC arg) -2024-08-07 16:56:08 - Double sinh(NUMERIC arg) -2024-08-07 16:56:08 - String soundex(arg) -2024-08-07 16:56:08 - String space(INTEGER arg) -2024-08-07 16:56:08 - Object sql -2024-08-07 16:56:08 - Double sqrt(NUMERIC arg) -2024-08-07 16:56:08 - Double stddev_pop(NUMERIC arg) -2024-08-07 16:56:08 - Double stddev_samp(NUMERIC arg) -2024-08-07 16:56:08 - String str(arg) -2024-08-07 16:56:08 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 16:56:08 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 16:56:08 - sum(arg) -2024-08-07 16:56:08 - Timestamp sysdate -2024-08-07 16:56:08 - Double tan(NUMERIC arg) -2024-08-07 16:56:08 - Double tanh(NUMERIC arg) -2024-08-07 16:56:08 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 16:56:08 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 16:56:08 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 16:56:08 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 16:56:08 - trunc( ... ) -2024-08-07 16:56:08 - truncate( ... ) -2024-08-07 16:56:08 - String upper(STRING string) -2024-08-07 16:56:08 - Double var_pop(NUMERIC arg) -2024-08-07 16:56:08 - Double var_samp(NUMERIC arg) -2024-08-07 16:56:08 - Integer week(DATE arg) -2024-08-07 16:56:08 - Integer year(DATE arg) -2024-08-07 16:56:08 - Starting QueryInterpretationCache(2048) -2024-08-07 16:56:08 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 16:56:08 - Configured EntityCopyObserver strategy: disallow -2024-08-07 16:56:08 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 16:56:08 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 16:56:08 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 16:56:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 16:56:08 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:56:08 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 16:56:08 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 16:56:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 16:56:08 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 16:56:08 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 16:56:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 16:56:08 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 16:56:08 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 16:56:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 82 -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 82 -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:08 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 82 -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 84 -2024-08-07 16:56:08 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 16:56:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:08 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:08 - [javax.management.remote.rmi.RMIConnectionImpl@148cdcf7: connectionId=rmi://127.0.0.1 2] closing. -2024-08-07 16:56:08 - [javax.management.remote.rmi.RMIConnectionImpl@148cdcf7: connectionId=rmi://127.0.0.1 2] closed. -2024-08-07 16:56:08 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 16:56:08 - Starting post-init callbacks -2024-08-07 16:56:08 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 16:56:08 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 16:56:08 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:56:08 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 16:56:08 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 16:56:08 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 16:56:08 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 16:56:08 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 16:56:08 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 16:56:08 - Created new SQL alias : ba1_0 -2024-08-07 16:56:08 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 16:56:08 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@ae85aad] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 16:56:08 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 16:56:08 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 16:56:08 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 16:56:08 - Version select: select id from bill_action where id=? -2024-08-07 16:56:08 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 16:56:08 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 16:56:08 - Delete (0): delete from bill_action where id=? -2024-08-07 16:56:08 - Created new SQL alias : ma1_0 -2024-08-07 16:56:08 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 16:56:08 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6c75c5e8] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:56:08 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 16:56:08 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 16:56:08 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 16:56:08 - Version select: select id from member_action where id=? -2024-08-07 16:56:08 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 16:56:08 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 16:56:08 - Delete (0): delete from member_action where id=? -2024-08-07 16:56:08 - Created new SQL alias : e1_0 -2024-08-07 16:56:08 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 16:56:08 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 16:56:08 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 16:56:08 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 16:56:08 - Version select: select id from event where id=? -2024-08-07 16:56:08 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 16:56:08 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 16:56:08 - Delete (0): delete from event where id=? -2024-08-07 16:56:08 - Created new SQL alias : a1_0 -2024-08-07 16:56:08 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 16:56:08 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7b1b1784] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 16:56:08 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 16:56:08 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 16:56:08 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 16:56:08 - Version select: select id from action where id=? -2024-08-07 16:56:08 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 16:56:08 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 16:56:08 - Delete (0): delete from action where id=? -2024-08-07 16:56:08 - Created new SQL alias : es1_0 -2024-08-07 16:56:08 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 16:56:08 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@58e0d1ac] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 16:56:08 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 16:56:08 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 16:56:08 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 16:56:08 - Version select: select id from event_step where id=? -2024-08-07 16:56:08 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 16:56:08 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 16:56:08 - Delete (0): delete from event_step where id=? -2024-08-07 16:56:08 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 16:56:08 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@714b6999] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@1b1d93e9] -2024-08-07 16:56:08 - Checking 0 named HQL queries -2024-08-07 16:56:08 - Checking 0 named SQL queries -2024-08-07 16:56:08 - - drop table if exists action cascade -2024-08-07 16:56:08 - - drop table if exists bill_action cascade -2024-08-07 16:56:08 - - drop table if exists event cascade -2024-08-07 16:56:08 - - drop table if exists event_step cascade -2024-08-07 16:56:08 - - drop table if exists member_action cascade -2024-08-07 16:56:08 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 16:56:08 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 16:56:08 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 16:56:08 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 16:56:08 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 16:56:08 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 16:56:08 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 16:56:08 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 16:56:08 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 16:56:08 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@3984e2b3 -2024-08-07 16:56:08 - Registering SessionFactory: d7f9b675-1262-4cb5-8fd8-0c4209696983 (<unnamed>) -2024-08-07 16:56:08 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 16:56:08 - Instantiated SessionFactory -2024-08-07 16:56:08 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'actionService' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 16:56:08 - Initializing JpaMetamodelMappingContext… -2024-08-07 16:56:08 - Finished initializing JpaMetamodelMappingContext -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - Statistics initialized [enabled=false] -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 16:56:08 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 16:56:08 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 16:56:08 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 16:56:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:56:08 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - Looking up named query BillAction.findByAction_Event -2024-08-07 16:56:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:56:08 - Did not find named query BillAction.findByAction_Event -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - Looking up named query BillAction.findByAction_Id -2024-08-07 16:56:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:56:08 - Did not find named query BillAction.findByAction_Id -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 16:56:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:56:08 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 16:56:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:56:08 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 16:56:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:56:08 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 16:56:08 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 16:56:08 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:56:08 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 16:56:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:56:08 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 16:56:08 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 16:56:08 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 16:56:08 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 16:56:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:56:08 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 16:56:08 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:56:08 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(743340018208000)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(743340018208000)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(743340018208000)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(743340018208000)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(743340018208000).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:56:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:56:08 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 16:56:08 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:56:08 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:56:08 - Looking up named query MemberAction.findByAction -2024-08-07 16:56:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:56:08 - Did not find named query MemberAction.findByAction -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - Looking up named query Event.findByToken -2024-08-07 16:56:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:56:08 - Did not find named query Event.findByToken -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 16:56:08 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 16:56:08 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:56:08 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:56:08 - Did not find named query Action.findLastByEvent.count -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 16:56:08 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 16:56:08 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 16:56:08 - Looking up named query Action.findByIdAndEvent -2024-08-07 16:56:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 16:56:08 - Did not find named query Action.findByIdAndEvent -2024-08-07 16:56:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 16:56:08 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 16:56:08 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 16:56:08 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 16:56:08 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'eventService' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 16:56:08 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 16:56:08 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 16:56:08 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 16:56:08 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 16:56:08 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 16:56:08 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 16:56:08 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 16:56:08 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 16:56:08 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 16:56:08 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 16:56:08 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 16:56:08 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'actionController' -2024-08-07 16:56:08 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 16:56:08 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'eventController' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'authService' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 16:56:08 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 16:56:08 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 16:56:08 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 16:56:08 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:56:08 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 16:56:08 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 16:56:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 16:56:08 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:56:08 - Loaded expression factory via original TCCL -2024-08-07 16:56:08 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 16:56:08 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 16:56:08 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 16:56:08 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 16:56:08 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 16:56:08 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 16:56:08 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 16:56:08 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 16:56:08 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 16:56:08 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 16:56:08 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 16:56:08 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 16:56:08 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 16:56:08 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 16:56:08 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'error' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:56:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:56:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 16:56:08 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 16:56:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:56:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:56:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 16:56:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 16:56:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 16:56:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 16:56:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 16:56:08 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 16:56:08 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 16:56:08 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 16:56:08 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 16:56:08 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:56:08 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:56:08 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 82 -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 82 -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 82 -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 84 -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 82 -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 82 -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:08 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 16:56:08 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:08 - [javax.management.remote.rmi.RMIConnectionImpl@5067a56: connectionId=rmi://127.0.0.1 3] closing. -2024-08-07 16:56:08 - [javax.management.remote.rmi.RMIConnectionImpl@5067a56: connectionId=rmi://127.0.0.1 3] closed. -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 16:56:08 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:56:08 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:56:08 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 16:56:08 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 16:56:08 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:56:08 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:56:08 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:56:08 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 16:56:08 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 16:56:08 - - s.h.p.EventController: - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) -2024-08-07 16:56:08 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 16:56:08 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 16:56:08 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 16:56:09 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:56:09 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 16:56:09 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:56:09 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:56:09 - 'beanNameHandlerMapping' {} -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 16:56:09 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:56:09 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 16:56:09 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 16:56:09 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:56:09 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:56:09 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 16:56:09 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:56:09 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 16:56:09 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 16:56:09 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 16:56:09 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:56:09 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 16:56:09 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 16:56:09 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 16:56:09 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:56:09 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 16:56:09 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 16:56:09 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 16:56:09 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 16:56:09 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 16:56:09 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 16:56:09 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 16:56:09 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:56:09 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 16:56:09 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 16:56:09 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 16:56:09 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 16:56:09 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 16:56:09 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 16:56:09 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:56:09 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 16:56:09 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:56:09 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 16:56:09 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 16:56:09 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 16:56:09 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 16:56:09 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 16:56:09 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 16:56:09 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 16:56:09 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 16:56:09 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 16:56:09 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 16:56:09 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 16:56:09 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 16:56:09 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 16:56:09 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:56:09 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:56:09 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 16:56:09 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 16:56:09 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 16:56:09 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 16:56:09 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 16:56:09 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 16:56:09 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 16:56:09 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 16:56:09 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 16:56:09 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 16:56:09 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 16:56:09 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 16:56:09 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:56:09 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 16:56:09 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 16:56:09 - Using SLF4J as the default logging framework -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 16:56:09 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 16:56:09 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 16:56:09 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 16:56:09 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 16:56:09 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 16:56:09 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 16:56:09 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 16:56:09 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 16:56:09 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 16:56:09 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 16:56:09 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 16:56:09 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 16:56:09 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 16:56:09 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 16:56:09 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 16:56:09 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 16:56:09 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 16:56:09 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 16:56:09 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 16:56:09 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 16:56:09 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:56:09 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 16:56:09 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 16:56:09 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 16:56:09 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 16:56:09 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 16:56:09 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 16:56:09 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 16:56:09 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 16:56:09 - Registering beans for JMX exposure on startup -2024-08-07 16:56:09 - Auto-detecting user-defined JMX MBeans -2024-08-07 16:56:09 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 16:56:09 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 16:56:09 - Starting beans in phase -2147483647 -2024-08-07 16:56:09 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 16:56:09 - Starting beans in phase 2147481599 -2024-08-07 16:56:09 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 16:56:09 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 16:56:09 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 16:56:09 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 16:56:09 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 16:56:09 - Successfully started bean 'webServerStartStop' -2024-08-07 16:56:09 - Starting beans in phase 2147482623 -2024-08-07 16:56:09 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 16:56:09 - Starting beans in phase 2147483647 -2024-08-07 16:56:09 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 16:56:09 - Started HaengdongApplication in 2.289 seconds (process running for 2.501) -2024-08-07 16:56:09 - Application availability state LivenessState changed to CORRECT -2024-08-07 16:56:09 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 16:56:09 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 82 -2024-08-07 16:56:09 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 82 -2024-08-07 16:56:09 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 82 -2024-08-07 16:56:09 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 84 -2024-08-07 16:56:09 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 82 -2024-08-07 16:56:09 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 82 -2024-08-07 16:56:09 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 16:56:09 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 82 -2024-08-07 16:56:09 - RMI TCP Connection(1)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - [javax.management.remote.rmi.RMIConnectionImpl@1818f187: connectionId=rmi://127.0.0.1 4] closing. -2024-08-07 16:56:09 - [javax.management.remote.rmi.RMIConnectionImpl@1818f187: connectionId=rmi://127.0.0.1 4] closed. -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:64687] -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:64688] -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 84 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 84 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - [javax.management.remote.rmi.RMIConnectionImpl@219c32b0: connectionId=rmi://127.0.0.1 5] closing. -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - [javax.management.remote.rmi.RMIConnectionImpl@219c32b0: connectionId=rmi://127.0.0.1 5] closed. -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 84 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - [javax.management.remote.rmi.RMIConnectionImpl@61ba4996: connectionId=rmi://127.0.0.1 6] closing. -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - [javax.management.remote.rmi.RMIConnectionImpl@61ba4996: connectionId=rmi://127.0.0.1 6] closed. -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 84 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - [javax.management.remote.rmi.RMIConnectionImpl@60bb0d58: connectionId=rmi://127.0.0.1 7] closing. -2024-08-07 16:56:09 - [javax.management.remote.rmi.RMIConnectionImpl@60bb0d58: connectionId=rmi://127.0.0.1 7] closed. -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - [javax.management.remote.rmi.RMIConnectionImpl@5a901f69: connectionId=rmi://127.0.0.1 8] closing. -2024-08-07 16:56:09 - [javax.management.remote.rmi.RMIConnectionImpl@5a901f69: connectionId=rmi://127.0.0.1 8] closed. -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 82 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 82 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 84 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 84 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - [javax.management.remote.rmi.RMIConnectionImpl@5daa4d61: connectionId=rmi://127.0.0.1 9] closing. -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 16:56:09 - [javax.management.remote.rmi.RMIConnectionImpl@5daa4d61: connectionId=rmi://127.0.0.1 9] closed. -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - [javax.management.remote.rmi.RMIConnectionImpl@3ed1b203: connectionId=rmi://127.0.0.1 10] closing. -2024-08-07 16:56:09 - [javax.management.remote.rmi.RMIConnectionImpl@3ed1b203: connectionId=rmi://127.0.0.1 10] closed. -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 84 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 84 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:56:09 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 16:56:09 - Fetching JDBC Connection from DataSource -2024-08-07 16:56:09 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 16:56:09 - Initializing Servlet 'dispatcherServlet' -2024-08-07 16:56:09 - Detected StandardServletMultipartResolver -2024-08-07 16:56:09 - Detected AcceptHeaderLocaleResolver -2024-08-07 16:56:09 - Detected FixedThemeResolver -2024-08-07 16:56:09 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@2d0f850 -2024-08-07 16:56:09 - Fetching JDBC Connection from DataSource -2024-08-07 16:56:09 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@59929512 -2024-08-07 16:56:09 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 16:56:09 - Completed initialization in 1 ms -2024-08-07 16:56:09 - RMI TCP Connection(3)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - [javax.management.remote.rmi.RMIConnectionImpl@e9ec9c8: connectionId=rmi://127.0.0.1 12] closing. -2024-08-07 16:56:09 - [javax.management.remote.rmi.RMIConnectionImpl@e9ec9c8: connectionId=rmi://127.0.0.1 12] closed. -2024-08-07 16:56:09 - RMI TCP Connection(2)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:56:09 - [javax.management.remote.rmi.RMIConnectionImpl@338241b9: connectionId=rmi://127.0.0.1 11] closing. -2024-08-07 16:56:09 - [javax.management.remote.rmi.RMIConnectionImpl@338241b9: connectionId=rmi://127.0.0.1 11] closed. -2024-08-07 16:56:31 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1138838656514973003/conf/jaspic-providers.xml] -2024-08-07 16:56:31 - POST "/api/events", parameters={} -2024-08-07 16:56:31 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 16:56:31 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:56:31 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=트러블메이커쿠키, password=1234]] -2024-08-07 16:56:31 - Found thread-bound EntityManager [SessionImpl(1782136668<open>)] for JPA transaction -2024-08-07 16:56:31 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 16:56:31 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:56:31 - begin -2024-08-07 16:56:31 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@14c2e657] -2024-08-07 16:56:31 - Found thread-bound EntityManager [SessionImpl(1782136668<open>)] for JPA transaction -2024-08-07 16:56:31 - Participating in existing transaction -2024-08-07 16:56:31 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 16:56:31 - Executing identity-insert immediately -2024-08-07 16:56:31 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 16:56:31 - Initializer list is empty -2024-08-07 16:56:31 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@6a9f1fa0 -2024-08-07 16:56:31 - Extracted JDBC value [0] - [1] -2024-08-07 16:56:31 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@7efe5ff6 -2024-08-07 16:56:31 - Initiating transaction commit -2024-08-07 16:56:31 - Committing JPA transaction on EntityManager [SessionImpl(1782136668<open>)] -2024-08-07 16:56:31 - committing -2024-08-07 16:56:31 - Processing flush-time cascades -2024-08-07 16:56:31 - Dirty checking collections -2024-08-07 16:56:31 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 16:56:31 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 16:56:31 - Listing entities: -2024-08-07 16:56:31 - server.haengdong.domain.event.Event{password=1234, name=트러블메이커쿠키, id=1, token=b74c4904-3a68-4f5f-80a2-67774ae63a02} -2024-08-07 16:56:31 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:56:31 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:56:31 - Writing [EventResponse[eventId=b74c4904-3a68-4f5f-80a2-67774ae63a02]] -2024-08-07 16:56:31 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:56:31 - Completed 200 OK -2024-08-07 16:56:33 - OPTIONS "/api/events/b74c4904-3a68-4f5f-80a2-67774ae63a02", parameters={} -2024-08-07 16:56:33 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:56:33 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:56:33 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:56:33 - Completed 200 OK -2024-08-07 16:56:33 - OPTIONS "/api/events/b74c4904-3a68-4f5f-80a2-67774ae63a02/actions", parameters={} -2024-08-07 16:56:33 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:56:33 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:56:33 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:56:33 - Completed 200 OK -2024-08-07 16:56:33 - GET "/api/events/b74c4904-3a68-4f5f-80a2-67774ae63a02", parameters={} -2024-08-07 16:56:33 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 16:56:33 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:56:33 - GET "/api/events/b74c4904-3a68-4f5f-80a2-67774ae63a02/actions", parameters={} -2024-08-07 16:56:33 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 16:56:33 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:56:33 - Found thread-bound EntityManager [SessionImpl(394552811<open>)] for JPA transaction -2024-08-07 16:56:33 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 16:56:33 - Found thread-bound EntityManager [SessionImpl(1674753934<open>)] for JPA transaction -2024-08-07 16:56:33 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 16:56:33 - Setting JDBC Connection [HikariProxyConnection@1743597356 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 16:56:33 - Setting JDBC Connection [HikariProxyConnection@1087390324 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 16:56:33 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:56:33 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 16:56:33 - begin -2024-08-07 16:56:33 - begin -2024-08-07 16:56:33 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@26fe0f56] -2024-08-07 16:56:33 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@1a2703d] -2024-08-07 16:56:33 - Created new SQL alias : e1_0 -2024-08-07 16:56:33 - Created new SQL alias : e1_0 -2024-08-07 16:56:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(743340038621083))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 16:56:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(743340038621083))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 16:56:33 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@3a333990 -2024-08-07 16:56:33 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@56205cba -2024-08-07 16:56:33 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(743340038621083).token) -2024-08-07 16:56:33 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(743340038621083).token) -2024-08-07 16:56:33 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(743340038621083)] - | +-BasicFetch [server.haengdong.domain.event.Event(743340038621083).name] - | +-BasicFetch [server.haengdong.domain.event.Event(743340038621083).password] - | \-BasicFetch [server.haengdong.domain.event.Event(743340038621083).token] - -2024-08-07 16:56:33 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(743340038621083)] - | +-BasicFetch [server.haengdong.domain.event.Event(743340038621083).name] - | +-BasicFetch [server.haengdong.domain.event.Event(743340038621083).password] - | \-BasicFetch [server.haengdong.domain.event.Event(743340038621083).token] - -2024-08-07 16:56:33 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(743340038621083)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 16:56:33 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(743340038621083)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 16:56:33 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 16:56:33 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 16:56:33 - Initializer list: - server.haengdong.domain.event.Event(743340038621083) -> EntityResultInitializer(server.haengdong.domain.event.Event(743340038621083))@41725909 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 16:56:33 - Initializer list: - server.haengdong.domain.event.Event(743340038621083) -> EntityResultInitializer(server.haengdong.domain.event.Event(743340038621083))@1998389268 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 16:56:33 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 16:56:33 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 16:56:33 - Extracted JDBC value [0] - [1] -2024-08-07 16:56:33 - Extracted JDBC value [0] - [1] -2024-08-07 16:56:33 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(743340038621083)): 1 -2024-08-07 16:56:33 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(743340038621083)): 1 -2024-08-07 16:56:33 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(743340038621083)#1] : 186720189 -2024-08-07 16:56:33 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(743340038621083)#1] : 512996852 -2024-08-07 16:56:33 - Extracted JDBC value [1] - [트러블메이커쿠키] -2024-08-07 16:56:33 - Extracted JDBC value [1] - [트러블메이커쿠키] -2024-08-07 16:56:33 - Extracted JDBC value [2] - [1234] -2024-08-07 16:56:33 - Extracted JDBC value [2] - [1234] -2024-08-07 16:56:33 - Extracted JDBC value [3] - [b74c4904-3a68-4f5f-80a2-67774ae63a02] -2024-08-07 16:56:33 - Extracted JDBC value [3] - [b74c4904-3a68-4f5f-80a2-67774ae63a02] -2024-08-07 16:56:33 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(743340038621083)#1 -2024-08-07 16:56:33 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(743340038621083)#1 -2024-08-07 16:56:33 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@49b54079 -2024-08-07 16:56:33 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@7999129b -2024-08-07 16:56:33 - Initiating transaction commit -2024-08-07 16:56:33 - Committing JPA transaction on EntityManager [SessionImpl(394552811<open>)] -2024-08-07 16:56:33 - committing -2024-08-07 16:56:33 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1087390324 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 16:56:33 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:56:33 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:56:33 - Writing [EventDetailResponse[eventName=트러블메이커쿠키]] -2024-08-07 16:56:33 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:56:33 - Completed 200 OK -2024-08-07 16:56:33 - Created new SQL alias : ba1_0 -2024-08-07 16:56:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(743339851445166))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 16:56:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2942e471] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 16:56:33 - Created new SQL alias : a1_0 -2024-08-07 16:56:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5907904f] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 16:56:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2942e471] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 16:56:33 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@117627bc -2024-08-07 16:56:33 - Created new SQL alias : e1_0 -2024-08-07 16:56:33 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@6f8efa4c -2024-08-07 16:56:33 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(743339851445166).action(743339851467625).event(743339851475791) : event) -2024-08-07 16:56:33 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(743339851445166)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(743339851445166).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(743339851445166).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(743339851445166).title] - -2024-08-07 16:56:33 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(743339851445166)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(743339851445166).action(743339851467625)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(743339851445166).action(743339851467625).event(743339851475791)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 16:56:33 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 16:56:33 - Initializer list: - server.haengdong.domain.action.BillAction(743339851445166).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(743339851445166).action)@1314200001 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@569186955) - server.haengdong.domain.action.BillAction(743339851445166) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(743339851445166))@543148293 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - server.haengdong.domain.action.BillAction(743339851445166).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(743339851445166).action.event)@1765064346 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@264841580) - -2024-08-07 16:56:33 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 16:56:33 - Created new SQL alias : ma1_0 -2024-08-07 16:56:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction(m))] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 16:56:33 - Created new SQL alias : a1_0 -2024-08-07 16:56:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7f5c412] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 16:56:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1bacdff8] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 16:56:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7b54f433] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 16:56:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7b54f433] for NavigablePath [server.haengdong.domain.action.MemberAction(m).action(743340018208000).event] overrode previous registration : org.hibernate.sql.ast.tree.from.LazyTableGroup@1bacdff8 -2024-08-07 16:56:33 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 16:56:33 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 16:56:33 - Determining mapping-model type for SqmPath : SqmEntityValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action(743340018208000).event) -2024-08-07 16:56:33 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction(m)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.MemberAction(m).action(743340018208000)] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction(m).status] - -2024-08-07 16:56:33 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction(m)) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction(m).action(743340018208000)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.MemberAction(m).action(743340018208000).event) { - } - join LazyTableGroup (e2 : server.haengdong.domain.action.MemberAction(m).action(743340018208000).event) { - } - } - } - } - } - } - } - -2024-08-07 16:56:33 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 16:56:33 - Initializer list: - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@788937901 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(743340018208000).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(743340018208000).event)@1088396865 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@264841580) - server.haengdong.domain.action.MemberAction(m).action(743340018208000) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(743340018208000))@485891845 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@228582918) - -2024-08-07 16:56:33 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 16:56:33 - Initiating transaction commit -2024-08-07 16:56:33 - Committing JPA transaction on EntityManager [SessionImpl(1674753934<open>)] -2024-08-07 16:56:33 - committing -2024-08-07 16:56:33 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1743597356 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 16:56:33 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 16:56:33 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:56:33 - Writing [StepsResponse[steps=[]]] -2024-08-07 16:56:33 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:56:33 - Completed 200 OK -2024-08-07 16:56:37 - RMI TCP Connection(3)-127.0.0.1: (port 64682) connection closed -2024-08-07 16:56:37 - RMI TCP Connection(1)-127.0.0.1: (port 64682) connection closed -2024-08-07 16:56:37 - RMI TCP Connection(2)-127.0.0.1: (port 64682) connection closed -2024-08-07 16:56:37 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=64688,localport=64682] -2024-08-07 16:56:37 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=64687,localport=64682] -2024-08-07 16:56:37 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=64683,localport=64682] -2024-08-07 16:56:37 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=64683,localport=64682] -2024-08-07 16:56:37 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=64688,localport=64682] -2024-08-07 16:56:37 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=64687,localport=64682] -2024-08-07 16:56:38 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:56:38 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:56:57 - OPTIONS "/api/events/b74c4904-3a68-4f5f-80a2-67774ae63a02/member-actions", parameters={} -2024-08-07 16:56:57 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 16:56:57 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:56:57 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 16:56:57 - Completed 200 OK -2024-08-07 16:56:57 - POST "/api/events/b74c4904-3a68-4f5f-80a2-67774ae63a02/member-actions", parameters={} -2024-08-07 16:56:57 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 16:56:57 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 16:56:57 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 16:56:57 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 16:56:57 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 16:56:57 - Completed 401 UNAUTHORIZED -2024-08-07 16:57:08 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:57:08 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:57:25 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:64694] -2024-08-07 16:57:25 - RMI TCP Connection(4)-127.0.0.1: (port 64682) op = 80 -2024-08-07 16:57:25 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:57:25 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:57:25 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:57:25 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:57:25 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-07 16:57:38 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:57:38 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:57:40 - RMI TCP Connection(4)-127.0.0.1: (port 64682) connection closed -2024-08-07 16:57:40 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=64694,localport=64682] -2024-08-07 16:57:40 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=64694,localport=64682] -2024-08-07 16:58:08 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:58:08 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:58:38 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:58:38 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:59:08 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:59:08 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 16:59:38 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 16:59:38 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:00:08 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:00:08 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:00:38 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:00:38 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:01:08 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:01:08 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:01:38 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:01:38 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:02:08 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:02:08 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:02:38 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:02:38 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:03:08 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:03:08 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:03:38 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:03:38 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:04:08 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:04:08 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:04:38 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:04:38 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:05:08 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:05:08 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:05:38 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:05:38 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:06:08 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:06:08 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:06:38 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:06:38 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:07:08 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:07:08 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:07:27 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 17:07:27 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Wed Aug 07 16:56:07 KST 2024 -2024-08-07 17:07:27 - Stopping beans in phase 2147483647 -2024-08-07 17:07:27 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 17:07:27 - Stopping beans in phase 2147482623 -2024-08-07 17:07:27 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 17:07:27 - Stopping beans in phase 2147481599 -2024-08-07 17:07:27 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 17:07:27 - Stopping beans in phase -2147483647 -2024-08-07 17:07:27 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 17:07:27 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 17:07:27 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 17:07:27 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 17:07:27 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 17:07:27 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 17:07:27 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 17:07:27 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 17:07:27 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 17:07:27 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 17:07:27 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 17:07:27 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 17:07:27 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 17:07:27 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 17:07:27 - Unregistering JMX-exposed beans on shutdown -2024-08-07 17:07:27 - Unregistering JMX-exposed beans -2024-08-07 17:07:27 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 17:07:27 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 17:07:27 - HHH000031: Closing -2024-08-07 17:07:27 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@5c566c9e] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@1b1d93e9] -2024-08-07 17:07:27 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 17:07:27 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 17:07:27 - HikariPool-1 - Shutdown initiated... -2024-08-07 17:07:27 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:07:27 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:07:27 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:07:27 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:07:27 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:07:27 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:07:27 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:07:27 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:07:27 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:07:27 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:07:27 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:07:27 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 17:07:27 - HikariPool-1 - Shutdown completed. -2024-08-07 17:07:27 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 17:07:28 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 17:07:28 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 17:07:28 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:07:28 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:07:28 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:07:28 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:07:28 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:07:28 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:07:28 - Loaded expression factory via original TCCL -2024-08-07 17:07:28 - Starting HaengdongApplication using Java 17.0.12 with PID 62759 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 17:07:28 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 17:07:28 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 17:07:28 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 17:07:28 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b -2024-08-07 17:07:28 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 17:07:28 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:07:28 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:07:28 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:07:28 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:07:28 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:07:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 17:07:28 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:07:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 17:07:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 17:07:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 17:07:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 17:07:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 17:07:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 17:07:28 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 17:07:28 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 17:07:28 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 17:07:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 17:07:28 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 17:07:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 17:07:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 17:07:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 17:07:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 17:07:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 17:07:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 17:07:29 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 17:07:29 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 17:07:29 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 17:07:29 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 17:07:29 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 17:07:29 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 17:07:29 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 17:07:29 - Finished Spring Data repository scanning in 16 ms. Found 4 JPA repository interfaces. -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 17:07:29 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 17:07:29 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 17:07:29 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 17:07:29 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 17:07:29 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 17:07:29 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 17:07:29 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 17:07:29 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 17:07:29 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@491cafec] -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 17:07:29 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 17:07:29 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 17:07:29 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 17:07:29 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 17:07:29 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 17:07:29 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 17:07:29 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 17:07:29 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 17:07:29 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:07:29 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:07:29 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:07:29 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 17:07:29 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 17:07:29 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 17:07:29 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 17:07:29 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 17:07:29 - Tomcat initialized with port 8080 (http) -2024-08-07 17:07:29 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@9690008] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@9690008] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.mapper.MapperListener@1a2e563e] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.mapper.MapperListener@1a2e563e] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 17:07:29 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 17:07:29 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@9690008] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@9690008] to [STARTING] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@9690008] to [STARTED] -2024-08-07 17:07:29 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 17:07:29 - Starting service [Tomcat] -2024-08-07 17:07:29 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 17:07:29 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 17:07:29 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.webresources.StandardRoot@26c7b1c6] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.webresources.StandardRoot@26c7b1c6] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.webresources.StandardRoot@26c7b1c6] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.webresources.DirResourceSet@70f148dc] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.webresources.DirResourceSet@70f148dc] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.webresources.DirResourceSet@70f148dc] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.webresources.DirResourceSet@70f148dc] to [STARTING] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.webresources.DirResourceSet@70f148dc] to [STARTED] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.webresources.StandardRoot@26c7b1c6] to [STARTING] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.webresources.StandardRoot@26c7b1c6] to [STARTED] -2024-08-07 17:07:29 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:07:29 - Starting this Loader -2024-08-07 17:07:29 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:07:29 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:07:29 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 17:07:29 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4662752a] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4662752a] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4662752a] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4662752a] to [STARTING] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4662752a] to [STARTED] -2024-08-07 17:07:29 - Initializing Spring embedded WebApplicationContext -2024-08-07 17:07:29 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 17:07:29 - Root WebApplicationContext: initialization completed in 611 ms -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 17:07:29 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 17:07:29 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 17:07:29 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 17:07:29 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:07:29 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 17:07:29 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 17:07:29 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 17:07:29 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 17:07:29 - HikariPool-1 - configuration: -2024-08-07 17:07:29 - allowPoolSuspension.............false -2024-08-07 17:07:29 - autoCommit......................true -2024-08-07 17:07:29 - catalog.........................none -2024-08-07 17:07:29 - connectionInitSql...............none -2024-08-07 17:07:29 - connectionTestQuery.............none -2024-08-07 17:07:29 - connectionTimeout...............30000 -2024-08-07 17:07:29 - dataSource......................none -2024-08-07 17:07:29 - dataSourceClassName.............none -2024-08-07 17:07:29 - dataSourceJNDI..................none -2024-08-07 17:07:29 - dataSourceProperties............{password=<masked>} -2024-08-07 17:07:29 - driverClassName................."org.h2.Driver" -2024-08-07 17:07:29 - exceptionOverrideClassName......none -2024-08-07 17:07:29 - healthCheckProperties...........{} -2024-08-07 17:07:29 - healthCheckRegistry.............none -2024-08-07 17:07:29 - idleTimeout.....................600000 -2024-08-07 17:07:29 - initializationFailTimeout.......1 -2024-08-07 17:07:29 - isolateInternalQueries..........false -2024-08-07 17:07:29 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 17:07:29 - keepaliveTime...................0 -2024-08-07 17:07:29 - leakDetectionThreshold..........0 -2024-08-07 17:07:29 - maxLifetime.....................1800000 -2024-08-07 17:07:29 - maximumPoolSize.................10 -2024-08-07 17:07:29 - metricRegistry..................none -2024-08-07 17:07:29 - metricsTrackerFactory...........none -2024-08-07 17:07:29 - minimumIdle.....................10 -2024-08-07 17:07:29 - password........................<masked> -2024-08-07 17:07:29 - poolName........................"HikariPool-1" -2024-08-07 17:07:29 - readOnly........................false -2024-08-07 17:07:29 - registerMbeans..................false -2024-08-07 17:07:29 - scheduledExecutor...............none -2024-08-07 17:07:29 - schema..........................none -2024-08-07 17:07:29 - threadFactory...................internal -2024-08-07 17:07:29 - transactionIsolation............default -2024-08-07 17:07:29 - username........................"sa" -2024-08-07 17:07:29 - validationTimeout...............5000 -2024-08-07 17:07:29 - HikariPool-1 - Starting... -2024-08-07 17:07:29 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 17:07:29 - HikariPool-1 - Start completed. -2024-08-07 17:07:29 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 17:07:29 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 17:07:29 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:07:29 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 17:07:29 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:07:29 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:64904] -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 84 -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:29 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 17:07:29 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:29 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:07:29 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 17:07:29 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 17:07:29 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 17:07:29 - [javax.management.remote.rmi.RMIConnectionImpl@254c3a9f: connectionId=rmi://127.0.0.1 1] closing. -2024-08-07 17:07:29 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 17:07:29 - [javax.management.remote.rmi.RMIConnectionImpl@254c3a9f: connectionId=rmi://127.0.0.1 1] closed. -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 17:07:29 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@2f07930a] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@2f07930a] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@2f07930a] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@2f07930a] to [STARTING] -2024-08-07 17:07:29 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@2f07930a] to [STARTED] -2024-08-07 17:07:29 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:07:29 - Filter 'requestContextFilter' configured for use -2024-08-07 17:07:29 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 17:07:29 - Filter 'characterEncodingFilter' configured for use -2024-08-07 17:07:29 - Filter 'formContentFilter' configured for use -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:07:29 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:07:29 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:07:29 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 17:07:29 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.mapper.MapperListener@1a2e563e] to [STARTING_PREP] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.mapper.MapperListener@1a2e563e] to [STARTING] -2024-08-07 17:07:29 - Registered host [localhost] -2024-08-07 17:07:29 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 17:07:29 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 17:07:29 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 17:07:29 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 17:07:29 - Setting state for [org.apache.catalina.mapper.MapperListener@1a2e563e] to [STARTED] -2024-08-07 17:07:29 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 17:07:29 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 17:07:29 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 17:07:29 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:07:29 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@6e33c391' -2024-08-07 17:07:29 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 17:07:29 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 17:07:29 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 17:07:29 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@6e33c391' -2024-08-07 17:07:29 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:07:29 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 17:07:29 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 17:07:29 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 17:07:29 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 17:07:29 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 17:07:29 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 17:07:29 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 17:07:29 - HHH000206: 'hibernate.properties' not found -2024-08-07 17:07:29 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 17:07:29 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 17:07:29 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 17:07:29 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 17:07:29 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 17:07:29 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 17:07:29 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 17:07:29 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 17:07:29 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 17:07:29 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 17:07:29 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 17:07:29 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 17:07:29 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 17:07:29 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 17:07:29 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 17:07:29 - HHH000026: Second-level cache disabled -2024-08-07 17:07:29 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 17:07:29 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 17:07:29 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 17:07:29 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 17:07:29 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 17:07:29 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 17:07:29 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 17:07:29 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 17:07:29 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 17:07:29 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 17:07:29 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 17:07:29 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 17:07:29 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 17:07:29 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 17:07:29 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 17:07:29 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 17:07:29 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 17:07:29 - Adding type registration image -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 17:07:29 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 17:07:29 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 17:07:29 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 17:07:29 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 17:07:29 - Adding type registration short -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 17:07:29 - Adding type registration short -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 17:07:29 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 17:07:29 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 17:07:29 - Adding type registration int -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 17:07:29 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 17:07:29 - Adding type registration long -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 17:07:29 - Adding type registration long -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 17:07:29 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 17:07:29 - Adding type registration float -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 17:07:29 - Adding type registration float -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 17:07:29 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 17:07:29 - Adding type registration double -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 17:07:29 - Adding type registration double -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 17:07:29 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 17:07:29 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 17:07:29 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 17:07:29 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 17:07:29 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 17:07:29 - Adding type registration character -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 17:07:29 - Adding type registration char -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 17:07:29 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 17:07:29 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 17:07:29 - Adding type registration string -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 17:07:29 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 17:07:29 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 17:07:29 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 17:07:29 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 17:07:29 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 17:07:29 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 17:07:29 - Adding type registration text -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 17:07:29 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 17:07:29 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 17:07:29 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 17:07:29 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 17:07:29 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 17:07:29 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 17:07:29 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 17:07:29 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 17:07:29 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 17:07:29 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 17:07:29 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 17:07:29 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 17:07:29 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 17:07:29 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 17:07:29 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 17:07:29 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 17:07:29 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 17:07:29 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 17:07:29 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 17:07:29 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 17:07:29 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 17:07:29 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 17:07:29 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 17:07:29 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 17:07:29 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 17:07:29 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 17:07:29 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 17:07:29 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 17:07:29 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 17:07:29 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 17:07:29 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 17:07:29 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 17:07:29 - Adding type registration date -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 17:07:29 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 17:07:29 - Adding type registration time -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 17:07:29 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 17:07:29 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 17:07:29 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 17:07:29 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 17:07:29 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 17:07:29 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 17:07:29 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 17:07:29 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 17:07:29 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 17:07:29 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 17:07:29 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 17:07:29 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 17:07:29 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 17:07:29 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 17:07:29 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 17:07:29 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 17:07:29 - Adding type registration class -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 17:07:29 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 17:07:29 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 17:07:29 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 17:07:29 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 17:07:29 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 17:07:29 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 17:07:29 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 17:07:29 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 17:07:29 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 17:07:29 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 17:07:29 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 17:07:29 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 17:07:29 - Adding type registration url -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-07 17:07:29 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-07 17:07:29 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 17:07:29 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-07 17:07:29 - Adding type registration object -> org.hibernate.type.JavaObjectType@6ffbf0ac -2024-08-07 17:07:29 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@6ffbf0ac -2024-08-07 17:07:29 - Adding type registration null -> org.hibernate.type.NullType@1d9bd1d6 -2024-08-07 17:07:29 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@18ac4af6 -2024-08-07 17:07:29 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@117fb9ba -2024-08-07 17:07:29 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@2b1d1a5 -2024-08-07 17:07:29 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@41e7a544 -2024-08-07 17:07:29 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@3b66ac74 -2024-08-07 17:07:29 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@573870cb -2024-08-07 17:07:29 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@5b88af70 -2024-08-07 17:07:29 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@2739ecc0 -2024-08-07 17:07:29 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@395eb363] into BootstrapContext; was [null] -2024-08-07 17:07:29 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@395eb363) [was null] -2024-08-07 17:07:29 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@8b1202a] into BootstrapContext; was [null] -2024-08-07 17:07:29 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@34bddf43] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@57839834] -2024-08-07 17:07:29 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 17:07:29 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 17:07:29 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 17:07:29 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 17:07:29 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 17:07:29 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@395eb363] -2024-08-07 17:07:29 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@395eb363] -2024-08-07 17:07:29 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-07 17:07:29 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 17:07:29 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 17:07:29 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 17:07:29 - JDBC version : 4.2 -2024-08-07 17:07:29 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 17:07:29 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 17:07:29 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 17:07:29 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 17:07:29 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 17:07:29 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 17:07:29 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 17:07:29 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 17:07:29 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 17:07:29 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 17:07:29 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 17:07:29 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@2e4d2232] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@24f5e9e8] -2024-08-07 17:07:29 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-07 17:07:29 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 17:07:29 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 17:07:29 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 17:07:29 - Import with entity name Action -2024-08-07 17:07:29 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 17:07:29 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:07:29 - Binding column: AnnotatedColumn() -2024-08-07 17:07:29 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:07:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:07:29 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:07:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 17:07:29 - building BasicValue for id -2024-08-07 17:07:29 - Skipping column re-registration: action.id -2024-08-07 17:07:29 - Building property id -2024-08-07 17:07:29 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:07:29 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:07:29 - Binding column: AnnotatedColumn() -2024-08-07 17:07:29 - Building property event -2024-08-07 17:07:29 - Binding column: AnnotatedColumn() -2024-08-07 17:07:29 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 17:07:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 17:07:29 - building BasicValue for sequence -2024-08-07 17:07:29 - Skipping column re-registration: action.sequence -2024-08-07 17:07:29 - Building property sequence -2024-08-07 17:07:29 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:07:29 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 17:07:29 - Import with entity name BillAction -2024-08-07 17:07:29 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 17:07:29 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:07:29 - Binding column: AnnotatedColumn() -2024-08-07 17:07:29 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:07:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:07:29 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:07:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 17:07:29 - building BasicValue for id -2024-08-07 17:07:29 - Skipping column re-registration: bill_action.id -2024-08-07 17:07:29 - Building property id -2024-08-07 17:07:29 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:07:29 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:07:29 - Binding column: AnnotatedColumn() -2024-08-07 17:07:29 - Building property action -2024-08-07 17:07:29 - Binding column: AnnotatedColumn() -2024-08-07 17:07:29 - MetadataSourceProcessor property price with lazy=false -2024-08-07 17:07:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 17:07:29 - building BasicValue for price -2024-08-07 17:07:29 - Skipping column re-registration: bill_action.price -2024-08-07 17:07:29 - Building property price -2024-08-07 17:07:29 - Binding column: AnnotatedColumn() -2024-08-07 17:07:29 - MetadataSourceProcessor property title with lazy=false -2024-08-07 17:07:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 17:07:29 - building BasicValue for title -2024-08-07 17:07:29 - Skipping column re-registration: bill_action.title -2024-08-07 17:07:29 - Building property title -2024-08-07 17:07:29 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:07:29 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 17:07:29 - Import with entity name MemberAction -2024-08-07 17:07:29 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 17:07:29 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:07:29 - Binding column: AnnotatedColumn() -2024-08-07 17:07:29 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:07:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:07:29 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:07:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 17:07:29 - building BasicValue for id -2024-08-07 17:07:29 - Skipping column re-registration: member_action.id -2024-08-07 17:07:29 - Building property id -2024-08-07 17:07:29 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:07:29 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:07:29 - Binding column: AnnotatedColumn() -2024-08-07 17:07:29 - Building property action -2024-08-07 17:07:29 - Binding column: AnnotatedColumn() -2024-08-07 17:07:29 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 17:07:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 17:07:29 - building BasicValue for memberGroupId -2024-08-07 17:07:29 - Skipping column re-registration: member_action.member_group_id -2024-08-07 17:07:29 - Building property memberGroupId -2024-08-07 17:07:29 - Binding column: AnnotatedColumn() -2024-08-07 17:07:29 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 17:07:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 17:07:29 - building BasicValue for memberName -2024-08-07 17:07:29 - Skipping column re-registration: member_action.member_name -2024-08-07 17:07:29 - Building property memberName -2024-08-07 17:07:29 - Binding column: AnnotatedColumn() -2024-08-07 17:07:29 - MetadataSourceProcessor property status with lazy=false -2024-08-07 17:07:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 17:07:29 - building BasicValue for status -2024-08-07 17:07:29 - Skipping column re-registration: member_action.status -2024-08-07 17:07:29 - Building property status -2024-08-07 17:07:29 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:07:29 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 17:07:29 - Import with entity name Event -2024-08-07 17:07:29 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 17:07:29 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:07:29 - Binding column: AnnotatedColumn() -2024-08-07 17:07:29 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:07:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:07:29 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:07:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 17:07:29 - building BasicValue for id -2024-08-07 17:07:29 - Skipping column re-registration: event.id -2024-08-07 17:07:29 - Building property id -2024-08-07 17:07:29 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:07:29 - Binding column: AnnotatedColumn() -2024-08-07 17:07:29 - MetadataSourceProcessor property name with lazy=false -2024-08-07 17:07:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 17:07:29 - building BasicValue for name -2024-08-07 17:07:29 - Skipping column re-registration: event.name -2024-08-07 17:07:29 - Building property name -2024-08-07 17:07:29 - Binding column: AnnotatedColumn() -2024-08-07 17:07:29 - MetadataSourceProcessor property password with lazy=false -2024-08-07 17:07:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 17:07:29 - building BasicValue for password -2024-08-07 17:07:29 - Skipping column re-registration: event.password -2024-08-07 17:07:29 - Building property password -2024-08-07 17:07:29 - Binding column: AnnotatedColumn() -2024-08-07 17:07:29 - MetadataSourceProcessor property token with lazy=false -2024-08-07 17:07:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 17:07:29 - building BasicValue for token -2024-08-07 17:07:29 - Skipping column re-registration: event.token -2024-08-07 17:07:29 - Building property token -2024-08-07 17:07:29 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 17:07:29 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 17:07:29 - Import with entity name EventStep -2024-08-07 17:07:29 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 17:07:29 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:07:29 - Binding column: AnnotatedColumn() -2024-08-07 17:07:29 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:07:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:07:29 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:07:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 17:07:29 - building BasicValue for id -2024-08-07 17:07:29 - Skipping column re-registration: event_step.id -2024-08-07 17:07:29 - Building property id -2024-08-07 17:07:29 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:07:29 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:07:29 - Binding column: AnnotatedColumn() -2024-08-07 17:07:29 - Building property event -2024-08-07 17:07:29 - Binding column: AnnotatedColumn() -2024-08-07 17:07:29 - MetadataSourceProcessor property name with lazy=false -2024-08-07 17:07:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 17:07:29 - building BasicValue for name -2024-08-07 17:07:29 - Skipping column re-registration: event_step.name -2024-08-07 17:07:29 - Building property name -2024-08-07 17:07:29 - Binding column: AnnotatedColumn() -2024-08-07 17:07:29 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 17:07:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 17:07:29 - building BasicValue for sequence -2024-08-07 17:07:29 - Skipping column re-registration: event_step.sequence -2024-08-07 17:07:29 - Building property sequence -2024-08-07 17:07:29 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 17:07:29 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 17:07:29 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:07:29 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 17:07:29 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 17:07:29 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:07:29 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 17:07:29 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 17:07:29 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:07:29 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 17:07:29 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 17:07:29 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 17:07:29 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:07:29 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 17:07:29 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 17:07:29 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 17:07:29 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:07:29 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 17:07:29 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 17:07:29 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 17:07:29 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 17:07:29 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 17:07:29 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 17:07:29 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 17:07:29 - Building session factory -2024-08-07 17:07:29 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:07:29 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@5c7a06ec, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@697b48e4, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.8062617196326812423, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=62759, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.8062617196326812423, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@137d04d8, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 17:07:29 - Session factory constructed with filter configurations : {} -2024-08-07 17:07:29 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:07:29 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:07:29 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:07:29 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:07:29 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:07:29 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:07:29 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 17:07:29 - Loaded expression factory via original TCCL -2024-08-07 17:07:29 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 17:07:29 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:07:29 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:07:29 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:07:29 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:07:29 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:07:29 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:07:29 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:07:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:07:29 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:07:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:07:29 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:07:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:07:29 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:07:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:07:29 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:07:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:07:29 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@5c43cb12] under count; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@5eae392d] under every; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@4cd1716d] under any; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7de43652] under sinh; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7fe0ca60] under cosh; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@fdf029a] under tanh; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@63896cf7] under pi; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3f838072] under log; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 17:07:29 - Registering alternate key : length -> character_length -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@3dc7c5fd] under position; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@c7443f] under overlay; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@e2344da] under trim; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@2a7392a3] under cast; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2fc0ad21] under collate; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@7901a5ab] under extract; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@3e24bab6] under ifnull; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@391e2a] under pad; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@25dc2c0] under str; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@309e7215] under format; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@149238fe] under timestampadd; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@7dbbf730] under timestampdiff; prior registration was null -2024-08-07 17:07:29 - Registering alternate key : dateadd -> timestampadd -2024-08-07 17:07:29 - Registering alternate key : datediff -> timestampdiff -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16732340] under current_date; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@38e052b2] under current_time; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7fa68ff4] under current_timestamp; prior registration was null -2024-08-07 17:07:29 - Registering alternate key : current date -> current_date -2024-08-07 17:07:29 - Registering alternate key : current time -> current_time -2024-08-07 17:07:29 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@515fff35] under local_date; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5eb9bf7d] under local_time; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@64f613da] under local_datetime; prior registration was null -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2f64f99f] under offset_datetime; prior registration was null -2024-08-07 17:07:29 - Registering alternate key : local date -> local_date -2024-08-07 17:07:29 - Registering alternate key : local time -> local_time -2024-08-07 17:07:29 - Registering alternate key : local datetime -> local_datetime -2024-08-07 17:07:29 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 17:07:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16c1d11] under instant; prior registration was null -2024-08-07 17:07:29 - Registering alternate key : current_instant -> instant -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@2fc40856] under sql; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@5543d800] under count; prior registration was org.hibernate.dialect.function.CountFunction@5c43cb12 -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@1c25deb0] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@63896cf7 -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1be12e05] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 17:07:30 - Registering alternate key : day -> day_of_month -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@5eb9bf7d -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@64f613da -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@37ab1b10] under trunc; prior registration was null -2024-08-07 17:07:30 - Registering alternate key : truncate -> trunc -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@55d87b73] under date_trunc; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 17:07:30 - Registering alternate key : chr -> char -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@618e7761] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@3dc7c5fd -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5b643d6e] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 17:07:30 - Registering alternate key : every -> bool_and -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 17:07:30 - Registering alternate key : any -> bool_or -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@34f8ce89] under format; prior registration was org.hibernate.dialect.function.FormatFunction@309e7215 -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@73230721] under listagg; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@31f9f9b3] under mode; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@7730da00] under percentile_cont; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@52d01430] under percentile_disc; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@62264d4f] under rank; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@2bc0603f] under dense_rank; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@4ed19540] under percent_rank; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@533e8807] under cume_dist; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@6aa18912] under array; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@5c20505f] under array_list; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@1a712f12] under array_agg; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@1e4a4ed5] under array_position; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@76219fe] under array_positions; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@5b86f4cb] under array_positions_list; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@468646ea] under array_length; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@46051269] under array_concat; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@61d24347] under array_prepend; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@347f8029] under array_append; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@4880a9d] under array_contains; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@48f2d51d] under array_contains_nullable; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@73905dff] under array_overlaps; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@5c0d3715] under array_overlaps_nullable; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@75507e68] under array_get; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@7c07023] under array_set; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@396c1228] under array_remove; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@32f45e15] under array_remove_index; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4e7151b3] under array_slice; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@1ba98508] under array_replace; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4b552b13] under array_trim; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@72c175f1] under array_fill; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@9fd3b61] under array_fill_list; prior registration was null -2024-08-07 17:07:30 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@78a34c47] under array_to_string; prior registration was null -2024-08-07 17:07:30 - abs(NUMERIC arg) -2024-08-07 17:07:30 - Double acos(NUMERIC arg) -2024-08-07 17:07:30 - Boolean any(BOOLEAN predicate) -2024-08-07 17:07:30 - array( ... ) -2024-08-07 17:07:30 - array_agg(arg) -2024-08-07 17:07:30 - array_append( ... ) -2024-08-07 17:07:30 - array_concat( ... ) -2024-08-07 17:07:30 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 17:07:30 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 17:07:30 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 17:07:30 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 17:07:30 - array_get(ARRAY array, INTEGER index) -2024-08-07 17:07:30 - Integer array_length(ARRAY array) -2024-08-07 17:07:30 - array_list( ... ) -2024-08-07 17:07:30 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 17:07:30 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 17:07:30 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 17:07:30 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 17:07:30 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 17:07:30 - array_prepend( ... ) -2024-08-07 17:07:30 - array_remove( ... ) -2024-08-07 17:07:30 - array_remove_index( ... ) -2024-08-07 17:07:30 - array_replace( ... ) -2024-08-07 17:07:30 - array_set( ... ) -2024-08-07 17:07:30 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 17:07:30 - String array_to_string( ... ) -2024-08-07 17:07:30 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 17:07:30 - Integer ascii(STRING arg) -2024-08-07 17:07:30 - Double asin(NUMERIC arg) -2024-08-07 17:07:30 - Double atan(NUMERIC arg) -2024-08-07 17:07:30 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 17:07:30 - avg(NUMERIC arg) -2024-08-07 17:07:30 - bit_and(arg) -2024-08-07 17:07:30 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 17:07:30 - bit_or(arg) -2024-08-07 17:07:30 - bitand(arg0, arg1) -2024-08-07 17:07:30 - bitnot(arg) -2024-08-07 17:07:30 - bitor(arg0, arg1) -2024-08-07 17:07:30 - bitxor(arg0, arg1) -2024-08-07 17:07:30 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 17:07:30 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 17:07:30 - cast(arg as Type) -2024-08-07 17:07:30 - ceiling(NUMERIC arg) -2024-08-07 17:07:30 - Character char(INTEGER arg) -2024-08-07 17:07:30 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 17:07:30 - Character chr(INTEGER arg) -2024-08-07 17:07:30 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 17:07:30 - String collate(STRING string as COLLATION collation) -2024-08-07 17:07:30 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 17:07:30 - Double cos(NUMERIC arg) -2024-08-07 17:07:30 - Double cosh(NUMERIC arg) -2024-08-07 17:07:30 - Double cot(NUMERIC arg) -2024-08-07 17:07:30 - Long count([distinct ]{arg|*}) -2024-08-07 17:07:30 - Double cume_dist([arg0[, ...]]) -2024-08-07 17:07:30 - Date curdate() -2024-08-07 17:07:30 - Date current date -2024-08-07 17:07:30 - Time current time -2024-08-07 17:07:30 - Timestamp current timestamp -2024-08-07 17:07:30 - Date current_date -2024-08-07 17:07:30 - Instant current_instant -2024-08-07 17:07:30 - Time current_time -2024-08-07 17:07:30 - Timestamp current_timestamp -2024-08-07 17:07:30 - Time curtime() -2024-08-07 17:07:30 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 17:07:30 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 17:07:30 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 17:07:30 - Integer day(DATE arg) -2024-08-07 17:07:30 - Integer day_of_month(DATE arg) -2024-08-07 17:07:30 - Integer day_of_week(DATE arg) -2024-08-07 17:07:30 - Integer day_of_year(DATE arg) -2024-08-07 17:07:30 - String dayname(DATE arg) -2024-08-07 17:07:30 - Double degrees(NUMERIC arg) -2024-08-07 17:07:30 - Long dense_rank([arg0[, ...]]) -2024-08-07 17:07:30 - Boolean every(BOOLEAN predicate) -2024-08-07 17:07:30 - Double exp(NUMERIC arg) -2024-08-07 17:07:30 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 17:07:30 - first_valueANY value -2024-08-07 17:07:30 - floor(NUMERIC arg) -2024-08-07 17:07:30 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 17:07:30 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 17:07:30 - Integer hour(TIME arg) -2024-08-07 17:07:30 - ifnull(arg0, arg1) -2024-08-07 17:07:30 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 17:07:30 - Instant instant -2024-08-07 17:07:30 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 17:07:30 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 17:07:30 - last_valueANY value -2024-08-07 17:07:30 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 17:07:30 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 17:07:30 - String left(STRING string, INTEGER length) -2024-08-07 17:07:30 - Integer length(STRING_OR_CLOB arg) -2024-08-07 17:07:30 - String listagg(STRING arg0, STRING arg1) -2024-08-07 17:07:30 - Double ln(NUMERIC arg) -2024-08-07 17:07:30 - LocalDate local date -2024-08-07 17:07:30 - LocalDateTime local datetime -2024-08-07 17:07:30 - LocalTime local time -2024-08-07 17:07:30 - LocalDate local_date -2024-08-07 17:07:30 - LocalDateTime local_datetime -2024-08-07 17:07:30 - LocalTime local_time -2024-08-07 17:07:30 - Time localtime -2024-08-07 17:07:30 - Timestamp localtimestamp -2024-08-07 17:07:30 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 17:07:30 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 17:07:30 - Double log10(NUMERIC arg) -2024-08-07 17:07:30 - String lower(STRING string) -2024-08-07 17:07:30 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 17:07:30 - String ltrim(STRING string) -2024-08-07 17:07:30 - max(COMPARABLE arg) -2024-08-07 17:07:30 - Double median(NUMERIC arg) -2024-08-07 17:07:30 - Integer microsecond(TIME arg) -2024-08-07 17:07:30 - min(COMPARABLE arg) -2024-08-07 17:07:30 - Integer minute(TIME arg) -2024-08-07 17:07:30 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 17:07:30 - mode() -2024-08-07 17:07:30 - Integer month(DATE arg) -2024-08-07 17:07:30 - String monthname(DATE arg) -2024-08-07 17:07:30 - Timestamp now() -2024-08-07 17:07:30 - nth_valueANY value, INTEGER nth -2024-08-07 17:07:30 - nullif(arg0, arg1) -2024-08-07 17:07:30 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 17:07:30 - OffsetDateTime offset datetime -2024-08-07 17:07:30 - OffsetDateTime offset_datetime -2024-08-07 17:07:30 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 17:07:30 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 17:07:30 - Double percent_rank([arg0[, ...]]) -2024-08-07 17:07:30 - percentile_cont(NUMERIC arg) -2024-08-07 17:07:30 - percentile_disc(NUMERIC arg) -2024-08-07 17:07:30 - Double pi -2024-08-07 17:07:30 - Integer position(STRING pattern in STRING string) -2024-08-07 17:07:30 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 17:07:30 - Integer quarter(DATE arg) -2024-08-07 17:07:30 - Double radians(NUMERIC arg) -2024-08-07 17:07:30 - Double rand([INTEGER seed]) -2024-08-07 17:07:30 - Long rank([arg0[, ...]]) -2024-08-07 17:07:30 - String repeat(STRING string, INTEGER times) -2024-08-07 17:07:30 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 17:07:30 - String right(STRING string, INTEGER length) -2024-08-07 17:07:30 - round(NUMERIC number[, INTEGER places]) -2024-08-07 17:07:30 - Long row_number() -2024-08-07 17:07:30 - Long rownum() -2024-08-07 17:07:30 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 17:07:30 - String rtrim(STRING string) -2024-08-07 17:07:30 - Integer second(TIME arg) -2024-08-07 17:07:30 - Integer sign(NUMERIC arg) -2024-08-07 17:07:30 - Double sin(NUMERIC arg) -2024-08-07 17:07:30 - Double sinh(NUMERIC arg) -2024-08-07 17:07:30 - String soundex(arg) -2024-08-07 17:07:30 - String space(INTEGER arg) -2024-08-07 17:07:30 - Object sql -2024-08-07 17:07:30 - Double sqrt(NUMERIC arg) -2024-08-07 17:07:30 - Double stddev_pop(NUMERIC arg) -2024-08-07 17:07:30 - Double stddev_samp(NUMERIC arg) -2024-08-07 17:07:30 - String str(arg) -2024-08-07 17:07:30 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 17:07:30 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 17:07:30 - sum(arg) -2024-08-07 17:07:30 - Timestamp sysdate -2024-08-07 17:07:30 - Double tan(NUMERIC arg) -2024-08-07 17:07:30 - Double tanh(NUMERIC arg) -2024-08-07 17:07:30 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 17:07:30 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 17:07:30 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 17:07:30 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 17:07:30 - trunc( ... ) -2024-08-07 17:07:30 - truncate( ... ) -2024-08-07 17:07:30 - String upper(STRING string) -2024-08-07 17:07:30 - Double var_pop(NUMERIC arg) -2024-08-07 17:07:30 - Double var_samp(NUMERIC arg) -2024-08-07 17:07:30 - Integer week(DATE arg) -2024-08-07 17:07:30 - Integer year(DATE arg) -2024-08-07 17:07:30 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 17:07:30 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 17:07:30 - Starting QueryInterpretationCache(2048) -2024-08-07 17:07:30 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:07:30 - Configured EntityCopyObserver strategy: disallow -2024-08-07 17:07:30 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 17:07:30 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 17:07:30 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:07:30 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:07:30 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:07:30 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 17:07:30 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:07:30 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:07:30 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 17:07:30 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:07:30 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:07:30 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 17:07:30 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:07:30 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:07:30 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 17:07:30 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:07:30 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:07:30 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 17:07:30 - Starting post-init callbacks -2024-08-07 17:07:30 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 17:07:30 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 17:07:30 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 17:07:30 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 17:07:30 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 17:07:30 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 17:07:30 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 17:07:30 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 17:07:30 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 17:07:30 - Created new SQL alias : ba1_0 -2024-08-07 17:07:30 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:07:30 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@737ae41a] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:07:30 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 17:07:30 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 17:07:30 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 17:07:30 - Version select: select id from bill_action where id=? -2024-08-07 17:07:30 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 17:07:30 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 17:07:30 - Delete (0): delete from bill_action where id=? -2024-08-07 17:07:30 - Created new SQL alias : ma1_0 -2024-08-07 17:07:30 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 17:07:30 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@69374e28] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 17:07:30 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 17:07:30 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 17:07:30 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 17:07:30 - Version select: select id from member_action where id=? -2024-08-07 17:07:30 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 17:07:30 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 17:07:30 - Delete (0): delete from member_action where id=? -2024-08-07 17:07:30 - Created new SQL alias : e1_0 -2024-08-07 17:07:30 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:07:30 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 17:07:30 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:07:30 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 17:07:30 - Version select: select id from event where id=? -2024-08-07 17:07:30 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 17:07:30 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 17:07:30 - Delete (0): delete from event where id=? -2024-08-07 17:07:30 - Created new SQL alias : a1_0 -2024-08-07 17:07:30 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 17:07:30 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@288e50c1] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 17:07:30 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 17:07:30 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 17:07:30 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 17:07:30 - Version select: select id from action where id=? -2024-08-07 17:07:30 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 17:07:30 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 17:07:30 - Delete (0): delete from action where id=? -2024-08-07 17:07:30 - Created new SQL alias : es1_0 -2024-08-07 17:07:30 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 17:07:30 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7fba30fe] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 82 -2024-08-07 17:07:30 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 17:07:30 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 17:07:30 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 17:07:30 - Version select: select id from event_step where id=? -2024-08-07 17:07:30 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 17:07:30 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 17:07:30 - Delete (0): delete from event_step where id=? -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 84 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:30 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:30 - [javax.management.remote.rmi.RMIConnectionImpl@19da584b: connectionId=rmi://127.0.0.1 2] closing. -2024-08-07 17:07:30 - [javax.management.remote.rmi.RMIConnectionImpl@19da584b: connectionId=rmi://127.0.0.1 2] closed. -2024-08-07 17:07:30 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 17:07:30 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@2e4d2232] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@129b0ed] -2024-08-07 17:07:30 - Checking 0 named HQL queries -2024-08-07 17:07:30 - Checking 0 named SQL queries -2024-08-07 17:07:30 - - drop table if exists action cascade -2024-08-07 17:07:30 - - drop table if exists bill_action cascade -2024-08-07 17:07:30 - - drop table if exists event cascade -2024-08-07 17:07:30 - - drop table if exists event_step cascade -2024-08-07 17:07:30 - - drop table if exists member_action cascade -2024-08-07 17:07:30 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 17:07:30 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 17:07:30 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 17:07:30 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 17:07:30 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 17:07:30 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 17:07:30 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 17:07:30 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 17:07:30 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 17:07:30 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@35bb3fea -2024-08-07 17:07:30 - Registering SessionFactory: 185c931b-e3ef-49e0-aa1e-91b92affd500 (<unnamed>) -2024-08-07 17:07:30 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 17:07:30 - Instantiated SessionFactory -2024-08-07 17:07:30 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'actionService' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 17:07:30 - Initializing JpaMetamodelMappingContext… -2024-08-07 17:07:30 - Finished initializing JpaMetamodelMappingContext -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - Statistics initialized [enabled=false] -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 17:07:30 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 17:07:30 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 17:07:30 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:07:30 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - Looking up named query BillAction.findByAction_Event -2024-08-07 17:07:30 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:07:30 - Did not find named query BillAction.findByAction_Event -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - Looking up named query BillAction.findByAction_Id -2024-08-07 17:07:30 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:07:30 - Did not find named query BillAction.findByAction_Id -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 17:07:30 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:07:30 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 17:07:30 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:07:30 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 17:07:30 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:07:30 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 17:07:30 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 17:07:30 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:07:30 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 17:07:30 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:07:30 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 17:07:30 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 17:07:30 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 17:07:30 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 17:07:30 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:07:30 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 17:07:30 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:07:30 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(744021637173083)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(744021637173083)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(744021637173083)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(744021637173083)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(744021637173083).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:07:30 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:07:30 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 17:07:30 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:07:30 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:07:30 - Looking up named query MemberAction.findByAction -2024-08-07 17:07:30 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:07:30 - Did not find named query MemberAction.findByAction -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - Looking up named query Event.findByToken -2024-08-07 17:07:30 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:07:30 - Did not find named query Event.findByToken -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 17:07:30 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 17:07:30 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:07:30 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:07:30 - Did not find named query Action.findLastByEvent.count -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 17:07:30 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:07:30 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:07:30 - Looking up named query Action.findByIdAndEvent -2024-08-07 17:07:30 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:07:30 - Did not find named query Action.findByIdAndEvent -2024-08-07 17:07:30 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:07:30 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 17:07:30 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 17:07:30 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 17:07:30 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'eventService' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 17:07:30 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 17:07:30 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 17:07:30 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 17:07:30 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 17:07:30 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 17:07:30 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 17:07:30 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:07:30 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 17:07:30 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 17:07:30 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 17:07:30 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'actionController' -2024-08-07 17:07:30 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 17:07:30 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'eventController' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'authService' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 17:07:30 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 17:07:30 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 17:07:30 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 17:07:30 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 17:07:30 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:07:30 - Loaded expression factory via original TCCL -2024-08-07 17:07:30 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 17:07:30 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 17:07:30 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:07:30 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 17:07:30 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:07:30 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:07:30 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:07:30 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:07:30 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:07:30 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:07:30 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:07:30 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:07:30 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:07:30 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:07:30 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'error' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 17:07:30 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@6e33c391' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@6e33c391' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 17:07:30 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 17:07:30 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 17:07:30 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 17:07:30 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:07:30 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:07:30 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 17:07:30 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:07:30 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:07:30 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 17:07:30 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:07:30 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:07:30 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:07:30 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 17:07:30 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 17:07:30 - - s.h.p.EventController: - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) -2024-08-07 17:07:30 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 17:07:30 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 17:07:30 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 17:07:30 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:07:30 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 17:07:30 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:07:30 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:07:30 - 'beanNameHandlerMapping' {} -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 17:07:30 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:07:30 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 17:07:30 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 17:07:30 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:07:30 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:07:30 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 17:07:30 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:07:30 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 17:07:30 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 17:07:30 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 17:07:30 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:07:30 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:07:30 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:07:30 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 17:07:30 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:07:30 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 17:07:30 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 17:07:30 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 17:07:30 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 17:07:30 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 17:07:30 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 17:07:30 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 17:07:30 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:07:30 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 17:07:30 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 17:07:30 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@6e33c391' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 17:07:30 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 17:07:30 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 17:07:30 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:07:30 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 17:07:30 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:07:30 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 17:07:30 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 17:07:30 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 17:07:30 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 17:07:30 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 17:07:30 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 17:07:30 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 17:07:30 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 82 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 82 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 82 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 84 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 82 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 82 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:30 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 82 -2024-08-07 17:07:30 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:30 - [javax.management.remote.rmi.RMIConnectionImpl@773c375: connectionId=rmi://127.0.0.1 3] closing. -2024-08-07 17:07:30 - [javax.management.remote.rmi.RMIConnectionImpl@773c375: connectionId=rmi://127.0.0.1 3] closed. -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 17:07:30 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 17:07:30 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 17:07:30 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 17:07:30 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 17:07:30 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@6e33c391' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 17:07:30 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:07:30 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 17:07:30 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 17:07:30 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 17:07:30 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 17:07:30 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 17:07:30 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 17:07:30 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 17:07:30 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 17:07:30 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 17:07:30 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 17:07:30 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 17:07:30 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:07:30 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:07:30 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 17:07:30 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 17:07:30 - Using SLF4J as the default logging framework -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 17:07:30 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 17:07:30 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 17:07:30 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 17:07:30 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 17:07:30 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 17:07:30 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 17:07:30 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 17:07:30 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 17:07:30 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 17:07:30 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 17:07:30 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 17:07:30 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 17:07:30 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 17:07:30 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 17:07:30 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 17:07:30 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 17:07:30 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 17:07:30 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 17:07:30 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:07:30 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:07:30 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 17:07:30 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 17:07:30 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 17:07:30 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:07:30 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:07:30 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 17:07:30 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 17:07:30 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 17:07:30 - Registering beans for JMX exposure on startup -2024-08-07 17:07:30 - Auto-detecting user-defined JMX MBeans -2024-08-07 17:07:30 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 17:07:30 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 17:07:30 - Starting beans in phase -2147483647 -2024-08-07 17:07:30 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 17:07:30 - Starting beans in phase 2147481599 -2024-08-07 17:07:30 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 17:07:30 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 17:07:30 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 17:07:30 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 17:07:30 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 17:07:30 - Successfully started bean 'webServerStartStop' -2024-08-07 17:07:30 - Starting beans in phase 2147482623 -2024-08-07 17:07:30 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 17:07:30 - Starting beans in phase 2147483647 -2024-08-07 17:07:30 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 17:07:30 - Started HaengdongApplication in 2.107 seconds (process running for 2.307) -2024-08-07 17:07:30 - Application availability state LivenessState changed to CORRECT -2024-08-07 17:07:30 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 17:07:31 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 82 -2024-08-07 17:07:31 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 84 -2024-08-07 17:07:31 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:07:31 - RMI TCP Connection(1)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - [javax.management.remote.rmi.RMIConnectionImpl@1f573a18: connectionId=rmi://127.0.0.1 4] closing. -2024-08-07 17:07:31 - [javax.management.remote.rmi.RMIConnectionImpl@1f573a18: connectionId=rmi://127.0.0.1 4] closed. -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:64906] -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:64905] -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 84 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 84 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - [javax.management.remote.rmi.RMIConnectionImpl@24b0f5f6: connectionId=rmi://127.0.0.1 6] closing. -2024-08-07 17:07:31 - [javax.management.remote.rmi.RMIConnectionImpl@24b0f5f6: connectionId=rmi://127.0.0.1 6] closed. -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 84 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - [javax.management.remote.rmi.RMIConnectionImpl@3bcffb39: connectionId=rmi://127.0.0.1 5] closing. -2024-08-07 17:07:31 - [javax.management.remote.rmi.RMIConnectionImpl@3bcffb39: connectionId=rmi://127.0.0.1 5] closed. -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 84 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - [javax.management.remote.rmi.RMIConnectionImpl@3bba546c: connectionId=rmi://127.0.0.1 7] closing. -2024-08-07 17:07:31 - [javax.management.remote.rmi.RMIConnectionImpl@3bba546c: connectionId=rmi://127.0.0.1 7] closed. -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - [javax.management.remote.rmi.RMIConnectionImpl@7352c39d: connectionId=rmi://127.0.0.1 8] closing. -2024-08-07 17:07:31 - [javax.management.remote.rmi.RMIConnectionImpl@7352c39d: connectionId=rmi://127.0.0.1 8] closed. -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 82 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 84 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 84 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - [javax.management.remote.rmi.RMIConnectionImpl@709803e3: connectionId=rmi://127.0.0.1 10] closing. -2024-08-07 17:07:31 - [javax.management.remote.rmi.RMIConnectionImpl@79588472: connectionId=rmi://127.0.0.1 9] closing. -2024-08-07 17:07:31 - [javax.management.remote.rmi.RMIConnectionImpl@709803e3: connectionId=rmi://127.0.0.1 10] closed. -2024-08-07 17:07:31 - [javax.management.remote.rmi.RMIConnectionImpl@79588472: connectionId=rmi://127.0.0.1 9] closed. -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 84 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 84 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:07:31 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 17:07:31 - Fetching JDBC Connection from DataSource -2024-08-07 17:07:31 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 17:07:31 - Initializing Servlet 'dispatcherServlet' -2024-08-07 17:07:31 - Detected StandardServletMultipartResolver -2024-08-07 17:07:31 - Detected AcceptHeaderLocaleResolver -2024-08-07 17:07:31 - Detected FixedThemeResolver -2024-08-07 17:07:31 - Fetching JDBC Connection from DataSource -2024-08-07 17:07:31 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@62a30701 -2024-08-07 17:07:31 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@5920c4ed -2024-08-07 17:07:31 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 17:07:31 - Completed initialization in 1 ms -2024-08-07 17:07:31 - RMI TCP Connection(3)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - [javax.management.remote.rmi.RMIConnectionImpl@7f25c8f6: connectionId=rmi://127.0.0.1 12] closing. -2024-08-07 17:07:31 - [javax.management.remote.rmi.RMIConnectionImpl@7f25c8f6: connectionId=rmi://127.0.0.1 12] closed. -2024-08-07 17:07:31 - RMI TCP Connection(2)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:07:31 - [javax.management.remote.rmi.RMIConnectionImpl@24f1bba6: connectionId=rmi://127.0.0.1 11] closing. -2024-08-07 17:07:31 - [javax.management.remote.rmi.RMIConnectionImpl@24f1bba6: connectionId=rmi://127.0.0.1 11] closed. -2024-08-07 17:07:59 - RMI TCP Connection(2)-127.0.0.1: (port 64903) connection closed -2024-08-07 17:07:59 - RMI TCP Connection(1)-127.0.0.1: (port 64903) connection closed -2024-08-07 17:07:59 - RMI TCP Connection(3)-127.0.0.1: (port 64903) connection closed -2024-08-07 17:07:59 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=64906,localport=64903] -2024-08-07 17:07:59 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=64905,localport=64903] -2024-08-07 17:07:59 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=64904,localport=64903] -2024-08-07 17:07:59 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=64905,localport=64903] -2024-08-07 17:07:59 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=64906,localport=64903] -2024-08-07 17:07:59 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=64904,localport=64903] -2024-08-07 17:07:59 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:07:59 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:08:29 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:08:29 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:08:59 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:08:59 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:09:29 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:09:29 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:09:59 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:09:59 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:10:03 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:64931] -2024-08-07 17:10:03 - RMI TCP Connection(4)-127.0.0.1: (port 64903) op = 80 -2024-08-07 17:10:03 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:10:03 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:10:03 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:10:03 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:10:03 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:10:18 - RMI TCP Connection(4)-127.0.0.1: (port 64903) connection closed -2024-08-07 17:10:18 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=64931,localport=64903] -2024-08-07 17:10:18 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=64931,localport=64903] -2024-08-07 17:10:29 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:10:29 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:10:59 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:10:59 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:11:29 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:11:29 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:11:59 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:11:59 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:12:29 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:12:29 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:12:59 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:12:59 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:13:29 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:13:29 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:13:59 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:13:59 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:14:29 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:14:29 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:14:59 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:14:59 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:15:21 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.8062617196326812423/conf/jaspic-providers.xml] -2024-08-07 17:15:21 - POST "/api/events", parameters={} -2024-08-07 17:15:21 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:15:21 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:15:21 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=asdfas, password=1234]] -2024-08-07 17:15:21 - Found thread-bound EntityManager [SessionImpl(938251390<open>)] for JPA transaction -2024-08-07 17:15:21 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 17:15:21 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:15:21 - begin -2024-08-07 17:15:21 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@4049471d] -2024-08-07 17:15:21 - Found thread-bound EntityManager [SessionImpl(938251390<open>)] for JPA transaction -2024-08-07 17:15:21 - Participating in existing transaction -2024-08-07 17:15:21 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 17:15:21 - Executing identity-insert immediately -2024-08-07 17:15:21 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 17:15:21 - Initializer list is empty -2024-08-07 17:15:21 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@69ba702c -2024-08-07 17:15:21 - Extracted JDBC value [0] - [1] -2024-08-07 17:15:21 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@65a144e3 -2024-08-07 17:15:21 - Initiating transaction commit -2024-08-07 17:15:21 - Committing JPA transaction on EntityManager [SessionImpl(938251390<open>)] -2024-08-07 17:15:21 - committing -2024-08-07 17:15:21 - Processing flush-time cascades -2024-08-07 17:15:21 - Dirty checking collections -2024-08-07 17:15:21 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 17:15:21 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 17:15:21 - Listing entities: -2024-08-07 17:15:21 - server.haengdong.domain.event.Event{password=1234, name=asdfas, id=1, token=7c777c1e-78c4-46a3-b039-2492922e914c} -2024-08-07 17:15:21 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:15:21 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:15:21 - Writing [EventResponse[eventId=7c777c1e-78c4-46a3-b039-2492922e914c]] -2024-08-07 17:15:21 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:15:21 - Completed 200 OK -2024-08-07 17:15:23 - OPTIONS "/api/events/7c777c1e-78c4-46a3-b039-2492922e914c", parameters={} -2024-08-07 17:15:23 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:15:23 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:15:23 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:15:23 - Completed 200 OK -2024-08-07 17:15:23 - OPTIONS "/api/events/7c777c1e-78c4-46a3-b039-2492922e914c/actions", parameters={} -2024-08-07 17:15:23 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:15:23 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:15:23 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:15:23 - Completed 200 OK -2024-08-07 17:15:23 - GET "/api/events/7c777c1e-78c4-46a3-b039-2492922e914c", parameters={} -2024-08-07 17:15:23 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:15:23 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:15:23 - GET "/api/events/7c777c1e-78c4-46a3-b039-2492922e914c/actions", parameters={} -2024-08-07 17:15:23 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:15:23 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:15:23 - Found thread-bound EntityManager [SessionImpl(1416395663<open>)] for JPA transaction -2024-08-07 17:15:23 - Found thread-bound EntityManager [SessionImpl(1156897336<open>)] for JPA transaction -2024-08-07 17:15:23 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:15:23 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:15:23 - HikariPool-1 - Connection not added, stats (total=10, active=2, idle=8, waiting=0) -2024-08-07 17:15:23 - Setting JDBC Connection [HikariProxyConnection@400463995 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:15:23 - Setting JDBC Connection [HikariProxyConnection@2045835283 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:15:23 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:15:23 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:15:23 - begin -2024-08-07 17:15:23 - begin -2024-08-07 17:15:23 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@302e5b8f] -2024-08-07 17:15:23 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@356198c6] -2024-08-07 17:15:23 - Created new SQL alias : e1_0 -2024-08-07 17:15:23 - Created new SQL alias : e1_0 -2024-08-07 17:15:23 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744021653369625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:15:23 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744021653369625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:15:23 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@1d0ee68 -2024-08-07 17:15:23 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@4f1ea13c -2024-08-07 17:15:23 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744021653369625).token) -2024-08-07 17:15:23 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744021653369625).token) -2024-08-07 17:15:23 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744021653369625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744021653369625).token] - -2024-08-07 17:15:23 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744021653369625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744021653369625).token] - -2024-08-07 17:15:23 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744021653369625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:15:23 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744021653369625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:15:23 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:15:23 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:15:23 - Initializer list: - server.haengdong.domain.event.Event(744021653369625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744021653369625))@874940005 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:15:23 - Initializer list: - server.haengdong.domain.event.Event(744021653369625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744021653369625))@1754364583 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:15:23 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:15:23 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:15:23 - Extracted JDBC value [0] - [1] -2024-08-07 17:15:23 - Extracted JDBC value [0] - [1] -2024-08-07 17:15:23 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744021653369625)): 1 -2024-08-07 17:15:23 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744021653369625)): 1 -2024-08-07 17:15:23 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744021653369625)#1] : 637660378 -2024-08-07 17:15:23 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744021653369625)#1] : 980482296 -2024-08-07 17:15:23 - Extracted JDBC value [1] - [asdfas] -2024-08-07 17:15:23 - Extracted JDBC value [1] - [asdfas] -2024-08-07 17:15:23 - Extracted JDBC value [2] - [1234] -2024-08-07 17:15:23 - Extracted JDBC value [2] - [1234] -2024-08-07 17:15:23 - Extracted JDBC value [3] - [7c777c1e-78c4-46a3-b039-2492922e914c] -2024-08-07 17:15:23 - Extracted JDBC value [3] - [7c777c1e-78c4-46a3-b039-2492922e914c] -2024-08-07 17:15:23 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744021653369625)#1 -2024-08-07 17:15:23 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744021653369625)#1 -2024-08-07 17:15:23 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@3d7bea9 -2024-08-07 17:15:23 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@2d99cb6d -2024-08-07 17:15:23 - Initiating transaction commit -2024-08-07 17:15:23 - Committing JPA transaction on EntityManager [SessionImpl(1156897336<open>)] -2024-08-07 17:15:23 - committing -2024-08-07 17:15:23 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@2045835283 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:15:23 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:15:23 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:15:23 - Writing [EventDetailResponse[eventName=asdfas]] -2024-08-07 17:15:23 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:15:23 - Completed 200 OK -2024-08-07 17:15:23 - Created new SQL alias : ba1_0 -2024-08-07 17:15:23 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(744021499884250))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:15:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@572361c9] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:15:23 - Created new SQL alias : a1_0 -2024-08-07 17:15:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@103f60d7] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:15:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@572361c9] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:15:23 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@557fba2f -2024-08-07 17:15:23 - Created new SQL alias : e1_0 -2024-08-07 17:15:23 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@51cd4e08 -2024-08-07 17:15:23 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(744021499884250).action(744021499907375).event(744021499915875) : event) -2024-08-07 17:15:23 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(744021499884250)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(744021499884250).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(744021499884250).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(744021499884250).title] - -2024-08-07 17:15:23 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(744021499884250)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(744021499884250).action(744021499907375)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(744021499884250).action(744021499907375).event(744021499915875)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:15:23 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:15:23 - Initializer list: - server.haengdong.domain.action.BillAction(744021499884250).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(744021499884250).action.event)@1941948530 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@206503941) - server.haengdong.domain.action.BillAction(744021499884250) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(744021499884250))@139668274 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - server.haengdong.domain.action.BillAction(744021499884250).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(744021499884250).action)@1008964501 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@827469883) - -2024-08-07 17:15:23 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:15:23 - Created new SQL alias : ma1_0 -2024-08-07 17:15:23 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction(m))] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 17:15:23 - Created new SQL alias : a1_0 -2024-08-07 17:15:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@46898084] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 17:15:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@68a1e8b] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 17:15:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6d5219af] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 17:15:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6d5219af] for NavigablePath [server.haengdong.domain.action.MemberAction(m).action(744021637173083).event] overrode previous registration : org.hibernate.sql.ast.tree.from.LazyTableGroup@68a1e8b -2024-08-07 17:15:23 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 17:15:23 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 17:15:23 - Determining mapping-model type for SqmPath : SqmEntityValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action(744021637173083).event) -2024-08-07 17:15:23 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction(m)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.MemberAction(m).action(744021637173083)] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction(m).status] - -2024-08-07 17:15:23 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction(m)) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction(m).action(744021637173083)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.MemberAction(m).action(744021637173083).event) { - } - join LazyTableGroup (e2 : server.haengdong.domain.action.MemberAction(m).action(744021637173083).event) { - } - } - } - } - } - } - } - -2024-08-07 17:15:23 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:15:23 - Initializer list: - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@830278934 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(744021637173083).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744021637173083).event)@229169960 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@206503941) - server.haengdong.domain.action.MemberAction(m).action(744021637173083) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744021637173083))@1892299859 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1041766234) - -2024-08-07 17:15:23 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:15:23 - Initiating transaction commit -2024-08-07 17:15:23 - Committing JPA transaction on EntityManager [SessionImpl(1416395663<open>)] -2024-08-07 17:15:23 - committing -2024-08-07 17:15:23 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@400463995 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:15:23 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:15:23 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:15:23 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:15:23 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:15:23 - Completed 200 OK -2024-08-07 17:15:23 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:15:23 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:15:23 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:15:23 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:15:29 - OPTIONS "/api/events/7c777c1e-78c4-46a3-b039-2492922e914c/member-actions", parameters={} -2024-08-07 17:15:29 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:15:29 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:15:29 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:15:29 - Completed 200 OK -2024-08-07 17:15:29 - POST "/api/events/7c777c1e-78c4-46a3-b039-2492922e914c/member-actions", parameters={} -2024-08-07 17:15:29 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:15:29 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 17:15:29 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:15:29 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 17:15:29 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 17:15:29 - Completed 401 UNAUTHORIZED -2024-08-07 17:15:29 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:15:29 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:15:33 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:15:33 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:15:59 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:15:59 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:16:20 - GET "/api/events/7c777c1e-78c4-46a3-b039-2492922e914c", parameters={} -2024-08-07 17:16:20 - GET "/api/events/7c777c1e-78c4-46a3-b039-2492922e914c/actions", parameters={} -2024-08-07 17:16:20 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:16:20 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:16:20 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:16:20 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:16:20 - Found thread-bound EntityManager [SessionImpl(259999406<open>)] for JPA transaction -2024-08-07 17:16:20 - Found thread-bound EntityManager [SessionImpl(503136986<open>)] for JPA transaction -2024-08-07 17:16:20 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:16:20 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:16:20 - Setting JDBC Connection [HikariProxyConnection@1383306874 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:16:20 - Setting JDBC Connection [HikariProxyConnection@914304900 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:16:20 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:16:20 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:16:20 - begin -2024-08-07 17:16:20 - begin -2024-08-07 17:16:20 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@6a04a11a] -2024-08-07 17:16:20 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@410d3377] -2024-08-07 17:16:20 - Created new SQL alias : e1_0 -2024-08-07 17:16:20 - Created new SQL alias : e1_0 -2024-08-07 17:16:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744021653369625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:16:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744021653369625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:16:20 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@6a82d624 -2024-08-07 17:16:20 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@34f932bf -2024-08-07 17:16:20 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744021653369625).token) -2024-08-07 17:16:20 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744021653369625).token) -2024-08-07 17:16:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744021653369625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744021653369625).token] - -2024-08-07 17:16:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744021653369625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744021653369625).token] - -2024-08-07 17:16:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744021653369625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:16:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744021653369625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:16:20 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:16:20 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:16:20 - Initializer list: - server.haengdong.domain.event.Event(744021653369625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744021653369625))@483610794 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:16:20 - Initializer list: - server.haengdong.domain.event.Event(744021653369625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744021653369625))@640962598 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:16:20 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:16:20 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:16:20 - Extracted JDBC value [0] - [1] -2024-08-07 17:16:20 - Extracted JDBC value [0] - [1] -2024-08-07 17:16:20 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744021653369625)): 1 -2024-08-07 17:16:20 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744021653369625)): 1 -2024-08-07 17:16:20 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744021653369625)#1] : 1510229004 -2024-08-07 17:16:20 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744021653369625)#1] : 1952647492 -2024-08-07 17:16:20 - Extracted JDBC value [1] - [asdfas] -2024-08-07 17:16:20 - Extracted JDBC value [1] - [asdfas] -2024-08-07 17:16:20 - Extracted JDBC value [2] - [1234] -2024-08-07 17:16:20 - Extracted JDBC value [2] - [1234] -2024-08-07 17:16:20 - Extracted JDBC value [3] - [7c777c1e-78c4-46a3-b039-2492922e914c] -2024-08-07 17:16:20 - Extracted JDBC value [3] - [7c777c1e-78c4-46a3-b039-2492922e914c] -2024-08-07 17:16:20 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744021653369625)#1 -2024-08-07 17:16:20 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744021653369625)#1 -2024-08-07 17:16:20 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@7052c28e -2024-08-07 17:16:20 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@5c5409e6 -2024-08-07 17:16:20 - Initiating transaction commit -2024-08-07 17:16:20 - Committing JPA transaction on EntityManager [SessionImpl(503136986<open>)] -2024-08-07 17:16:20 - committing -2024-08-07 17:16:20 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1383306874 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:16:20 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:16:20 - Created new SQL alias : ba1_0 -2024-08-07 17:16:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(744021499884250))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:16:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6b921e65] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:16:20 - Created new SQL alias : a1_0 -2024-08-07 17:16:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@d32f72b] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:16:20 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:16:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6b921e65] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:16:20 - Writing [EventDetailResponse[eventName=asdfas]] -2024-08-07 17:16:20 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@557fba2f -2024-08-07 17:16:20 - Created new SQL alias : e1_0 -2024-08-07 17:16:20 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@497a74b -2024-08-07 17:16:20 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(744021499884250).action(744021499907375).event(744021499915875) : event) -2024-08-07 17:16:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(744021499884250)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(744021499884250).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(744021499884250).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(744021499884250).title] - -2024-08-07 17:16:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(744021499884250)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(744021499884250).action(744021499907375)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(744021499884250).action(744021499907375).event(744021499915875)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:16:20 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:16:20 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:16:20 - Completed 200 OK -2024-08-07 17:16:20 - Initializer list: - server.haengdong.domain.action.BillAction(744021499884250).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(744021499884250).action.event)@196676673 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@206503941) - server.haengdong.domain.action.BillAction(744021499884250) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(744021499884250))@1889749605 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - server.haengdong.domain.action.BillAction(744021499884250).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(744021499884250).action)@1790079221 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@827469883) - -2024-08-07 17:16:20 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:16:20 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:16:20 - Initializer list: - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@1252665422 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(744021637173083).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744021637173083).event)@537901153 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@206503941) - server.haengdong.domain.action.MemberAction(m).action(744021637173083) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744021637173083))@1616459519 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1041766234) - -2024-08-07 17:16:20 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:16:20 - Initiating transaction commit -2024-08-07 17:16:20 - Committing JPA transaction on EntityManager [SessionImpl(259999406<open>)] -2024-08-07 17:16:20 - committing -2024-08-07 17:16:20 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@914304900 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:16:20 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:16:20 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:16:20 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:16:20 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:16:20 - Completed 200 OK -2024-08-07 17:16:23 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:16:23 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:16:23 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:16:23 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:16:29 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:16:29 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:16:55 - GET "/api/events/7c777c1e-78c4-46a3-b039-2492922e914c", parameters={} -2024-08-07 17:16:55 - GET "/api/events/7c777c1e-78c4-46a3-b039-2492922e914c/actions", parameters={} -2024-08-07 17:16:55 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:16:55 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:16:55 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:16:55 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:16:55 - Found thread-bound EntityManager [SessionImpl(370715765<open>)] for JPA transaction -2024-08-07 17:16:55 - Found thread-bound EntityManager [SessionImpl(234881409<open>)] for JPA transaction -2024-08-07 17:16:55 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:16:55 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:16:55 - Setting JDBC Connection [HikariProxyConnection@1394221266 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:16:55 - Setting JDBC Connection [HikariProxyConnection@1666921615 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:16:55 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:16:55 - begin -2024-08-07 17:16:55 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@3635ce7a] -2024-08-07 17:16:55 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:16:55 - begin -2024-08-07 17:16:55 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@31ab75ca] -2024-08-07 17:16:55 - Created new SQL alias : e1_0 -2024-08-07 17:16:55 - Created new SQL alias : e1_0 -2024-08-07 17:16:55 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744021653369625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:16:55 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744021653369625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:16:55 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@7a98a196 -2024-08-07 17:16:55 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744021653369625).token) -2024-08-07 17:16:55 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@40c0d301 -2024-08-07 17:16:55 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744021653369625).token) -2024-08-07 17:16:55 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744021653369625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744021653369625).token] - -2024-08-07 17:16:55 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744021653369625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744021653369625).token] - -2024-08-07 17:16:55 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744021653369625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:16:55 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744021653369625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:16:55 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:16:55 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:16:55 - Initializer list: - server.haengdong.domain.event.Event(744021653369625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744021653369625))@1442928562 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:16:55 - Initializer list: - server.haengdong.domain.event.Event(744021653369625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744021653369625))@2026499349 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:16:55 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:16:55 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:16:55 - Extracted JDBC value [0] - [1] -2024-08-07 17:16:55 - Extracted JDBC value [0] - [1] -2024-08-07 17:16:55 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744021653369625)): 1 -2024-08-07 17:16:55 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744021653369625)): 1 -2024-08-07 17:16:55 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744021653369625)#1] : 73823118 -2024-08-07 17:16:55 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744021653369625)#1] : 2123517476 -2024-08-07 17:16:55 - Extracted JDBC value [1] - [asdfas] -2024-08-07 17:16:55 - Extracted JDBC value [1] - [asdfas] -2024-08-07 17:16:55 - Extracted JDBC value [2] - [1234] -2024-08-07 17:16:55 - Extracted JDBC value [2] - [1234] -2024-08-07 17:16:55 - Extracted JDBC value [3] - [7c777c1e-78c4-46a3-b039-2492922e914c] -2024-08-07 17:16:55 - Extracted JDBC value [3] - [7c777c1e-78c4-46a3-b039-2492922e914c] -2024-08-07 17:16:55 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744021653369625)#1 -2024-08-07 17:16:55 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744021653369625)#1 -2024-08-07 17:16:55 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@33709752 -2024-08-07 17:16:55 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@22f22a83 -2024-08-07 17:16:55 - Initiating transaction commit -2024-08-07 17:16:55 - Committing JPA transaction on EntityManager [SessionImpl(234881409<open>)] -2024-08-07 17:16:55 - committing -2024-08-07 17:16:55 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1666921615 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:16:55 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:16:55 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:16:55 - Created new SQL alias : ba1_0 -2024-08-07 17:16:55 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(744021499884250))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:16:55 - Writing [EventDetailResponse[eventName=asdfas]] -2024-08-07 17:16:55 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@788725ee] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:16:55 - Created new SQL alias : a1_0 -2024-08-07 17:16:55 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4f7af7ab] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:16:55 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@788725ee] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:16:55 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@557fba2f -2024-08-07 17:16:55 - Created new SQL alias : e1_0 -2024-08-07 17:16:55 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@362c192b -2024-08-07 17:16:55 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(744021499884250).action(744021499907375).event(744021499915875) : event) -2024-08-07 17:16:55 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(744021499884250)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(744021499884250).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(744021499884250).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(744021499884250).title] - -2024-08-07 17:16:55 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:16:55 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(744021499884250)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(744021499884250).action(744021499907375)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(744021499884250).action(744021499907375).event(744021499915875)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:16:55 - Completed 200 OK -2024-08-07 17:16:55 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:16:55 - Initializer list: - server.haengdong.domain.action.BillAction(744021499884250).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(744021499884250).action.event)@11975192 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@206503941) - server.haengdong.domain.action.BillAction(744021499884250) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(744021499884250))@1105156021 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - server.haengdong.domain.action.BillAction(744021499884250).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(744021499884250).action)@1493186442 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@827469883) - -2024-08-07 17:16:55 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:16:55 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:16:55 - Initializer list: - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@79796540 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(744021637173083).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744021637173083).event)@1545949769 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@206503941) - server.haengdong.domain.action.MemberAction(m).action(744021637173083) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744021637173083))@248060317 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1041766234) - -2024-08-07 17:16:55 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:16:55 - Initiating transaction commit -2024-08-07 17:16:55 - Committing JPA transaction on EntityManager [SessionImpl(370715765<open>)] -2024-08-07 17:16:55 - committing -2024-08-07 17:16:55 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1394221266 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:16:55 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:16:55 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:16:55 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:16:55 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:16:55 - Completed 200 OK -2024-08-07 17:16:57 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:16:57 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:16:57 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:16:57 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:16:59 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:16:59 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:17:21 - GET "/api/events/7c777c1e-78c4-46a3-b039-2492922e914c/actions", parameters={} -2024-08-07 17:17:21 - GET "/api/events/7c777c1e-78c4-46a3-b039-2492922e914c", parameters={} -2024-08-07 17:17:21 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:17:21 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:17:21 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:17:21 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:17:21 - Found thread-bound EntityManager [SessionImpl(1174660457<open>)] for JPA transaction -2024-08-07 17:17:21 - Found thread-bound EntityManager [SessionImpl(1890721288<open>)] for JPA transaction -2024-08-07 17:17:21 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:17:21 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:17:21 - Setting JDBC Connection [HikariProxyConnection@1689439224 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:17:21 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:17:21 - begin -2024-08-07 17:17:21 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@7f98417b] -2024-08-07 17:17:21 - Setting JDBC Connection [HikariProxyConnection@72350787 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:17:21 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:17:21 - begin -2024-08-07 17:17:21 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@646de09c] -2024-08-07 17:17:21 - Created new SQL alias : e1_0 -2024-08-07 17:17:21 - Created new SQL alias : e1_0 -2024-08-07 17:17:21 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744021653369625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:17:21 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744021653369625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:17:21 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@559f7135 -2024-08-07 17:17:21 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@79efa63b -2024-08-07 17:17:21 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744021653369625).token) -2024-08-07 17:17:21 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744021653369625).token) -2024-08-07 17:17:21 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744021653369625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744021653369625).token] - -2024-08-07 17:17:21 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744021653369625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744021653369625).token] - -2024-08-07 17:17:21 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744021653369625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:17:21 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744021653369625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:17:21 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:17:21 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:17:21 - Initializer list: - server.haengdong.domain.event.Event(744021653369625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744021653369625))@1873792656 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:17:21 - Initializer list: - server.haengdong.domain.event.Event(744021653369625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744021653369625))@2137622530 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:17:21 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:17:21 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:17:21 - Extracted JDBC value [0] - [1] -2024-08-07 17:17:21 - Extracted JDBC value [0] - [1] -2024-08-07 17:17:21 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744021653369625)): 1 -2024-08-07 17:17:21 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744021653369625)): 1 -2024-08-07 17:17:21 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744021653369625)#1] : 1727005591 -2024-08-07 17:17:21 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744021653369625)#1] : 411855031 -2024-08-07 17:17:21 - Extracted JDBC value [1] - [asdfas] -2024-08-07 17:17:21 - Extracted JDBC value [1] - [asdfas] -2024-08-07 17:17:21 - Extracted JDBC value [2] - [1234] -2024-08-07 17:17:21 - Extracted JDBC value [2] - [1234] -2024-08-07 17:17:21 - Extracted JDBC value [3] - [7c777c1e-78c4-46a3-b039-2492922e914c] -2024-08-07 17:17:21 - Extracted JDBC value [3] - [7c777c1e-78c4-46a3-b039-2492922e914c] -2024-08-07 17:17:21 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744021653369625)#1 -2024-08-07 17:17:21 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744021653369625)#1 -2024-08-07 17:17:21 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@77ba9a97 -2024-08-07 17:17:21 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@2b96da3c -2024-08-07 17:17:21 - Initiating transaction commit -2024-08-07 17:17:21 - Committing JPA transaction on EntityManager [SessionImpl(1174660457<open>)] -2024-08-07 17:17:21 - committing -2024-08-07 17:17:21 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1689439224 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:17:21 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:17:21 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:17:21 - Created new SQL alias : ba1_0 -2024-08-07 17:17:21 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(744021499884250))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:17:21 - Writing [EventDetailResponse[eventName=asdfas]] -2024-08-07 17:17:21 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@18ffb5ff] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:17:21 - Created new SQL alias : a1_0 -2024-08-07 17:17:21 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@525dbe6] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:17:21 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@18ffb5ff] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:17:21 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@557fba2f -2024-08-07 17:17:21 - Created new SQL alias : e1_0 -2024-08-07 17:17:21 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@705c1e1d -2024-08-07 17:17:21 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(744021499884250).action(744021499907375).event(744021499915875) : event) -2024-08-07 17:17:21 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(744021499884250)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(744021499884250).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(744021499884250).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(744021499884250).title] - -2024-08-07 17:17:21 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:17:21 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(744021499884250)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(744021499884250).action(744021499907375)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(744021499884250).action(744021499907375).event(744021499915875)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:17:21 - Completed 200 OK -2024-08-07 17:17:21 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:17:21 - Initializer list: - server.haengdong.domain.action.BillAction(744021499884250).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(744021499884250).action.event)@459104707 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@206503941) - server.haengdong.domain.action.BillAction(744021499884250) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(744021499884250))@2120777498 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - server.haengdong.domain.action.BillAction(744021499884250).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(744021499884250).action)@1438212570 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@827469883) - -2024-08-07 17:17:21 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:17:21 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:17:21 - Initializer list: - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@1106951446 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(744021637173083).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744021637173083).event)@1607705410 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@206503941) - server.haengdong.domain.action.MemberAction(m).action(744021637173083) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744021637173083))@1983787627 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1041766234) - -2024-08-07 17:17:21 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:17:21 - Initiating transaction commit -2024-08-07 17:17:21 - Committing JPA transaction on EntityManager [SessionImpl(1890721288<open>)] -2024-08-07 17:17:21 - committing -2024-08-07 17:17:21 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@72350787 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:17:21 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:17:21 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:17:21 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:17:21 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:17:21 - Completed 200 OK -2024-08-07 17:17:22 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:17:22 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:17:22 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:17:22 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:17:29 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:17:29 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:17:59 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:17:59 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:18:19 - GET "/api/events/7c777c1e-78c4-46a3-b039-2492922e914c/actions", parameters={} -2024-08-07 17:18:19 - GET "/api/events/7c777c1e-78c4-46a3-b039-2492922e914c", parameters={} -2024-08-07 17:18:19 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:18:19 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:18:19 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:18:19 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:18:19 - Found thread-bound EntityManager [SessionImpl(1179853379<open>)] for JPA transaction -2024-08-07 17:18:19 - Found thread-bound EntityManager [SessionImpl(1321526579<open>)] for JPA transaction -2024-08-07 17:18:19 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:18:19 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:18:19 - Setting JDBC Connection [HikariProxyConnection@55686381 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:18:19 - Setting JDBC Connection [HikariProxyConnection@867336404 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:18:19 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:18:19 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:18:19 - begin -2024-08-07 17:18:19 - begin -2024-08-07 17:18:19 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@15a59765] -2024-08-07 17:18:19 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@6cbd98eb] -2024-08-07 17:18:19 - Created new SQL alias : e1_0 -2024-08-07 17:18:19 - Created new SQL alias : e1_0 -2024-08-07 17:18:19 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744021653369625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:18:19 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744021653369625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:18:19 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@671cbf48 -2024-08-07 17:18:19 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@32981109 -2024-08-07 17:18:19 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744021653369625).token) -2024-08-07 17:18:19 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744021653369625).token) -2024-08-07 17:18:19 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744021653369625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744021653369625).token] - -2024-08-07 17:18:19 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744021653369625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744021653369625).token] - -2024-08-07 17:18:19 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744021653369625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:18:19 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744021653369625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:18:19 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:18:19 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:18:19 - Initializer list: - server.haengdong.domain.event.Event(744021653369625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744021653369625))@695278040 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:18:19 - Initializer list: - server.haengdong.domain.event.Event(744021653369625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744021653369625))@1524229655 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:18:19 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:18:19 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:18:19 - Extracted JDBC value [0] - [1] -2024-08-07 17:18:19 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744021653369625)): 1 -2024-08-07 17:18:19 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744021653369625)#1] : 278137634 -2024-08-07 17:18:19 - Extracted JDBC value [1] - [asdfas] -2024-08-07 17:18:19 - Extracted JDBC value [2] - [1234] -2024-08-07 17:18:19 - Extracted JDBC value [3] - [7c777c1e-78c4-46a3-b039-2492922e914c] -2024-08-07 17:18:19 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744021653369625)#1 -2024-08-07 17:18:19 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@318a7f31 -2024-08-07 17:18:19 - Extracted JDBC value [0] - [1] -2024-08-07 17:18:19 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744021653369625)): 1 -2024-08-07 17:18:19 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744021653369625)#1] : 1731220581 -2024-08-07 17:18:19 - Extracted JDBC value [1] - [asdfas] -2024-08-07 17:18:19 - Extracted JDBC value [2] - [1234] -2024-08-07 17:18:19 - Extracted JDBC value [3] - [7c777c1e-78c4-46a3-b039-2492922e914c] -2024-08-07 17:18:19 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744021653369625)#1 -2024-08-07 17:18:19 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@72ccffca -2024-08-07 17:18:19 - Initiating transaction commit -2024-08-07 17:18:19 - Committing JPA transaction on EntityManager [SessionImpl(1179853379<open>)] -2024-08-07 17:18:19 - committing -2024-08-07 17:18:19 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@55686381 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:18:19 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:18:19 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:18:19 - Created new SQL alias : ba1_0 -2024-08-07 17:18:19 - Writing [EventDetailResponse[eventName=asdfas]] -2024-08-07 17:18:19 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(744021499884250))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:18:19 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@a78c34a] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:18:19 - Created new SQL alias : a1_0 -2024-08-07 17:18:19 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@686956c3] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:18:19 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@a78c34a] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:18:19 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@557fba2f -2024-08-07 17:18:19 - Created new SQL alias : e1_0 -2024-08-07 17:18:19 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@32b64b4c -2024-08-07 17:18:19 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(744021499884250).action(744021499907375).event(744021499915875) : event) -2024-08-07 17:18:19 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:18:19 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(744021499884250)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(744021499884250).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(744021499884250).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(744021499884250).title] - -2024-08-07 17:18:19 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(744021499884250)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(744021499884250).action(744021499907375)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(744021499884250).action(744021499907375).event(744021499915875)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:18:19 - Completed 200 OK -2024-08-07 17:18:19 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:18:19 - Initializer list: - server.haengdong.domain.action.BillAction(744021499884250).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(744021499884250).action.event)@2047020944 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@206503941) - server.haengdong.domain.action.BillAction(744021499884250) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(744021499884250))@908976393 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - server.haengdong.domain.action.BillAction(744021499884250).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(744021499884250).action)@340813377 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@827469883) - -2024-08-07 17:18:19 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:18:19 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:18:19 - Initializer list: - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@1796579402 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(744021637173083).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744021637173083).event)@2095096071 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@206503941) - server.haengdong.domain.action.MemberAction(m).action(744021637173083) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744021637173083))@174538701 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1041766234) - -2024-08-07 17:18:19 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:18:19 - Initiating transaction commit -2024-08-07 17:18:19 - Committing JPA transaction on EntityManager [SessionImpl(1321526579<open>)] -2024-08-07 17:18:19 - committing -2024-08-07 17:18:19 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@867336404 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:18:19 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:18:19 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:18:19 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:18:19 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:18:19 - Completed 200 OK -2024-08-07 17:18:22 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:18:22 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:18:22 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:18:22 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:18:29 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:18:29 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:18:43 - GET "/api/events/7c777c1e-78c4-46a3-b039-2492922e914c", parameters={} -2024-08-07 17:18:43 - GET "/api/events/7c777c1e-78c4-46a3-b039-2492922e914c/actions", parameters={} -2024-08-07 17:18:43 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:18:43 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:18:43 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:18:43 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:18:43 - Found thread-bound EntityManager [SessionImpl(1070631326<open>)] for JPA transaction -2024-08-07 17:18:43 - Found thread-bound EntityManager [SessionImpl(911827198<open>)] for JPA transaction -2024-08-07 17:18:43 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:18:43 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:18:43 - Setting JDBC Connection [HikariProxyConnection@474470727 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:18:43 - Setting JDBC Connection [HikariProxyConnection@1935403089 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:18:43 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:18:43 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:18:43 - begin -2024-08-07 17:18:43 - begin -2024-08-07 17:18:43 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@471260cf] -2024-08-07 17:18:43 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@e2591c1] -2024-08-07 17:18:43 - Created new SQL alias : e1_0 -2024-08-07 17:18:43 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744021653369625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:18:43 - Created new SQL alias : e1_0 -2024-08-07 17:18:43 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744021653369625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:18:43 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@64589fbd -2024-08-07 17:18:43 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@4262bff5 -2024-08-07 17:18:43 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744021653369625).token) -2024-08-07 17:18:43 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744021653369625).token) -2024-08-07 17:18:43 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744021653369625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744021653369625).token] - -2024-08-07 17:18:43 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744021653369625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744021653369625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744021653369625).token] - -2024-08-07 17:18:43 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744021653369625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:18:43 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744021653369625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:18:43 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:18:43 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:18:43 - Initializer list: - server.haengdong.domain.event.Event(744021653369625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744021653369625))@1194592679 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:18:43 - Initializer list: - server.haengdong.domain.event.Event(744021653369625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744021653369625))@1599683690 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:18:43 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:18:43 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:18:43 - Extracted JDBC value [0] - [1] -2024-08-07 17:18:43 - Extracted JDBC value [0] - [1] -2024-08-07 17:18:43 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744021653369625)): 1 -2024-08-07 17:18:43 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744021653369625)): 1 -2024-08-07 17:18:43 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744021653369625)#1] : 646994720 -2024-08-07 17:18:43 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744021653369625)#1] : 389736651 -2024-08-07 17:18:43 - Extracted JDBC value [1] - [asdfas] -2024-08-07 17:18:43 - Extracted JDBC value [1] - [asdfas] -2024-08-07 17:18:43 - Extracted JDBC value [2] - [1234] -2024-08-07 17:18:43 - Extracted JDBC value [2] - [1234] -2024-08-07 17:18:43 - Extracted JDBC value [3] - [7c777c1e-78c4-46a3-b039-2492922e914c] -2024-08-07 17:18:43 - Extracted JDBC value [3] - [7c777c1e-78c4-46a3-b039-2492922e914c] -2024-08-07 17:18:43 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744021653369625)#1 -2024-08-07 17:18:43 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@7024a2ba -2024-08-07 17:18:43 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744021653369625)#1 -2024-08-07 17:18:43 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@303c99f4 -2024-08-07 17:18:43 - Initiating transaction commit -2024-08-07 17:18:43 - Committing JPA transaction on EntityManager [SessionImpl(911827198<open>)] -2024-08-07 17:18:43 - committing -2024-08-07 17:18:43 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1935403089 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:18:43 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:18:43 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:18:43 - Created new SQL alias : ba1_0 -2024-08-07 17:18:43 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(744021499884250))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:18:43 - Writing [EventDetailResponse[eventName=asdfas]] -2024-08-07 17:18:43 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5db324e5] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:18:43 - Created new SQL alias : a1_0 -2024-08-07 17:18:43 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@914e59e] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:18:43 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5db324e5] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:18:43 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@557fba2f -2024-08-07 17:18:43 - Created new SQL alias : e1_0 -2024-08-07 17:18:43 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@2852d415 -2024-08-07 17:18:43 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(744021499884250).action(744021499907375).event(744021499915875) : event) -2024-08-07 17:18:43 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:18:43 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(744021499884250)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(744021499884250).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(744021499884250).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(744021499884250).title] - -2024-08-07 17:18:43 - Completed 200 OK -2024-08-07 17:18:43 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(744021499884250)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(744021499884250).action(744021499907375)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(744021499884250).action(744021499907375).event(744021499915875)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:18:43 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:18:43 - Initializer list: - server.haengdong.domain.action.BillAction(744021499884250).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(744021499884250).action.event)@1069776522 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@206503941) - server.haengdong.domain.action.BillAction(744021499884250) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(744021499884250))@2073289115 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - server.haengdong.domain.action.BillAction(744021499884250).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(744021499884250).action)@1426445154 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@827469883) - -2024-08-07 17:18:43 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:18:43 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:18:43 - Initializer list: - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@1132105956 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(744021637173083).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744021637173083).event)@640769581 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@206503941) - server.haengdong.domain.action.MemberAction(m).action(744021637173083) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744021637173083))@2047379868 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1041766234) - -2024-08-07 17:18:43 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:18:43 - Initiating transaction commit -2024-08-07 17:18:43 - Committing JPA transaction on EntityManager [SessionImpl(1070631326<open>)] -2024-08-07 17:18:43 - committing -2024-08-07 17:18:43 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@474470727 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:18:43 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:18:43 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:18:43 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:18:43 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:18:43 - Completed 200 OK -2024-08-07 17:18:47 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:18:47 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:18:47 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:18:47 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:18:47 - POST "/api/events/7c777c1e-78c4-46a3-b039-2492922e914c/member-actions", parameters={} -2024-08-07 17:18:47 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:18:47 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 17:18:47 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:18:47 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 17:18:47 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 17:18:47 - Completed 401 UNAUTHORIZED -2024-08-07 17:18:52 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:18:52 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:18:59 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:18:59 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:19:08 - OPTIONS "/api/events", parameters={} -2024-08-07 17:19:08 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:19:08 - Reject: 'http://m.localhost:3000' origin is not allowed -2024-08-07 17:19:08 - Completed 403 FORBIDDEN -2024-08-07 17:19:29 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 17:19:29 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b, started on Wed Aug 07 17:07:28 KST 2024 -2024-08-07 17:19:29 - Stopping beans in phase 2147483647 -2024-08-07 17:19:29 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 17:19:29 - Stopping beans in phase 2147482623 -2024-08-07 17:19:29 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 17:19:29 - Stopping beans in phase 2147481599 -2024-08-07 17:19:29 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 17:19:29 - Stopping beans in phase -2147483647 -2024-08-07 17:19:29 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 17:19:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 17:19:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 17:19:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 17:19:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 17:19:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 17:19:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 17:19:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 17:19:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 17:19:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 17:19:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 17:19:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 17:19:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 17:19:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 17:19:29 - Unregistering JMX-exposed beans on shutdown -2024-08-07 17:19:29 - Unregistering JMX-exposed beans -2024-08-07 17:19:29 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 17:19:29 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 17:19:29 - HHH000031: Closing -2024-08-07 17:19:29 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@6db906e4] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@129b0ed] -2024-08-07 17:19:29 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 17:19:29 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 17:19:29 - HikariPool-1 - Shutdown initiated... -2024-08-07 17:19:29 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:19:29 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:19:29 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:19:29 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:19:29 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:19:29 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:19:29 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:19:29 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:19:29 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:19:29 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:19:29 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:19:29 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 17:19:29 - HikariPool-1 - Shutdown completed. -2024-08-07 17:19:29 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 17:19:31 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 17:19:31 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 17:19:31 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:19:31 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:19:31 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:19:31 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:19:31 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:19:31 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:19:31 - Loaded expression factory via original TCCL -2024-08-07 17:19:31 - Starting HaengdongApplication using Java 17.0.12 with PID 63397 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 17:19:31 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 17:19:31 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 17:19:31 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 17:19:31 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 17:19:31 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 17:19:31 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:19:31 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:19:31 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:19:31 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:19:31 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:19:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 17:19:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 17:19:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 17:19:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 17:19:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 17:19:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 17:19:31 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 17:19:31 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 17:19:31 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 17:19:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 17:19:31 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 17:19:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 17:19:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 17:19:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 17:19:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 17:19:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 17:19:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 17:19:31 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 17:19:31 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 17:19:31 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 17:19:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 17:19:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 17:19:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 17:19:31 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 17:19:31 - Finished Spring Data repository scanning in 15 ms. Found 4 JPA repository interfaces. -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 17:19:31 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 17:19:31 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 17:19:31 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 17:19:31 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 17:19:31 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 17:19:31 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 17:19:31 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 17:19:31 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 17:19:31 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@1a7cb3a4] -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 17:19:31 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 17:19:31 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 17:19:31 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 17:19:31 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 17:19:31 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 17:19:31 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 17:19:31 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 17:19:31 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 17:19:31 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:19:31 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:19:31 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 17:19:31 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 17:19:31 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 17:19:31 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 17:19:31 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:19:31 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:19:31 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:19:31 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 17:19:31 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 17:19:31 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 17:19:31 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 17:19:31 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 17:19:31 - Tomcat initialized with port 8080 (http) -2024-08-07 17:19:31 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7ea71fc2] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7ea71fc2] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.mapper.MapperListener@19cdc217] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.mapper.MapperListener@19cdc217] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 17:19:31 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 17:19:31 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7ea71fc2] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7ea71fc2] to [STARTING] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7ea71fc2] to [STARTED] -2024-08-07 17:19:31 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 17:19:31 - Starting service [Tomcat] -2024-08-07 17:19:31 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 17:19:31 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 17:19:31 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.webresources.StandardRoot@2c47a053] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.webresources.StandardRoot@2c47a053] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.webresources.StandardRoot@2c47a053] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.webresources.DirResourceSet@d36c1c3] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.webresources.DirResourceSet@d36c1c3] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.webresources.DirResourceSet@d36c1c3] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.webresources.DirResourceSet@d36c1c3] to [STARTING] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.webresources.DirResourceSet@d36c1c3] to [STARTED] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.webresources.StandardRoot@2c47a053] to [STARTING] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.webresources.StandardRoot@2c47a053] to [STARTED] -2024-08-07 17:19:31 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:19:31 - Starting this Loader -2024-08-07 17:19:31 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:19:31 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:19:31 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 17:19:31 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@25699aa7] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@25699aa7] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@25699aa7] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@25699aa7] to [STARTING] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@25699aa7] to [STARTED] -2024-08-07 17:19:31 - Initializing Spring embedded WebApplicationContext -2024-08-07 17:19:31 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 17:19:31 - Root WebApplicationContext: initialization completed in 611 ms -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:19:31 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 17:19:31 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 17:19:31 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 17:19:31 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:19:31 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 17:19:31 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:19:31 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 17:19:31 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:19:31 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:19:31 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:19:31 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:19:31 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 17:19:31 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 17:19:31 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 17:19:31 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:19:31 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:19:31 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 17:19:31 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 17:19:31 - HikariPool-1 - configuration: -2024-08-07 17:19:31 - allowPoolSuspension.............false -2024-08-07 17:19:31 - autoCommit......................true -2024-08-07 17:19:31 - catalog.........................none -2024-08-07 17:19:31 - connectionInitSql...............none -2024-08-07 17:19:31 - connectionTestQuery.............none -2024-08-07 17:19:31 - connectionTimeout...............30000 -2024-08-07 17:19:31 - dataSource......................none -2024-08-07 17:19:31 - dataSourceClassName.............none -2024-08-07 17:19:31 - dataSourceJNDI..................none -2024-08-07 17:19:31 - dataSourceProperties............{password=<masked>} -2024-08-07 17:19:31 - driverClassName................."org.h2.Driver" -2024-08-07 17:19:31 - exceptionOverrideClassName......none -2024-08-07 17:19:31 - healthCheckProperties...........{} -2024-08-07 17:19:31 - healthCheckRegistry.............none -2024-08-07 17:19:31 - idleTimeout.....................600000 -2024-08-07 17:19:31 - initializationFailTimeout.......1 -2024-08-07 17:19:31 - isolateInternalQueries..........false -2024-08-07 17:19:31 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 17:19:31 - keepaliveTime...................0 -2024-08-07 17:19:31 - leakDetectionThreshold..........0 -2024-08-07 17:19:31 - maxLifetime.....................1800000 -2024-08-07 17:19:31 - maximumPoolSize.................10 -2024-08-07 17:19:31 - metricRegistry..................none -2024-08-07 17:19:31 - metricsTrackerFactory...........none -2024-08-07 17:19:31 - minimumIdle.....................10 -2024-08-07 17:19:31 - password........................<masked> -2024-08-07 17:19:31 - poolName........................"HikariPool-1" -2024-08-07 17:19:31 - readOnly........................false -2024-08-07 17:19:31 - registerMbeans..................false -2024-08-07 17:19:31 - scheduledExecutor...............none -2024-08-07 17:19:31 - schema..........................none -2024-08-07 17:19:31 - threadFactory...................internal -2024-08-07 17:19:31 - transactionIsolation............default -2024-08-07 17:19:31 - username........................"sa" -2024-08-07 17:19:31 - validationTimeout...............5000 -2024-08-07 17:19:31 - HikariPool-1 - Starting... -2024-08-07 17:19:31 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 17:19:31 - HikariPool-1 - Start completed. -2024-08-07 17:19:31 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 17:19:31 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 17:19:31 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:19:31 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 17:19:31 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:19:31 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:65430] -2024-08-07 17:19:31 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:19:31 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 84 -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 17:19:31 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:19:31 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:31 - [javax.management.remote.rmi.RMIConnectionImpl@46e3b0c0: connectionId=rmi://127.0.0.1 1] closing. -2024-08-07 17:19:31 - [javax.management.remote.rmi.RMIConnectionImpl@46e3b0c0: connectionId=rmi://127.0.0.1 1] closed. -2024-08-07 17:19:31 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 17:19:31 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 17:19:31 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 17:19:31 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 17:19:31 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5611bba] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5611bba] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5611bba] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5611bba] to [STARTING] -2024-08-07 17:19:31 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5611bba] to [STARTED] -2024-08-07 17:19:31 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:19:31 - Filter 'requestContextFilter' configured for use -2024-08-07 17:19:31 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 17:19:31 - Filter 'characterEncodingFilter' configured for use -2024-08-07 17:19:31 - Filter 'formContentFilter' configured for use -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:19:31 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:19:31 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:19:31 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 17:19:31 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.mapper.MapperListener@19cdc217] to [STARTING_PREP] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.mapper.MapperListener@19cdc217] to [STARTING] -2024-08-07 17:19:31 - Registered host [localhost] -2024-08-07 17:19:31 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 17:19:31 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 17:19:31 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 17:19:31 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 17:19:31 - Setting state for [org.apache.catalina.mapper.MapperListener@19cdc217] to [STARTED] -2024-08-07 17:19:31 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 17:19:31 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 17:19:31 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 17:19:31 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 17:19:31 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 17:19:31 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:19:31 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:19:31 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 17:19:31 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 17:19:31 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 17:19:31 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:19:31 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:19:31 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 17:19:31 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 17:19:31 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 17:19:31 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 17:19:31 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 17:19:31 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 17:19:31 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 17:19:31 - HHH000206: 'hibernate.properties' not found -2024-08-07 17:19:31 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 17:19:31 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 17:19:31 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 17:19:31 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 17:19:31 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 17:19:31 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 17:19:31 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 17:19:31 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 17:19:31 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 17:19:31 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 17:19:31 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 17:19:31 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 17:19:31 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 17:19:31 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 17:19:31 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 17:19:31 - HHH000026: Second-level cache disabled -2024-08-07 17:19:31 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-07 17:19:31 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-07 17:19:31 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-07 17:19:31 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-07 17:19:31 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-07 17:19:31 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-07 17:19:31 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-07 17:19:31 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 17:19:31 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 17:19:31 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-07 17:19:31 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-07 17:19:31 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-07 17:19:31 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 17:19:31 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 17:19:31 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 17:19:31 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 17:19:31 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 17:19:31 - Adding type registration image -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 17:19:31 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 17:19:31 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 17:19:31 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 17:19:31 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 17:19:31 - Adding type registration short -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 17:19:31 - Adding type registration short -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 17:19:31 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 17:19:31 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 17:19:31 - Adding type registration int -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 17:19:31 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 17:19:31 - Adding type registration long -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 17:19:31 - Adding type registration long -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 17:19:31 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 17:19:31 - Adding type registration float -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 17:19:31 - Adding type registration float -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 17:19:31 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 17:19:31 - Adding type registration double -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 17:19:31 - Adding type registration double -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 17:19:31 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 17:19:31 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 17:19:31 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 17:19:31 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 17:19:31 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 17:19:31 - Adding type registration character -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 17:19:31 - Adding type registration char -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 17:19:31 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 17:19:31 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 17:19:31 - Adding type registration string -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 17:19:31 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 17:19:31 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 17:19:31 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 17:19:31 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 17:19:31 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 17:19:31 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 17:19:31 - Adding type registration text -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 17:19:31 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 17:19:31 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 17:19:31 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 17:19:31 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 17:19:31 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 17:19:31 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 17:19:31 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 17:19:31 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 17:19:31 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 17:19:31 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 17:19:31 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 17:19:31 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 17:19:31 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 17:19:31 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 17:19:31 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 17:19:31 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 17:19:31 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 17:19:31 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 17:19:31 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 17:19:31 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 17:19:31 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 17:19:31 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 17:19:31 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 17:19:31 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 17:19:31 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 17:19:31 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 17:19:31 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 17:19:31 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 17:19:31 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 17:19:31 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 17:19:31 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 17:19:31 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 17:19:31 - Adding type registration date -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 17:19:31 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 17:19:31 - Adding type registration time -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 17:19:31 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 17:19:31 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 17:19:31 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 17:19:31 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 17:19:31 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 17:19:31 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 17:19:31 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 17:19:31 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 17:19:31 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 17:19:31 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 17:19:31 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 17:19:31 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 17:19:31 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 17:19:31 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 17:19:31 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 17:19:31 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 17:19:31 - Adding type registration class -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 17:19:31 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 17:19:31 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 17:19:31 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 17:19:31 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 17:19:31 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 17:19:31 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 17:19:31 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 17:19:31 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 17:19:31 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 17:19:31 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 17:19:31 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 17:19:31 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 17:19:31 - Adding type registration url -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 17:19:31 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 17:19:31 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 17:19:31 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 17:19:31 - Adding type registration object -> org.hibernate.type.JavaObjectType@5034681f -2024-08-07 17:19:31 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@5034681f -2024-08-07 17:19:31 - Adding type registration null -> org.hibernate.type.NullType@fceab5d -2024-08-07 17:19:31 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@79445efb -2024-08-07 17:19:31 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@1592e540 -2024-08-07 17:19:31 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@3e2772a9 -2024-08-07 17:19:31 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@4449b273 -2024-08-07 17:19:31 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@1fa18f87 -2024-08-07 17:19:31 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@1d9bd1d6 -2024-08-07 17:19:31 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@18ac4af6 -2024-08-07 17:19:31 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@117fb9ba -2024-08-07 17:19:31 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@5bf7f15f] into BootstrapContext; was [null] -2024-08-07 17:19:31 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@5bf7f15f) [was null] -2024-08-07 17:19:31 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@2c154508] into BootstrapContext; was [null] -2024-08-07 17:19:31 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@395eb363] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@1e194966] -2024-08-07 17:19:31 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 17:19:31 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 17:19:32 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 17:19:32 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 17:19:32 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-07 17:19:32 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 17:19:32 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 17:19:32 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@5bf7f15f] -2024-08-07 17:19:32 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@5bf7f15f] -2024-08-07 17:19:32 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 17:19:32 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 17:19:32 - JDBC version : 4.2 -2024-08-07 17:19:32 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 17:19:32 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 17:19:32 - HikariPool-1 - After adding stats (total=5, active=1, idle=4, waiting=0) -2024-08-07 17:19:32 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 17:19:32 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 17:19:32 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 17:19:32 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 17:19:32 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 17:19:32 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 17:19:32 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 17:19:32 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 17:19:32 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 17:19:32 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 17:19:32 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@da9374c] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@34647f58] -2024-08-07 17:19:32 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 17:19:32 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 17:19:32 - Import with entity name Action -2024-08-07 17:19:32 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 17:19:32 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:19:32 - Binding column: AnnotatedColumn() -2024-08-07 17:19:32 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:19:32 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:19:32 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:19:32 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 17:19:32 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 17:19:32 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 17:19:32 - building BasicValue for id -2024-08-07 17:19:32 - Skipping column re-registration: action.id -2024-08-07 17:19:32 - Building property id -2024-08-07 17:19:32 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:19:32 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:19:32 - Binding column: AnnotatedColumn() -2024-08-07 17:19:32 - Building property event -2024-08-07 17:19:32 - Binding column: AnnotatedColumn() -2024-08-07 17:19:32 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 17:19:32 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 17:19:32 - building BasicValue for sequence -2024-08-07 17:19:32 - Skipping column re-registration: action.sequence -2024-08-07 17:19:32 - Building property sequence -2024-08-07 17:19:32 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:19:32 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 17:19:32 - Import with entity name BillAction -2024-08-07 17:19:32 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 17:19:32 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:19:32 - Binding column: AnnotatedColumn() -2024-08-07 17:19:32 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:19:32 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:19:32 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:19:32 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 17:19:32 - building BasicValue for id -2024-08-07 17:19:32 - Skipping column re-registration: bill_action.id -2024-08-07 17:19:32 - Building property id -2024-08-07 17:19:32 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:19:32 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:19:32 - Binding column: AnnotatedColumn() -2024-08-07 17:19:32 - Building property action -2024-08-07 17:19:32 - Binding column: AnnotatedColumn() -2024-08-07 17:19:32 - MetadataSourceProcessor property price with lazy=false -2024-08-07 17:19:32 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 17:19:32 - building BasicValue for price -2024-08-07 17:19:32 - Skipping column re-registration: bill_action.price -2024-08-07 17:19:32 - Building property price -2024-08-07 17:19:32 - Binding column: AnnotatedColumn() -2024-08-07 17:19:32 - MetadataSourceProcessor property title with lazy=false -2024-08-07 17:19:32 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 17:19:32 - building BasicValue for title -2024-08-07 17:19:32 - Skipping column re-registration: bill_action.title -2024-08-07 17:19:32 - Building property title -2024-08-07 17:19:32 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:19:32 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 17:19:32 - Import with entity name MemberAction -2024-08-07 17:19:32 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 17:19:32 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:19:32 - Binding column: AnnotatedColumn() -2024-08-07 17:19:32 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:19:32 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:19:32 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:19:32 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 17:19:32 - building BasicValue for id -2024-08-07 17:19:32 - Skipping column re-registration: member_action.id -2024-08-07 17:19:32 - Building property id -2024-08-07 17:19:32 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:19:32 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:19:32 - Binding column: AnnotatedColumn() -2024-08-07 17:19:32 - Building property action -2024-08-07 17:19:32 - Binding column: AnnotatedColumn() -2024-08-07 17:19:32 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 17:19:32 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 17:19:32 - building BasicValue for memberGroupId -2024-08-07 17:19:32 - Skipping column re-registration: member_action.member_group_id -2024-08-07 17:19:32 - Building property memberGroupId -2024-08-07 17:19:32 - Binding column: AnnotatedColumn() -2024-08-07 17:19:32 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 17:19:32 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 17:19:32 - building BasicValue for memberName -2024-08-07 17:19:32 - Skipping column re-registration: member_action.member_name -2024-08-07 17:19:32 - Building property memberName -2024-08-07 17:19:32 - Binding column: AnnotatedColumn() -2024-08-07 17:19:32 - MetadataSourceProcessor property status with lazy=false -2024-08-07 17:19:32 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 17:19:32 - building BasicValue for status -2024-08-07 17:19:32 - Skipping column re-registration: member_action.status -2024-08-07 17:19:32 - Building property status -2024-08-07 17:19:32 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:19:32 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 17:19:32 - Import with entity name Event -2024-08-07 17:19:32 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 17:19:32 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:19:32 - Binding column: AnnotatedColumn() -2024-08-07 17:19:32 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:19:32 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:19:32 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:19:32 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 17:19:32 - building BasicValue for id -2024-08-07 17:19:32 - Skipping column re-registration: event.id -2024-08-07 17:19:32 - Building property id -2024-08-07 17:19:32 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:19:32 - Binding column: AnnotatedColumn() -2024-08-07 17:19:32 - MetadataSourceProcessor property name with lazy=false -2024-08-07 17:19:32 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 17:19:32 - building BasicValue for name -2024-08-07 17:19:32 - Skipping column re-registration: event.name -2024-08-07 17:19:32 - Building property name -2024-08-07 17:19:32 - Binding column: AnnotatedColumn() -2024-08-07 17:19:32 - MetadataSourceProcessor property password with lazy=false -2024-08-07 17:19:32 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 17:19:32 - building BasicValue for password -2024-08-07 17:19:32 - Skipping column re-registration: event.password -2024-08-07 17:19:32 - Building property password -2024-08-07 17:19:32 - Binding column: AnnotatedColumn() -2024-08-07 17:19:32 - MetadataSourceProcessor property token with lazy=false -2024-08-07 17:19:32 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 17:19:32 - building BasicValue for token -2024-08-07 17:19:32 - Skipping column re-registration: event.token -2024-08-07 17:19:32 - Building property token -2024-08-07 17:19:32 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 17:19:32 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 17:19:32 - Import with entity name EventStep -2024-08-07 17:19:32 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 17:19:32 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:19:32 - Binding column: AnnotatedColumn() -2024-08-07 17:19:32 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:19:32 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:19:32 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:19:32 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 17:19:32 - building BasicValue for id -2024-08-07 17:19:32 - Skipping column re-registration: event_step.id -2024-08-07 17:19:32 - Building property id -2024-08-07 17:19:32 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:19:32 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:19:32 - Binding column: AnnotatedColumn() -2024-08-07 17:19:32 - Building property event -2024-08-07 17:19:32 - Binding column: AnnotatedColumn() -2024-08-07 17:19:32 - MetadataSourceProcessor property name with lazy=false -2024-08-07 17:19:32 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 17:19:32 - building BasicValue for name -2024-08-07 17:19:32 - Skipping column re-registration: event_step.name -2024-08-07 17:19:32 - Building property name -2024-08-07 17:19:32 - Binding column: AnnotatedColumn() -2024-08-07 17:19:32 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 17:19:32 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 17:19:32 - building BasicValue for sequence -2024-08-07 17:19:32 - Skipping column re-registration: event_step.sequence -2024-08-07 17:19:32 - Building property sequence -2024-08-07 17:19:32 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 17:19:32 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:19:32 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 17:19:32 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:19:32 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 17:19:32 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 17:19:32 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:19:32 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 17:19:32 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 17:19:32 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 17:19:32 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:19:32 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 17:19:32 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 17:19:32 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 17:19:32 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:19:32 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 17:19:32 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 17:19:32 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 17:19:32 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 17:19:32 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 17:19:32 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 17:19:32 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 17:19:32 - Building session factory -2024-08-07 17:19:32 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 17:19:32 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 17:19:32 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:19:32 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@30d5fc1b, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@7957aa57, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.8145280210240743116, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=63397, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.8145280210240743116, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@7b92ea9d, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 17:19:32 - Session factory constructed with filter configurations : {} -2024-08-07 17:19:32 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:19:32 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:19:32 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:19:32 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:19:32 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:19:32 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:19:32 - Loaded expression factory via original TCCL -2024-08-07 17:19:32 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:19:32 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:19:32 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:19:32 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:19:32 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:19:32 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:19:32 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:19:32 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:19:32 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:19:32 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:19:32 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:19:32 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:19:32 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:19:32 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:19:32 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:19:32 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:19:32 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 17:19:32 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 17:19:32 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@76cbee13] under count; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@633c0a61] under every; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@49322d04] under any; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6b756a62] under sinh; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@394b9e22] under cosh; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6e0f259e] under tanh; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4fe9adfb] under pi; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@f8fe81e] under log; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 17:19:32 - Registering alternate key : length -> character_length -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@3a9040f0] under position; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@5216532a] under overlay; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@6761f75b] under trim; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@71135794] under cast; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@79b0956e] under collate; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@37f627d0] under extract; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@65d2d3cc] under ifnull; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@ca2a03f] under pad; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@3293030b] under str; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@78b2d29e] under format; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@25b402ea] under timestampadd; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@a0bdbe2] under timestampdiff; prior registration was null -2024-08-07 17:19:32 - Registering alternate key : dateadd -> timestampadd -2024-08-07 17:19:32 - Registering alternate key : datediff -> timestampdiff -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5f81507a] under current_date; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7d7c05fa] under current_time; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7dbbf730] under current_timestamp; prior registration was null -2024-08-07 17:19:32 - Registering alternate key : current date -> current_date -2024-08-07 17:19:32 - Registering alternate key : current time -> current_time -2024-08-07 17:19:32 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7c4a5ef2] under local_date; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@299dd381] under local_time; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@34d3409d] under local_datetime; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16732340] under offset_datetime; prior registration was null -2024-08-07 17:19:32 - Registering alternate key : local date -> local_date -2024-08-07 17:19:32 - Registering alternate key : local time -> local_time -2024-08-07 17:19:32 - Registering alternate key : local datetime -> local_datetime -2024-08-07 17:19:32 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@38e052b2] under instant; prior registration was null -2024-08-07 17:19:32 - Registering alternate key : current_instant -> instant -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@64f613da] under sql; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@2f64f99f] under count; prior registration was org.hibernate.dialect.function.CountFunction@76cbee13 -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@4e210016] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4fe9adfb -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2fc40856] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 17:19:32 - Registering alternate key : day -> day_of_month -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@299dd381 -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@34d3409d -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@57fec63f] under trunc; prior registration was null -2024-08-07 17:19:32 - Registering alternate key : truncate -> trunc -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7a2fd94c] under date_trunc; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 17:19:32 - Registering alternate key : chr -> char -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@637c8632] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@3a9040f0 -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@156eeff1] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 17:19:32 - Registering alternate key : every -> bool_and -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 17:19:32 - Registering alternate key : any -> bool_or -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@34001c5d] under format; prior registration was org.hibernate.dialect.function.FormatFunction@78b2d29e -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@5b643d6e] under listagg; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@73230721] under mode; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@10bcbbce] under percentile_cont; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@27234b7c] under percentile_disc; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@31f9f9b3] under rank; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@7730da00] under dense_rank; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@52d01430] under percent_rank; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@3fdede3a] under cume_dist; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@4eab9aec] under array; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@5a45c218] under array_list; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@3163e03b] under array_agg; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@45c28c49] under array_position; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@29ae2517] under array_positions; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@752ffce3] under array_positions_list; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@78f35e39] under array_length; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@4056cdb2] under array_concat; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@67baa05] under array_prepend; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@5b5a89d1] under array_append; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@c414eb3] under array_contains; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@4edd8a0a] under array_contains_nullable; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@151d216e] under array_overlaps; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@1018f702] under array_overlaps_nullable; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2119b989] under array_get; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@50b2ba2c] under array_set; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@13ae87a6] under array_remove; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@1701beb3] under array_remove_index; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7f584d0c] under array_slice; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@5ef7ae2f] under array_replace; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1bcf2c64] under array_trim; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@691a5c3a] under array_fill; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@5570dc21] under array_fill_list; prior registration was null -2024-08-07 17:19:32 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@4a34de5e] under array_to_string; prior registration was null -2024-08-07 17:19:32 - abs(NUMERIC arg) -2024-08-07 17:19:32 - Double acos(NUMERIC arg) -2024-08-07 17:19:32 - Boolean any(BOOLEAN predicate) -2024-08-07 17:19:32 - array( ... ) -2024-08-07 17:19:32 - array_agg(arg) -2024-08-07 17:19:32 - array_append( ... ) -2024-08-07 17:19:32 - array_concat( ... ) -2024-08-07 17:19:32 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 17:19:32 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 17:19:32 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 17:19:32 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 17:19:32 - array_get(ARRAY array, INTEGER index) -2024-08-07 17:19:32 - Integer array_length(ARRAY array) -2024-08-07 17:19:32 - array_list( ... ) -2024-08-07 17:19:32 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 17:19:32 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 17:19:32 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 17:19:32 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 17:19:32 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 17:19:32 - array_prepend( ... ) -2024-08-07 17:19:32 - array_remove( ... ) -2024-08-07 17:19:32 - array_remove_index( ... ) -2024-08-07 17:19:32 - array_replace( ... ) -2024-08-07 17:19:32 - array_set( ... ) -2024-08-07 17:19:32 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 17:19:32 - String array_to_string( ... ) -2024-08-07 17:19:32 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 17:19:32 - Integer ascii(STRING arg) -2024-08-07 17:19:32 - Double asin(NUMERIC arg) -2024-08-07 17:19:32 - Double atan(NUMERIC arg) -2024-08-07 17:19:32 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 17:19:32 - avg(NUMERIC arg) -2024-08-07 17:19:32 - bit_and(arg) -2024-08-07 17:19:32 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 17:19:32 - bit_or(arg) -2024-08-07 17:19:32 - bitand(arg0, arg1) -2024-08-07 17:19:32 - bitnot(arg) -2024-08-07 17:19:32 - bitor(arg0, arg1) -2024-08-07 17:19:32 - bitxor(arg0, arg1) -2024-08-07 17:19:32 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 17:19:32 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 17:19:32 - cast(arg as Type) -2024-08-07 17:19:32 - ceiling(NUMERIC arg) -2024-08-07 17:19:32 - Character char(INTEGER arg) -2024-08-07 17:19:32 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 17:19:32 - Character chr(INTEGER arg) -2024-08-07 17:19:32 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 17:19:32 - String collate(STRING string as COLLATION collation) -2024-08-07 17:19:32 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 17:19:32 - Double cos(NUMERIC arg) -2024-08-07 17:19:32 - Double cosh(NUMERIC arg) -2024-08-07 17:19:32 - Double cot(NUMERIC arg) -2024-08-07 17:19:32 - Long count([distinct ]{arg|*}) -2024-08-07 17:19:32 - Double cume_dist([arg0[, ...]]) -2024-08-07 17:19:32 - Date curdate() -2024-08-07 17:19:32 - Date current date -2024-08-07 17:19:32 - Time current time -2024-08-07 17:19:32 - Timestamp current timestamp -2024-08-07 17:19:32 - Date current_date -2024-08-07 17:19:32 - Instant current_instant -2024-08-07 17:19:32 - Time current_time -2024-08-07 17:19:32 - Timestamp current_timestamp -2024-08-07 17:19:32 - Time curtime() -2024-08-07 17:19:32 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 17:19:32 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 17:19:32 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 17:19:32 - Integer day(DATE arg) -2024-08-07 17:19:32 - Integer day_of_month(DATE arg) -2024-08-07 17:19:32 - Integer day_of_week(DATE arg) -2024-08-07 17:19:32 - Integer day_of_year(DATE arg) -2024-08-07 17:19:32 - String dayname(DATE arg) -2024-08-07 17:19:32 - Double degrees(NUMERIC arg) -2024-08-07 17:19:32 - Long dense_rank([arg0[, ...]]) -2024-08-07 17:19:32 - Boolean every(BOOLEAN predicate) -2024-08-07 17:19:32 - Double exp(NUMERIC arg) -2024-08-07 17:19:32 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 17:19:32 - first_valueANY value -2024-08-07 17:19:32 - floor(NUMERIC arg) -2024-08-07 17:19:32 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 17:19:32 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 17:19:32 - Integer hour(TIME arg) -2024-08-07 17:19:32 - ifnull(arg0, arg1) -2024-08-07 17:19:32 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 17:19:32 - Instant instant -2024-08-07 17:19:32 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 17:19:32 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 17:19:32 - last_valueANY value -2024-08-07 17:19:32 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 17:19:32 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 17:19:32 - String left(STRING string, INTEGER length) -2024-08-07 17:19:32 - Integer length(STRING_OR_CLOB arg) -2024-08-07 17:19:32 - String listagg(STRING arg0, STRING arg1) -2024-08-07 17:19:32 - Double ln(NUMERIC arg) -2024-08-07 17:19:32 - LocalDate local date -2024-08-07 17:19:32 - LocalDateTime local datetime -2024-08-07 17:19:32 - LocalTime local time -2024-08-07 17:19:32 - LocalDate local_date -2024-08-07 17:19:32 - LocalDateTime local_datetime -2024-08-07 17:19:32 - LocalTime local_time -2024-08-07 17:19:32 - Time localtime -2024-08-07 17:19:32 - Timestamp localtimestamp -2024-08-07 17:19:32 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 17:19:32 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 17:19:32 - Double log10(NUMERIC arg) -2024-08-07 17:19:32 - String lower(STRING string) -2024-08-07 17:19:32 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 17:19:32 - String ltrim(STRING string) -2024-08-07 17:19:32 - max(COMPARABLE arg) -2024-08-07 17:19:32 - Double median(NUMERIC arg) -2024-08-07 17:19:32 - Integer microsecond(TIME arg) -2024-08-07 17:19:32 - min(COMPARABLE arg) -2024-08-07 17:19:32 - Integer minute(TIME arg) -2024-08-07 17:19:32 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 17:19:32 - mode() -2024-08-07 17:19:32 - Integer month(DATE arg) -2024-08-07 17:19:32 - String monthname(DATE arg) -2024-08-07 17:19:32 - Timestamp now() -2024-08-07 17:19:32 - nth_valueANY value, INTEGER nth -2024-08-07 17:19:32 - nullif(arg0, arg1) -2024-08-07 17:19:32 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 17:19:32 - OffsetDateTime offset datetime -2024-08-07 17:19:32 - OffsetDateTime offset_datetime -2024-08-07 17:19:32 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 17:19:32 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 17:19:32 - Double percent_rank([arg0[, ...]]) -2024-08-07 17:19:32 - percentile_cont(NUMERIC arg) -2024-08-07 17:19:32 - percentile_disc(NUMERIC arg) -2024-08-07 17:19:32 - Double pi -2024-08-07 17:19:32 - Integer position(STRING pattern in STRING string) -2024-08-07 17:19:32 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 17:19:32 - Integer quarter(DATE arg) -2024-08-07 17:19:32 - Double radians(NUMERIC arg) -2024-08-07 17:19:32 - Double rand([INTEGER seed]) -2024-08-07 17:19:32 - Long rank([arg0[, ...]]) -2024-08-07 17:19:32 - String repeat(STRING string, INTEGER times) -2024-08-07 17:19:32 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 17:19:32 - String right(STRING string, INTEGER length) -2024-08-07 17:19:32 - round(NUMERIC number[, INTEGER places]) -2024-08-07 17:19:32 - Long row_number() -2024-08-07 17:19:32 - Long rownum() -2024-08-07 17:19:32 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 17:19:32 - String rtrim(STRING string) -2024-08-07 17:19:32 - Integer second(TIME arg) -2024-08-07 17:19:32 - Integer sign(NUMERIC arg) -2024-08-07 17:19:32 - Double sin(NUMERIC arg) -2024-08-07 17:19:32 - Double sinh(NUMERIC arg) -2024-08-07 17:19:32 - String soundex(arg) -2024-08-07 17:19:32 - String space(INTEGER arg) -2024-08-07 17:19:32 - Object sql -2024-08-07 17:19:32 - Double sqrt(NUMERIC arg) -2024-08-07 17:19:32 - Double stddev_pop(NUMERIC arg) -2024-08-07 17:19:32 - Double stddev_samp(NUMERIC arg) -2024-08-07 17:19:32 - String str(arg) -2024-08-07 17:19:32 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 17:19:32 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 17:19:32 - sum(arg) -2024-08-07 17:19:32 - Timestamp sysdate -2024-08-07 17:19:32 - Double tan(NUMERIC arg) -2024-08-07 17:19:32 - Double tanh(NUMERIC arg) -2024-08-07 17:19:32 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 17:19:32 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 17:19:32 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 17:19:32 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 17:19:32 - trunc( ... ) -2024-08-07 17:19:32 - truncate( ... ) -2024-08-07 17:19:32 - String upper(STRING string) -2024-08-07 17:19:32 - Double var_pop(NUMERIC arg) -2024-08-07 17:19:32 - Double var_samp(NUMERIC arg) -2024-08-07 17:19:32 - Integer week(DATE arg) -2024-08-07 17:19:32 - Integer year(DATE arg) -2024-08-07 17:19:32 - Starting QueryInterpretationCache(2048) -2024-08-07 17:19:32 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 17:19:32 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 17:19:32 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:19:32 - Configured EntityCopyObserver strategy: disallow -2024-08-07 17:19:32 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:19:32 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:19:32 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:19:32 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 17:19:32 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:19:32 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:19:32 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 17:19:32 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:19:32 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:19:32 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 17:19:32 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:19:32 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:19:32 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 17:19:32 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:19:32 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:19:32 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 17:19:32 - Starting post-init callbacks -2024-08-07 17:19:32 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 17:19:32 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 17:19:32 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 17:19:32 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 17:19:32 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 17:19:32 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 17:19:32 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 17:19:32 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 17:19:32 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 17:19:32 - Created new SQL alias : ba1_0 -2024-08-07 17:19:32 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:19:32 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@452d6fd] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:19:32 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 17:19:32 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 17:19:32 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 17:19:32 - Version select: select id from bill_action where id=? -2024-08-07 17:19:32 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 17:19:32 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 17:19:32 - Delete (0): delete from bill_action where id=? -2024-08-07 17:19:32 - Created new SQL alias : ma1_0 -2024-08-07 17:19:32 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 17:19:32 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@c6653e] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 17:19:32 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 17:19:32 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 17:19:32 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 17:19:32 - Version select: select id from member_action where id=? -2024-08-07 17:19:32 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 17:19:32 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 17:19:32 - Delete (0): delete from member_action where id=? -2024-08-07 17:19:32 - Created new SQL alias : e1_0 -2024-08-07 17:19:32 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:19:32 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 17:19:32 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:19:32 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 17:19:32 - Version select: select id from event where id=? -2024-08-07 17:19:32 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 17:19:32 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 17:19:32 - Delete (0): delete from event where id=? -2024-08-07 17:19:32 - Created new SQL alias : a1_0 -2024-08-07 17:19:32 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 17:19:32 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5e8bc83e] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 17:19:32 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 17:19:32 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 17:19:32 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 17:19:32 - Version select: select id from action where id=? -2024-08-07 17:19:32 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 17:19:32 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 17:19:32 - Delete (0): delete from action where id=? -2024-08-07 17:19:32 - Created new SQL alias : es1_0 -2024-08-07 17:19:32 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 17:19:32 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@69374e28] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 17:19:32 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 17:19:32 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 17:19:32 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 17:19:32 - Version select: select id from event_step where id=? -2024-08-07 17:19:32 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 17:19:32 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 17:19:32 - Delete (0): delete from event_step where id=? -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 82 -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 82 -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 82 -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 84 -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 82 -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 82 -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:32 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 82 -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:32 - [javax.management.remote.rmi.RMIConnectionImpl@6316b299: connectionId=rmi://127.0.0.1 2] closing. -2024-08-07 17:19:32 - [javax.management.remote.rmi.RMIConnectionImpl@6316b299: connectionId=rmi://127.0.0.1 2] closed. -2024-08-07 17:19:32 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 17:19:32 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@da9374c] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@9cdf13e] -2024-08-07 17:19:32 - Checking 0 named HQL queries -2024-08-07 17:19:32 - Checking 0 named SQL queries -2024-08-07 17:19:32 - - drop table if exists action cascade -2024-08-07 17:19:32 - - drop table if exists bill_action cascade -2024-08-07 17:19:32 - - drop table if exists event cascade -2024-08-07 17:19:32 - - drop table if exists event_step cascade -2024-08-07 17:19:32 - - drop table if exists member_action cascade -2024-08-07 17:19:32 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 17:19:32 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 17:19:32 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 17:19:32 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 17:19:32 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 17:19:32 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 17:19:32 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 17:19:32 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 17:19:32 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 17:19:32 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@1f67d37f -2024-08-07 17:19:32 - Registering SessionFactory: e88e21db-4b86-49d5-915d-c18e01acb7f1 (<unnamed>) -2024-08-07 17:19:32 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 17:19:32 - Instantiated SessionFactory -2024-08-07 17:19:32 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'actionService' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 17:19:32 - Initializing JpaMetamodelMappingContext… -2024-08-07 17:19:32 - Finished initializing JpaMetamodelMappingContext -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - Statistics initialized [enabled=false] -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 17:19:32 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 17:19:32 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - Looking up named query BillAction.findByAction_Event -2024-08-07 17:19:32 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:19:32 - Did not find named query BillAction.findByAction_Event -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - Looking up named query BillAction.findByAction_Id -2024-08-07 17:19:32 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:19:32 - Did not find named query BillAction.findByAction_Id -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 17:19:32 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:19:32 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - Looking up named query MemberAction.findByAction -2024-08-07 17:19:32 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:19:32 - Did not find named query MemberAction.findByAction -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 17:19:32 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:19:32 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 17:19:32 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:19:32 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(744743796522958)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(744743796522958)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(744743796522958)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(744743796522958)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(744743796522958).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:19:32 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:19:32 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 17:19:32 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:19:32 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:19:32 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 17:19:32 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:19:32 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 17:19:32 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:19:32 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:19:32 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 17:19:32 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 17:19:32 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:19:32 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 17:19:32 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:19:32 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 17:19:32 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 17:19:32 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 17:19:32 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 17:19:32 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - Looking up named query Event.findByToken -2024-08-07 17:19:32 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:19:32 - Did not find named query Event.findByToken -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 17:19:32 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 17:19:32 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:19:32 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - Looking up named query Action.findByIdAndEvent -2024-08-07 17:19:32 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:19:32 - Did not find named query Action.findByIdAndEvent -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:19:32 - Did not find named query Action.findLastByEvent.count -2024-08-07 17:19:32 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:19:32 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 17:19:32 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:19:32 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:19:32 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 17:19:32 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 17:19:32 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 17:19:32 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'eventService' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 17:19:32 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 17:19:32 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 17:19:32 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 17:19:32 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 17:19:32 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 17:19:32 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 17:19:32 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:19:32 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 17:19:32 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 17:19:32 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 17:19:32 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'actionController' -2024-08-07 17:19:32 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 17:19:32 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'eventController' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'authService' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 17:19:32 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 17:19:32 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 17:19:32 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 17:19:32 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 17:19:32 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:19:32 - Loaded expression factory via original TCCL -2024-08-07 17:19:32 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 17:19:32 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 17:19:32 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:19:32 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 17:19:32 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:19:32 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:19:32 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:19:32 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:19:32 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:19:32 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:19:32 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:19:32 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:19:32 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:19:32 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:19:32 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'error' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 17:19:32 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 17:19:32 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 17:19:32 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 17:19:32 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 17:19:32 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:19:32 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:19:32 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 17:19:32 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:19:32 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:19:32 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 17:19:32 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:19:32 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:19:32 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:19:32 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 17:19:32 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 17:19:32 - - s.h.p.EventController: - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) -2024-08-07 17:19:32 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 17:19:32 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 17:19:32 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 17:19:32 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:19:32 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 17:19:32 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:19:32 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:19:32 - 'beanNameHandlerMapping' {} -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 17:19:32 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:19:32 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 17:19:32 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 17:19:32 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:19:32 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:19:32 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 17:19:32 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:19:32 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 17:19:32 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 17:19:32 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 17:19:32 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:19:32 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:19:32 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:19:32 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 17:19:32 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:19:32 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 17:19:32 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 17:19:32 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 17:19:32 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 17:19:32 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 17:19:32 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 17:19:32 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 17:19:32 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:19:32 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 17:19:32 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 17:19:32 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 17:19:32 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 17:19:32 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 17:19:32 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:19:32 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 17:19:32 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:19:32 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 17:19:32 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 17:19:32 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 17:19:32 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 17:19:32 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 17:19:32 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 17:19:32 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 17:19:32 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 17:19:32 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 17:19:32 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 17:19:32 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 82 -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 82 -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 82 -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 84 -2024-08-07 17:19:32 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 17:19:32 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:32 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:19:32 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:32 - [javax.management.remote.rmi.RMIConnectionImpl@2b37182f: connectionId=rmi://127.0.0.1 3] closing. -2024-08-07 17:19:32 - [javax.management.remote.rmi.RMIConnectionImpl@2b37182f: connectionId=rmi://127.0.0.1 3] closed. -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 17:19:32 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:19:32 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 17:19:32 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 17:19:32 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 17:19:32 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 17:19:32 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 17:19:32 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 17:19:32 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 17:19:32 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 17:19:32 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 17:19:32 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 17:19:32 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 17:19:32 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:19:32 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:19:32 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 17:19:32 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 17:19:32 - Using SLF4J as the default logging framework -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 17:19:32 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 17:19:32 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 17:19:32 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 17:19:32 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 17:19:32 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 17:19:32 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 17:19:32 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 17:19:32 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 17:19:32 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 17:19:32 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 17:19:32 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 17:19:32 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 17:19:32 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 17:19:32 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 17:19:32 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 17:19:32 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 17:19:32 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 17:19:32 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 17:19:32 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:19:32 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:19:32 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 17:19:32 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 17:19:32 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 17:19:32 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:19:32 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:19:32 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 17:19:32 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 17:19:32 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 17:19:33 - Registering beans for JMX exposure on startup -2024-08-07 17:19:33 - Auto-detecting user-defined JMX MBeans -2024-08-07 17:19:33 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 17:19:33 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 17:19:33 - Starting beans in phase -2147483647 -2024-08-07 17:19:33 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 17:19:33 - Starting beans in phase 2147481599 -2024-08-07 17:19:33 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 17:19:33 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 17:19:33 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 17:19:33 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 17:19:33 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 17:19:33 - Successfully started bean 'webServerStartStop' -2024-08-07 17:19:33 - Starting beans in phase 2147482623 -2024-08-07 17:19:33 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 17:19:33 - Starting beans in phase 2147483647 -2024-08-07 17:19:33 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.web.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 17:19:33 - Started HaengdongApplication in 2.116 seconds (process running for 2.313) -2024-08-07 17:19:33 - Application availability state LivenessState changed to CORRECT -2024-08-07 17:19:33 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 17:19:33 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 82 -2024-08-07 17:19:33 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 84 -2024-08-07 17:19:33 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:19:33 - RMI TCP Connection(1)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - [javax.management.remote.rmi.RMIConnectionImpl@15b153a8: connectionId=rmi://127.0.0.1 4] closing. -2024-08-07 17:19:33 - [javax.management.remote.rmi.RMIConnectionImpl@15b153a8: connectionId=rmi://127.0.0.1 4] closed. -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:65431] -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:65432] -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 84 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 84 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - [javax.management.remote.rmi.RMIConnectionImpl@545239ab: connectionId=rmi://127.0.0.1 5] closing. -2024-08-07 17:19:33 - [javax.management.remote.rmi.RMIConnectionImpl@545239ab: connectionId=rmi://127.0.0.1 5] closed. -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 84 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - [javax.management.remote.rmi.RMIConnectionImpl@1d94a686: connectionId=rmi://127.0.0.1 6] closing. -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - [javax.management.remote.rmi.RMIConnectionImpl@1d94a686: connectionId=rmi://127.0.0.1 6] closed. -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - [javax.management.remote.rmi.RMIConnectionImpl@404f30ef: connectionId=rmi://127.0.0.1 7] closing. -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - [javax.management.remote.rmi.RMIConnectionImpl@404f30ef: connectionId=rmi://127.0.0.1 7] closed. -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 84 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - [javax.management.remote.rmi.RMIConnectionImpl@179d3551: connectionId=rmi://127.0.0.1 8] closing. -2024-08-07 17:19:33 - [javax.management.remote.rmi.RMIConnectionImpl@179d3551: connectionId=rmi://127.0.0.1 8] closed. -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 82 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 84 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 84 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - [javax.management.remote.rmi.RMIConnectionImpl@2e95cf15: connectionId=rmi://127.0.0.1 9] closing. -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - [javax.management.remote.rmi.RMIConnectionImpl@2e95cf15: connectionId=rmi://127.0.0.1 9] closed. -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - [javax.management.remote.rmi.RMIConnectionImpl@5ec76269: connectionId=rmi://127.0.0.1 10] closing. -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - [javax.management.remote.rmi.RMIConnectionImpl@5ec76269: connectionId=rmi://127.0.0.1 10] closed. -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 84 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 84 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:19:33 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 17:19:33 - Fetching JDBC Connection from DataSource -2024-08-07 17:19:33 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 17:19:33 - Initializing Servlet 'dispatcherServlet' -2024-08-07 17:19:33 - Detected StandardServletMultipartResolver -2024-08-07 17:19:33 - Detected AcceptHeaderLocaleResolver -2024-08-07 17:19:33 - Detected FixedThemeResolver -2024-08-07 17:19:33 - Fetching JDBC Connection from DataSource -2024-08-07 17:19:33 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@a6017f9 -2024-08-07 17:19:33 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@5a1c0bcc -2024-08-07 17:19:33 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 17:19:33 - Completed initialization in 1 ms -2024-08-07 17:19:33 - RMI TCP Connection(3)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - [javax.management.remote.rmi.RMIConnectionImpl@5a4a7e67: connectionId=rmi://127.0.0.1 11] closing. -2024-08-07 17:19:33 - [javax.management.remote.rmi.RMIConnectionImpl@5a4a7e67: connectionId=rmi://127.0.0.1 11] closed. -2024-08-07 17:19:33 - RMI TCP Connection(2)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:19:33 - [javax.management.remote.rmi.RMIConnectionImpl@322a14ea: connectionId=rmi://127.0.0.1 12] closing. -2024-08-07 17:19:33 - [javax.management.remote.rmi.RMIConnectionImpl@322a14ea: connectionId=rmi://127.0.0.1 12] closed. -2024-08-07 17:19:57 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.8145280210240743116/conf/jaspic-providers.xml] -2024-08-07 17:19:57 - OPTIONS "/api/events", parameters={} -2024-08-07 17:19:57 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:19:57 - Reject: 'http://m.localhost:3000' origin is not allowed -2024-08-07 17:19:57 - Completed 403 FORBIDDEN -2024-08-07 17:20:01 - RMI TCP Connection(3)-127.0.0.1: (port 65429) connection closed -2024-08-07 17:20:01 - RMI TCP Connection(1)-127.0.0.1: (port 65429) connection closed -2024-08-07 17:20:01 - RMI TCP Connection(2)-127.0.0.1: (port 65429) connection closed -2024-08-07 17:20:01 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=65432,localport=65429] -2024-08-07 17:20:01 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=65431,localport=65429] -2024-08-07 17:20:01 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=65430,localport=65429] -2024-08-07 17:20:01 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=65432,localport=65429] -2024-08-07 17:20:01 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=65430,localport=65429] -2024-08-07 17:20:01 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=65431,localport=65429] -2024-08-07 17:20:01 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:20:01 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:20:14 - OPTIONS "/api/events", parameters={} -2024-08-07 17:20:14 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:20:14 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:20:14 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:20:14 - Completed 200 OK -2024-08-07 17:20:14 - POST "/api/events", parameters={} -2024-08-07 17:20:14 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:20:14 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:20:14 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=asdf, password=1234]] -2024-08-07 17:20:14 - Found thread-bound EntityManager [SessionImpl(1043044077<open>)] for JPA transaction -2024-08-07 17:20:14 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 17:20:14 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:20:14 - begin -2024-08-07 17:20:14 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@4770086d] -2024-08-07 17:20:14 - Found thread-bound EntityManager [SessionImpl(1043044077<open>)] for JPA transaction -2024-08-07 17:20:14 - Participating in existing transaction -2024-08-07 17:20:14 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 17:20:14 - Executing identity-insert immediately -2024-08-07 17:20:14 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 17:20:14 - Initializer list is empty -2024-08-07 17:20:14 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@48d08fc5 -2024-08-07 17:20:14 - Extracted JDBC value [0] - [1] -2024-08-07 17:20:14 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@14f10f28 -2024-08-07 17:20:14 - Initiating transaction commit -2024-08-07 17:20:14 - Committing JPA transaction on EntityManager [SessionImpl(1043044077<open>)] -2024-08-07 17:20:14 - committing -2024-08-07 17:20:14 - Processing flush-time cascades -2024-08-07 17:20:14 - Dirty checking collections -2024-08-07 17:20:14 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 17:20:14 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 17:20:14 - Listing entities: -2024-08-07 17:20:14 - server.haengdong.domain.event.Event{password=1234, name=asdf, id=1, token=7ee10524-4c4e-470c-8439-77850e9dcedc} -2024-08-07 17:20:14 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:20:14 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:20:14 - Writing [EventResponse[eventId=7ee10524-4c4e-470c-8439-77850e9dcedc]] -2024-08-07 17:20:14 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:20:14 - Completed 200 OK -2024-08-07 17:20:15 - OPTIONS "/api/events/7ee10524-4c4e-470c-8439-77850e9dcedc", parameters={} -2024-08-07 17:20:15 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:20:15 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:20:15 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:20:15 - Completed 200 OK -2024-08-07 17:20:15 - OPTIONS "/api/events/7ee10524-4c4e-470c-8439-77850e9dcedc/actions", parameters={} -2024-08-07 17:20:15 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:20:15 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:20:15 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:20:15 - Completed 200 OK -2024-08-07 17:20:15 - GET "/api/events/7ee10524-4c4e-470c-8439-77850e9dcedc", parameters={} -2024-08-07 17:20:15 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:20:15 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:20:15 - Found thread-bound EntityManager [SessionImpl(1661630071<open>)] for JPA transaction -2024-08-07 17:20:15 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:20:15 - Setting JDBC Connection [HikariProxyConnection@1259711138 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:20:15 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:20:15 - begin -2024-08-07 17:20:15 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@1e1dabff] -2024-08-07 17:20:15 - GET "/api/events/7ee10524-4c4e-470c-8439-77850e9dcedc/actions", parameters={} -2024-08-07 17:20:15 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:20:15 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:20:15 - Found thread-bound EntityManager [SessionImpl(399272230<open>)] for JPA transaction -2024-08-07 17:20:15 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:20:15 - Setting JDBC Connection [HikariProxyConnection@334753543 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:20:15 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:20:15 - begin -2024-08-07 17:20:15 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@56f1631d] -2024-08-07 17:20:15 - Created new SQL alias : e1_0 -2024-08-07 17:20:15 - Created new SQL alias : e1_0 -2024-08-07 17:20:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744743835167875))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:20:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744743835167875))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:20:15 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@4a57ecf7 -2024-08-07 17:20:15 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@131c7d88 -2024-08-07 17:20:15 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744743835167875).token) -2024-08-07 17:20:15 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744743835167875).token) -2024-08-07 17:20:15 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744743835167875)] - | +-BasicFetch [server.haengdong.domain.event.Event(744743835167875).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744743835167875).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744743835167875).token] - -2024-08-07 17:20:15 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744743835167875)] - | +-BasicFetch [server.haengdong.domain.event.Event(744743835167875).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744743835167875).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744743835167875).token] - -2024-08-07 17:20:15 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744743835167875)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:20:15 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744743835167875)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:20:15 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:20:15 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:20:15 - Initializer list: - server.haengdong.domain.event.Event(744743835167875) -> EntityResultInitializer(server.haengdong.domain.event.Event(744743835167875))@373531064 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:20:15 - Initializer list: - server.haengdong.domain.event.Event(744743835167875) -> EntityResultInitializer(server.haengdong.domain.event.Event(744743835167875))@639259522 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:20:15 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:20:15 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:20:15 - Extracted JDBC value [0] - [1] -2024-08-07 17:20:15 - Extracted JDBC value [0] - [1] -2024-08-07 17:20:15 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744743835167875)): 1 -2024-08-07 17:20:15 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744743835167875)): 1 -2024-08-07 17:20:15 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744743835167875)#1] : 496315349 -2024-08-07 17:20:15 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744743835167875)#1] : 1122838500 -2024-08-07 17:20:15 - Extracted JDBC value [1] - [asdf] -2024-08-07 17:20:15 - Extracted JDBC value [1] - [asdf] -2024-08-07 17:20:15 - Extracted JDBC value [2] - [1234] -2024-08-07 17:20:15 - Extracted JDBC value [2] - [1234] -2024-08-07 17:20:15 - Extracted JDBC value [3] - [7ee10524-4c4e-470c-8439-77850e9dcedc] -2024-08-07 17:20:15 - Extracted JDBC value [3] - [7ee10524-4c4e-470c-8439-77850e9dcedc] -2024-08-07 17:20:15 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744743835167875)#1 -2024-08-07 17:20:15 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744743835167875)#1 -2024-08-07 17:20:15 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@1997d4be -2024-08-07 17:20:15 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@35ed5d2f -2024-08-07 17:20:15 - Initiating transaction commit -2024-08-07 17:20:15 - Committing JPA transaction on EntityManager [SessionImpl(1661630071<open>)] -2024-08-07 17:20:15 - committing -2024-08-07 17:20:15 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1259711138 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:20:15 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:20:15 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:20:15 - Writing [EventDetailResponse[eventName=asdf]] -2024-08-07 17:20:15 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:20:15 - Completed 200 OK -2024-08-07 17:20:15 - Created new SQL alias : ba1_0 -2024-08-07 17:20:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(744743682284708))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:20:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6fa43831] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:20:15 - Created new SQL alias : a1_0 -2024-08-07 17:20:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1f526578] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:20:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6fa43831] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:20:15 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@5a60c48d -2024-08-07 17:20:15 - Created new SQL alias : e1_0 -2024-08-07 17:20:15 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@49cef645 -2024-08-07 17:20:15 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(744743682284708).action(744743682317625).event(744743682327666) : event) -2024-08-07 17:20:15 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(744743682284708)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(744743682284708).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(744743682284708).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(744743682284708).title] - -2024-08-07 17:20:15 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(744743682284708)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(744743682284708).action(744743682317625)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(744743682284708).action(744743682317625).event(744743682327666)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:20:15 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:20:15 - Initializer list: - server.haengdong.domain.action.BillAction(744743682284708).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(744743682284708).action)@176734014 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@1879895469) - server.haengdong.domain.action.BillAction(744743682284708).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(744743682284708).action.event)@959428700 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@1912633869) - server.haengdong.domain.action.BillAction(744743682284708) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(744743682284708))@1027496508 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - -2024-08-07 17:20:15 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:20:15 - Created new SQL alias : ma1_0 -2024-08-07 17:20:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction(m))] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 17:20:15 - Created new SQL alias : a1_0 -2024-08-07 17:20:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5b3e8816] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 17:20:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4c0bf1c4] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 17:20:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@26afd7a0] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 17:20:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@26afd7a0] for NavigablePath [server.haengdong.domain.action.MemberAction(m).action(744743796522958).event] overrode previous registration : org.hibernate.sql.ast.tree.from.LazyTableGroup@4c0bf1c4 -2024-08-07 17:20:15 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 17:20:15 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 17:20:15 - Determining mapping-model type for SqmPath : SqmEntityValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action(744743796522958).event) -2024-08-07 17:20:15 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction(m)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.MemberAction(m).action(744743796522958)] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction(m).status] - -2024-08-07 17:20:15 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction(m)) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction(m).action(744743796522958)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.MemberAction(m).action(744743796522958).event) { - } - join LazyTableGroup (e2 : server.haengdong.domain.action.MemberAction(m).action(744743796522958).event) { - } - } - } - } - } - } - } - -2024-08-07 17:20:15 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:20:15 - Initializer list: - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@451461233 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(744743796522958) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744743796522958))@1690329781 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1007336282) - server.haengdong.domain.action.MemberAction(m).action(744743796522958).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744743796522958).event)@1101215197 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@1912633869) - -2024-08-07 17:20:15 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:20:15 - Initiating transaction commit -2024-08-07 17:20:15 - Committing JPA transaction on EntityManager [SessionImpl(399272230<open>)] -2024-08-07 17:20:15 - committing -2024-08-07 17:20:15 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@334753543 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:20:15 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:20:15 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:20:15 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:20:15 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:20:15 - Completed 200 OK -2024-08-07 17:20:17 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:20:17 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:20:17 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:20:17 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:20:17 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:65435] -2024-08-07 17:20:17 - RMI TCP Connection(4)-127.0.0.1: (port 65429) op = 80 -2024-08-07 17:20:17 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:20:17 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:20:17 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:20:17 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:20:17 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:20:31 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:20:31 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:20:32 - RMI TCP Connection(4)-127.0.0.1: (port 65429) connection closed -2024-08-07 17:20:32 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=65435,localport=65429] -2024-08-07 17:20:32 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=65435,localport=65429] -2024-08-07 17:21:01 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:21:01 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:21:05 - OPTIONS "/api/events", parameters={} -2024-08-07 17:21:05 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:21:05 - Reject: 'http://m.localhost:3000' origin is not allowed -2024-08-07 17:21:05 - Completed 403 FORBIDDEN -2024-08-07 17:21:26 - OPTIONS "/api/events/7ee10524-4c4e-470c-8439-77850e9dcedc/member-actions", parameters={} -2024-08-07 17:21:26 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:21:26 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:21:26 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:21:26 - Completed 200 OK -2024-08-07 17:21:26 - POST "/api/events/7ee10524-4c4e-470c-8439-77850e9dcedc/member-actions", parameters={} -2024-08-07 17:21:26 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:21:26 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 17:21:26 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:21:26 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 17:21:26 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 17:21:26 - Completed 401 UNAUTHORIZED -2024-08-07 17:21:27 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:21:27 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:21:31 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:21:31 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:21:41 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 17:21:41 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b, started on Wed Aug 07 17:19:31 KST 2024 -2024-08-07 17:21:41 - Stopping beans in phase 2147483647 -2024-08-07 17:21:41 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 17:21:41 - Stopping beans in phase 2147482623 -2024-08-07 17:21:41 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 17:21:41 - Stopping beans in phase 2147481599 -2024-08-07 17:21:41 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 17:21:41 - Stopping beans in phase -2147483647 -2024-08-07 17:21:41 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 17:21:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 17:21:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 17:21:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 17:21:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 17:21:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 17:21:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 17:21:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 17:21:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 17:21:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 17:21:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 17:21:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 17:21:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 17:21:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 17:21:41 - Unregistering JMX-exposed beans on shutdown -2024-08-07 17:21:41 - Unregistering JMX-exposed beans -2024-08-07 17:21:41 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 17:21:41 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 17:21:41 - HHH000031: Closing -2024-08-07 17:21:41 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@3c9aa713] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@9cdf13e] -2024-08-07 17:21:41 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 17:21:41 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 17:21:41 - HikariPool-1 - Shutdown initiated... -2024-08-07 17:21:41 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:21:41 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:21:41 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:21:41 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:21:41 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:21:41 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:21:41 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:21:41 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:21:41 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:21:41 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:21:41 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:21:41 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 17:21:41 - HikariPool-1 - Shutdown completed. -2024-08-07 17:21:41 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 17:21:42 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 17:21:42 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 17:21:42 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:21:42 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:21:42 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:21:42 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:21:42 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:21:42 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:21:42 - Loaded expression factory via original TCCL -2024-08-07 17:21:42 - Starting HaengdongApplication using Java 17.0.12 with PID 63497 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 17:21:42 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 17:21:42 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 17:21:42 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 17:21:42 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b -2024-08-07 17:21:42 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 17:21:42 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:21:42 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:21:42 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:21:42 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:21:42 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:21:42 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:21:42 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 17:21:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 17:21:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 17:21:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 17:21:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 17:21:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 17:21:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 17:21:42 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 17:21:42 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 17:21:42 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 17:21:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 17:21:42 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 17:21:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 17:21:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 17:21:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 17:21:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 17:21:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 17:21:42 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 17:21:43 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 17:21:43 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 17:21:43 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 17:21:43 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 17:21:43 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 17:21:43 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 17:21:43 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 17:21:43 - Finished Spring Data repository scanning in 15 ms. Found 4 JPA repository interfaces. -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 17:21:43 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 17:21:43 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 17:21:43 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 17:21:43 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 17:21:43 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 17:21:43 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 17:21:43 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 17:21:43 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 17:21:43 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@634ca3e7] -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 17:21:43 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 17:21:43 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 17:21:43 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 17:21:43 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 17:21:43 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 17:21:43 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 17:21:43 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 17:21:43 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 17:21:43 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:21:43 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:21:43 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:21:43 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 17:21:43 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 17:21:43 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 17:21:43 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 17:21:43 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 17:21:43 - Tomcat initialized with port 8080 (http) -2024-08-07 17:21:43 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@11eec06b] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@11eec06b] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.mapper.MapperListener@7ea71fc2] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.mapper.MapperListener@7ea71fc2] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 17:21:43 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 17:21:43 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@11eec06b] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@11eec06b] to [STARTING] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@11eec06b] to [STARTED] -2024-08-07 17:21:43 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 17:21:43 - Starting service [Tomcat] -2024-08-07 17:21:43 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 17:21:43 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 17:21:43 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.webresources.StandardRoot@79e10fb4] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.webresources.StandardRoot@79e10fb4] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.webresources.StandardRoot@79e10fb4] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.webresources.DirResourceSet@68bd8ca7] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.webresources.DirResourceSet@68bd8ca7] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.webresources.DirResourceSet@68bd8ca7] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.webresources.DirResourceSet@68bd8ca7] to [STARTING] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.webresources.DirResourceSet@68bd8ca7] to [STARTED] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.webresources.StandardRoot@79e10fb4] to [STARTING] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.webresources.StandardRoot@79e10fb4] to [STARTED] -2024-08-07 17:21:43 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:21:43 - Starting this Loader -2024-08-07 17:21:43 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:21:43 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:21:43 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 17:21:43 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@78b0ec3a] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@78b0ec3a] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@78b0ec3a] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@78b0ec3a] to [STARTING] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@78b0ec3a] to [STARTED] -2024-08-07 17:21:43 - Initializing Spring embedded WebApplicationContext -2024-08-07 17:21:43 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 17:21:43 - Root WebApplicationContext: initialization completed in 596 ms -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 17:21:43 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 17:21:43 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 17:21:43 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 17:21:43 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:21:43 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 17:21:43 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 17:21:43 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 17:21:43 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 17:21:43 - HikariPool-1 - configuration: -2024-08-07 17:21:43 - allowPoolSuspension.............false -2024-08-07 17:21:43 - autoCommit......................true -2024-08-07 17:21:43 - catalog.........................none -2024-08-07 17:21:43 - connectionInitSql...............none -2024-08-07 17:21:43 - connectionTestQuery.............none -2024-08-07 17:21:43 - connectionTimeout...............30000 -2024-08-07 17:21:43 - dataSource......................none -2024-08-07 17:21:43 - dataSourceClassName.............none -2024-08-07 17:21:43 - dataSourceJNDI..................none -2024-08-07 17:21:43 - dataSourceProperties............{password=<masked>} -2024-08-07 17:21:43 - driverClassName................."org.h2.Driver" -2024-08-07 17:21:43 - exceptionOverrideClassName......none -2024-08-07 17:21:43 - healthCheckProperties...........{} -2024-08-07 17:21:43 - healthCheckRegistry.............none -2024-08-07 17:21:43 - idleTimeout.....................600000 -2024-08-07 17:21:43 - initializationFailTimeout.......1 -2024-08-07 17:21:43 - isolateInternalQueries..........false -2024-08-07 17:21:43 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 17:21:43 - keepaliveTime...................0 -2024-08-07 17:21:43 - leakDetectionThreshold..........0 -2024-08-07 17:21:43 - maxLifetime.....................1800000 -2024-08-07 17:21:43 - maximumPoolSize.................10 -2024-08-07 17:21:43 - metricRegistry..................none -2024-08-07 17:21:43 - metricsTrackerFactory...........none -2024-08-07 17:21:43 - minimumIdle.....................10 -2024-08-07 17:21:43 - password........................<masked> -2024-08-07 17:21:43 - poolName........................"HikariPool-1" -2024-08-07 17:21:43 - readOnly........................false -2024-08-07 17:21:43 - registerMbeans..................false -2024-08-07 17:21:43 - scheduledExecutor...............none -2024-08-07 17:21:43 - schema..........................none -2024-08-07 17:21:43 - threadFactory...................internal -2024-08-07 17:21:43 - transactionIsolation............default -2024-08-07 17:21:43 - username........................"sa" -2024-08-07 17:21:43 - validationTimeout...............5000 -2024-08-07 17:21:43 - HikariPool-1 - Starting... -2024-08-07 17:21:43 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 17:21:43 - HikariPool-1 - Start completed. -2024-08-07 17:21:43 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 17:21:43 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 17:21:43 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:21:43 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 17:21:43 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:21:43 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:65451] -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:43 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 17:21:43 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:43 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 17:21:43 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 84 -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:43 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:21:43 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@70d5d96b] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@70d5d96b] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@70d5d96b] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@70d5d96b] to [STARTING] -2024-08-07 17:21:43 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@70d5d96b] to [STARTED] -2024-08-07 17:21:43 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:21:43 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:43 - [javax.management.remote.rmi.RMIConnectionImpl@1c2977f0: connectionId=rmi://127.0.0.1 1] closing. -2024-08-07 17:21:43 - [javax.management.remote.rmi.RMIConnectionImpl@1c2977f0: connectionId=rmi://127.0.0.1 1] closed. -2024-08-07 17:21:43 - Filter 'requestContextFilter' configured for use -2024-08-07 17:21:43 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 17:21:43 - Filter 'characterEncodingFilter' configured for use -2024-08-07 17:21:43 - Filter 'formContentFilter' configured for use -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:21:43 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:21:43 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:21:43 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 17:21:43 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.mapper.MapperListener@7ea71fc2] to [STARTING_PREP] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.mapper.MapperListener@7ea71fc2] to [STARTING] -2024-08-07 17:21:43 - Registered host [localhost] -2024-08-07 17:21:43 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 17:21:43 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 17:21:43 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 17:21:43 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 17:21:43 - Setting state for [org.apache.catalina.mapper.MapperListener@7ea71fc2] to [STARTED] -2024-08-07 17:21:43 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 17:21:43 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 17:21:43 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 17:21:43 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:21:43 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:21:43 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 17:21:43 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 17:21:43 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 17:21:43 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:21:43 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:21:43 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 17:21:43 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 17:21:43 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 17:21:43 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 17:21:43 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 17:21:43 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 17:21:43 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 17:21:43 - HHH000206: 'hibernate.properties' not found -2024-08-07 17:21:43 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 17:21:43 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 17:21:43 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 17:21:43 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 17:21:43 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 17:21:43 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 17:21:43 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 17:21:43 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 17:21:43 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 17:21:43 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 17:21:43 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 17:21:43 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 17:21:43 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 17:21:43 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 17:21:43 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 17:21:43 - HHH000026: Second-level cache disabled -2024-08-07 17:21:43 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@19e801b5 -2024-08-07 17:21:43 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@19e801b5 -2024-08-07 17:21:43 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@19e801b5 -2024-08-07 17:21:43 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-07 17:21:43 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-07 17:21:43 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-07 17:21:43 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-07 17:21:43 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-07 17:21:43 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-07 17:21:43 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-07 17:21:43 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-07 17:21:43 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-07 17:21:43 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-07 17:21:43 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-07 17:21:43 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-07 17:21:43 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 17:21:43 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 17:21:43 - Adding type registration image -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-07 17:21:43 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 17:21:43 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 17:21:43 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 17:21:43 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 17:21:43 - Adding type registration short -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 17:21:43 - Adding type registration short -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 17:21:43 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 17:21:43 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 17:21:43 - Adding type registration int -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 17:21:43 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 17:21:43 - Adding type registration long -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 17:21:43 - Adding type registration long -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 17:21:43 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 17:21:43 - Adding type registration float -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 17:21:43 - Adding type registration float -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 17:21:43 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 17:21:43 - Adding type registration double -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 17:21:43 - Adding type registration double -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 17:21:43 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 17:21:43 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 17:21:43 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 17:21:43 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 17:21:43 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 17:21:43 - Adding type registration character -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 17:21:43 - Adding type registration char -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 17:21:43 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 17:21:43 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 17:21:43 - Adding type registration string -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 17:21:43 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 17:21:43 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 17:21:43 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 17:21:43 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 17:21:43 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 17:21:43 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 17:21:43 - Adding type registration text -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 17:21:43 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 17:21:43 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 17:21:43 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 17:21:43 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 17:21:43 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 17:21:43 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 17:21:43 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 17:21:43 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 17:21:43 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 17:21:43 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 17:21:43 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 17:21:43 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 17:21:43 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 17:21:43 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 17:21:43 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 17:21:43 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 17:21:43 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 17:21:43 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 17:21:43 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 17:21:43 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 17:21:43 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 17:21:43 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 17:21:43 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 17:21:43 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 17:21:43 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 17:21:43 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 17:21:43 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 17:21:43 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 17:21:43 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 17:21:43 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 17:21:43 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 17:21:43 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 17:21:43 - Adding type registration date -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 17:21:43 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 17:21:43 - Adding type registration time -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 17:21:43 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 17:21:43 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 17:21:43 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 17:21:43 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 17:21:43 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 17:21:43 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 17:21:43 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 17:21:43 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 17:21:43 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 17:21:43 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 17:21:43 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 17:21:43 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 17:21:43 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 17:21:43 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 17:21:43 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 17:21:43 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 17:21:43 - Adding type registration class -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 17:21:43 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 17:21:43 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 17:21:43 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 17:21:43 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 17:21:43 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 17:21:43 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 17:21:43 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 17:21:43 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 17:21:43 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 17:21:43 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 17:21:43 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 17:21:43 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 17:21:43 - Adding type registration url -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 17:21:43 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 17:21:43 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 17:21:43 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 17:21:43 - Adding type registration object -> org.hibernate.type.JavaObjectType@68c4a860 -2024-08-07 17:21:43 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@68c4a860 -2024-08-07 17:21:43 - Adding type registration null -> org.hibernate.type.NullType@237aa0c7 -2024-08-07 17:21:43 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@1b8ee69d -2024-08-07 17:21:43 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@2b400bd0 -2024-08-07 17:21:43 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@fceab5d -2024-08-07 17:21:43 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@79445efb -2024-08-07 17:21:43 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@1592e540 -2024-08-07 17:21:43 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@3e2772a9 -2024-08-07 17:21:43 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@4449b273 -2024-08-07 17:21:43 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@1fa18f87 -2024-08-07 17:21:43 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bf66af] into BootstrapContext; was [null] -2024-08-07 17:21:43 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bf66af) [was null] -2024-08-07 17:21:43 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@11309dd4] into BootstrapContext; was [null] -2024-08-07 17:21:43 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@4f4d05b3] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@2bd4780c] -2024-08-07 17:21:43 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 17:21:43 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 17:21:43 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 17:21:43 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 17:21:43 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-07 17:21:43 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 17:21:43 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 17:21:43 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bf66af] -2024-08-07 17:21:43 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bf66af] -2024-08-07 17:21:43 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 17:21:43 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 17:21:43 - JDBC version : 4.2 -2024-08-07 17:21:43 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 17:21:43 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 17:21:43 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 17:21:43 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 17:21:43 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 17:21:43 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 17:21:43 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 17:21:43 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 17:21:43 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-07 17:21:43 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 17:21:43 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 17:21:43 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 17:21:43 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 17:21:43 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@5f9ccd0c] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@6738e8b2] -2024-08-07 17:21:43 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 17:21:43 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 17:21:43 - Import with entity name Action -2024-08-07 17:21:43 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 17:21:43 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:21:43 - Binding column: AnnotatedColumn() -2024-08-07 17:21:43 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:21:43 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:21:43 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:21:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 17:21:43 - building BasicValue for id -2024-08-07 17:21:43 - Skipping column re-registration: action.id -2024-08-07 17:21:43 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 17:21:43 - Building property id -2024-08-07 17:21:43 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 17:21:43 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:21:43 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:21:43 - Binding column: AnnotatedColumn() -2024-08-07 17:21:43 - Building property event -2024-08-07 17:21:43 - Binding column: AnnotatedColumn() -2024-08-07 17:21:43 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 17:21:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 17:21:43 - building BasicValue for sequence -2024-08-07 17:21:43 - Skipping column re-registration: action.sequence -2024-08-07 17:21:43 - Building property sequence -2024-08-07 17:21:43 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:21:43 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 17:21:43 - Import with entity name BillAction -2024-08-07 17:21:43 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 17:21:43 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:21:43 - Binding column: AnnotatedColumn() -2024-08-07 17:21:43 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:21:43 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:21:43 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:21:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 17:21:43 - building BasicValue for id -2024-08-07 17:21:43 - Skipping column re-registration: bill_action.id -2024-08-07 17:21:43 - Building property id -2024-08-07 17:21:43 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:21:43 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:21:43 - Binding column: AnnotatedColumn() -2024-08-07 17:21:43 - Building property action -2024-08-07 17:21:43 - Binding column: AnnotatedColumn() -2024-08-07 17:21:43 - MetadataSourceProcessor property price with lazy=false -2024-08-07 17:21:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 17:21:43 - building BasicValue for price -2024-08-07 17:21:43 - Skipping column re-registration: bill_action.price -2024-08-07 17:21:43 - Building property price -2024-08-07 17:21:43 - Binding column: AnnotatedColumn() -2024-08-07 17:21:43 - MetadataSourceProcessor property title with lazy=false -2024-08-07 17:21:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 17:21:43 - building BasicValue for title -2024-08-07 17:21:43 - Skipping column re-registration: bill_action.title -2024-08-07 17:21:43 - Building property title -2024-08-07 17:21:43 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:21:43 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 17:21:43 - Import with entity name MemberAction -2024-08-07 17:21:43 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 17:21:43 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:21:43 - Binding column: AnnotatedColumn() -2024-08-07 17:21:43 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:21:43 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:21:43 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:21:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 17:21:43 - building BasicValue for id -2024-08-07 17:21:43 - Skipping column re-registration: member_action.id -2024-08-07 17:21:43 - Building property id -2024-08-07 17:21:43 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:21:43 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:21:43 - Binding column: AnnotatedColumn() -2024-08-07 17:21:43 - Building property action -2024-08-07 17:21:43 - Binding column: AnnotatedColumn() -2024-08-07 17:21:43 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 17:21:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 17:21:43 - building BasicValue for memberGroupId -2024-08-07 17:21:43 - Skipping column re-registration: member_action.member_group_id -2024-08-07 17:21:43 - Building property memberGroupId -2024-08-07 17:21:43 - Binding column: AnnotatedColumn() -2024-08-07 17:21:43 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 17:21:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 17:21:43 - building BasicValue for memberName -2024-08-07 17:21:43 - Skipping column re-registration: member_action.member_name -2024-08-07 17:21:43 - Building property memberName -2024-08-07 17:21:43 - Binding column: AnnotatedColumn() -2024-08-07 17:21:43 - MetadataSourceProcessor property status with lazy=false -2024-08-07 17:21:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 17:21:43 - building BasicValue for status -2024-08-07 17:21:43 - Skipping column re-registration: member_action.status -2024-08-07 17:21:43 - Building property status -2024-08-07 17:21:43 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:21:43 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 17:21:43 - Import with entity name Event -2024-08-07 17:21:43 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 17:21:43 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:21:43 - Binding column: AnnotatedColumn() -2024-08-07 17:21:43 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:21:43 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:21:43 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:21:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 17:21:43 - building BasicValue for id -2024-08-07 17:21:43 - Skipping column re-registration: event.id -2024-08-07 17:21:43 - Building property id -2024-08-07 17:21:43 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:21:43 - Binding column: AnnotatedColumn() -2024-08-07 17:21:43 - MetadataSourceProcessor property name with lazy=false -2024-08-07 17:21:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 17:21:43 - building BasicValue for name -2024-08-07 17:21:43 - Skipping column re-registration: event.name -2024-08-07 17:21:43 - Building property name -2024-08-07 17:21:43 - Binding column: AnnotatedColumn() -2024-08-07 17:21:43 - MetadataSourceProcessor property password with lazy=false -2024-08-07 17:21:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 17:21:43 - building BasicValue for password -2024-08-07 17:21:43 - Skipping column re-registration: event.password -2024-08-07 17:21:43 - Building property password -2024-08-07 17:21:43 - Binding column: AnnotatedColumn() -2024-08-07 17:21:43 - MetadataSourceProcessor property token with lazy=false -2024-08-07 17:21:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 17:21:43 - building BasicValue for token -2024-08-07 17:21:43 - Skipping column re-registration: event.token -2024-08-07 17:21:43 - Building property token -2024-08-07 17:21:43 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 17:21:43 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 17:21:43 - Import with entity name EventStep -2024-08-07 17:21:43 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 17:21:43 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:21:43 - Binding column: AnnotatedColumn() -2024-08-07 17:21:43 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:21:43 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:21:43 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:21:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 17:21:43 - building BasicValue for id -2024-08-07 17:21:43 - Skipping column re-registration: event_step.id -2024-08-07 17:21:43 - Building property id -2024-08-07 17:21:43 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:21:43 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:21:43 - Binding column: AnnotatedColumn() -2024-08-07 17:21:43 - Building property event -2024-08-07 17:21:43 - Binding column: AnnotatedColumn() -2024-08-07 17:21:43 - MetadataSourceProcessor property name with lazy=false -2024-08-07 17:21:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 17:21:43 - building BasicValue for name -2024-08-07 17:21:43 - Skipping column re-registration: event_step.name -2024-08-07 17:21:43 - Building property name -2024-08-07 17:21:43 - Binding column: AnnotatedColumn() -2024-08-07 17:21:43 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 17:21:43 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 17:21:43 - building BasicValue for sequence -2024-08-07 17:21:43 - Skipping column re-registration: event_step.sequence -2024-08-07 17:21:43 - Building property sequence -2024-08-07 17:21:43 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 17:21:43 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:21:43 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 17:21:43 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:21:43 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 17:21:43 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 17:21:43 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:21:43 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 17:21:43 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 17:21:43 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 17:21:43 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:21:43 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 17:21:43 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 17:21:43 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 17:21:43 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:21:43 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 17:21:43 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 17:21:43 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 17:21:43 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 17:21:43 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 17:21:43 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 17:21:43 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 17:21:43 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 17:21:43 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 17:21:43 - Building session factory -2024-08-07 17:21:43 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:21:43 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@6655f3cd, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@2484c868, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.7590815342667585431, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=63497, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.7590815342667585431, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@19d13d04, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 17:21:43 - Session factory constructed with filter configurations : {} -2024-08-07 17:21:43 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:21:43 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:21:43 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:21:43 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:21:43 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:21:43 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:21:43 - Loaded expression factory via original TCCL -2024-08-07 17:21:43 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:21:43 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:21:43 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:21:43 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:21:43 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:21:43 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:21:43 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:21:43 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:21:43 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:21:43 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:21:43 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:21:43 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:21:43 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:21:43 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:21:43 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:21:43 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:21:43 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:21:43 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 17:21:43 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@51efdb72] under count; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@4d9cf71d] under every; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@5c43cb12] under any; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5c81ddab] under sinh; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@24ee6faa] under cosh; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6d4f266] under tanh; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6b756a62] under pi; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@394b9e22] under log; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 17:21:43 - Registering alternate key : length -> character_length -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@46c9ee28] under position; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@62871522] under overlay; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@862624f] under trim; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@1c528f2f] under cast; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@34ff08c6] under collate; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@35451ba6] under extract; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@2a7392a3] under ifnull; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@5382a35f] under pad; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@4a7c72af] under str; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@7c680fe1] under format; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@4419cd6e] under timestampadd; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@1e965426] under timestampdiff; prior registration was null -2024-08-07 17:21:43 - Registering alternate key : dateadd -> timestampadd -2024-08-07 17:21:43 - Registering alternate key : datediff -> timestampdiff -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@261099e1] under current_date; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@ed1d2cf] under current_time; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@b814e23] under current_timestamp; prior registration was null -2024-08-07 17:21:43 - Registering alternate key : current date -> current_date -2024-08-07 17:21:43 - Registering alternate key : current time -> current_time -2024-08-07 17:21:43 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5f81507a] under local_date; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7d7c05fa] under local_time; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7dbbf730] under local_datetime; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7c4a5ef2] under offset_datetime; prior registration was null -2024-08-07 17:21:43 - Registering alternate key : local date -> local_date -2024-08-07 17:21:43 - Registering alternate key : local time -> local_time -2024-08-07 17:21:43 - Registering alternate key : local datetime -> local_datetime -2024-08-07 17:21:43 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@299dd381] under instant; prior registration was null -2024-08-07 17:21:43 - Registering alternate key : current_instant -> instant -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@7fa68ff4] under sql; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@515fff35] under count; prior registration was org.hibernate.dialect.function.CountFunction@51efdb72 -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@16c1d11] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6b756a62 -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@123d0816] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 17:21:43 - Registering alternate key : day -> day_of_month -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@7d7c05fa -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@7dbbf730 -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@13f7c165] under trunc; prior registration was null -2024-08-07 17:21:43 - Registering alternate key : truncate -> trunc -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@655f92a1] under date_trunc; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 17:21:43 - Registering alternate key : chr -> char -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1d2d793d] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@46c9ee28 -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@57fec63f] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 17:21:43 - Registering alternate key : every -> bool_and -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 17:21:43 - Registering alternate key : any -> bool_or -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@7a2fd94c] under format; prior registration was org.hibernate.dialect.function.FormatFunction@7c680fe1 -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@37ab1b10] under listagg; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@30ca66c5] under mode; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@4abfa2ff] under percentile_cont; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@38c1b1a7] under percentile_disc; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@125a8ab6] under rank; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@792b9dd3] under dense_rank; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@cbc3bf3] under percent_rank; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@31f9f9b3] under cume_dist; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@322eb1a] under array; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@2b4ba2d9] under array_list; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@2c6efee3] under array_agg; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@29c21acb] under array_position; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@7fa8fff] under array_positions; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@623ded82] under array_positions_list; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@180e33b0] under array_length; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@15c3585] under array_concat; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@4e826fd4] under array_prepend; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@5f14590c] under array_append; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@58835bba] under array_contains; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@222eda8a] under array_contains_nullable; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@1e09c0b] under array_overlaps; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@4880a9d] under array_overlaps_nullable; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5400db7e] under array_get; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@40d04cf8] under array_set; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@5d373794] under array_remove; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@41f5389f] under array_remove_index; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3a012678] under array_slice; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@329efc61] under array_replace; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@32f45e15] under array_trim; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@524dd373] under array_fill; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@5ca3acad] under array_fill_list; prior registration was null -2024-08-07 17:21:43 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@583b4af4] under array_to_string; prior registration was null -2024-08-07 17:21:43 - abs(NUMERIC arg) -2024-08-07 17:21:43 - Double acos(NUMERIC arg) -2024-08-07 17:21:43 - Boolean any(BOOLEAN predicate) -2024-08-07 17:21:43 - array( ... ) -2024-08-07 17:21:43 - array_agg(arg) -2024-08-07 17:21:43 - array_append( ... ) -2024-08-07 17:21:43 - array_concat( ... ) -2024-08-07 17:21:43 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 17:21:43 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 17:21:43 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 17:21:43 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 17:21:43 - array_get(ARRAY array, INTEGER index) -2024-08-07 17:21:43 - Integer array_length(ARRAY array) -2024-08-07 17:21:43 - array_list( ... ) -2024-08-07 17:21:43 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 17:21:43 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 17:21:43 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 17:21:43 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 17:21:43 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 17:21:43 - array_prepend( ... ) -2024-08-07 17:21:43 - array_remove( ... ) -2024-08-07 17:21:43 - array_remove_index( ... ) -2024-08-07 17:21:43 - array_replace( ... ) -2024-08-07 17:21:43 - array_set( ... ) -2024-08-07 17:21:43 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 17:21:43 - String array_to_string( ... ) -2024-08-07 17:21:43 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 17:21:43 - Integer ascii(STRING arg) -2024-08-07 17:21:43 - Double asin(NUMERIC arg) -2024-08-07 17:21:43 - Double atan(NUMERIC arg) -2024-08-07 17:21:43 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 17:21:43 - avg(NUMERIC arg) -2024-08-07 17:21:43 - bit_and(arg) -2024-08-07 17:21:43 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 17:21:43 - bit_or(arg) -2024-08-07 17:21:43 - bitand(arg0, arg1) -2024-08-07 17:21:43 - bitnot(arg) -2024-08-07 17:21:43 - bitor(arg0, arg1) -2024-08-07 17:21:43 - bitxor(arg0, arg1) -2024-08-07 17:21:43 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 17:21:43 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 17:21:43 - cast(arg as Type) -2024-08-07 17:21:43 - ceiling(NUMERIC arg) -2024-08-07 17:21:43 - Character char(INTEGER arg) -2024-08-07 17:21:43 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 17:21:43 - Character chr(INTEGER arg) -2024-08-07 17:21:43 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 17:21:43 - String collate(STRING string as COLLATION collation) -2024-08-07 17:21:43 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 17:21:43 - Double cos(NUMERIC arg) -2024-08-07 17:21:43 - Double cosh(NUMERIC arg) -2024-08-07 17:21:43 - Double cot(NUMERIC arg) -2024-08-07 17:21:43 - Long count([distinct ]{arg|*}) -2024-08-07 17:21:43 - Double cume_dist([arg0[, ...]]) -2024-08-07 17:21:43 - Date curdate() -2024-08-07 17:21:43 - Date current date -2024-08-07 17:21:43 - Time current time -2024-08-07 17:21:43 - Timestamp current timestamp -2024-08-07 17:21:43 - Date current_date -2024-08-07 17:21:43 - Instant current_instant -2024-08-07 17:21:43 - Time current_time -2024-08-07 17:21:43 - Timestamp current_timestamp -2024-08-07 17:21:43 - Time curtime() -2024-08-07 17:21:43 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 17:21:43 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 17:21:43 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 17:21:43 - Integer day(DATE arg) -2024-08-07 17:21:43 - Integer day_of_month(DATE arg) -2024-08-07 17:21:43 - Integer day_of_week(DATE arg) -2024-08-07 17:21:43 - Integer day_of_year(DATE arg) -2024-08-07 17:21:43 - String dayname(DATE arg) -2024-08-07 17:21:43 - Double degrees(NUMERIC arg) -2024-08-07 17:21:43 - Long dense_rank([arg0[, ...]]) -2024-08-07 17:21:43 - Boolean every(BOOLEAN predicate) -2024-08-07 17:21:43 - Double exp(NUMERIC arg) -2024-08-07 17:21:43 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 17:21:43 - first_valueANY value -2024-08-07 17:21:43 - floor(NUMERIC arg) -2024-08-07 17:21:43 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 17:21:43 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 17:21:43 - Integer hour(TIME arg) -2024-08-07 17:21:43 - ifnull(arg0, arg1) -2024-08-07 17:21:43 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 17:21:43 - Instant instant -2024-08-07 17:21:43 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 17:21:43 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 17:21:43 - last_valueANY value -2024-08-07 17:21:43 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 17:21:43 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 17:21:43 - String left(STRING string, INTEGER length) -2024-08-07 17:21:43 - Integer length(STRING_OR_CLOB arg) -2024-08-07 17:21:43 - String listagg(STRING arg0, STRING arg1) -2024-08-07 17:21:43 - Double ln(NUMERIC arg) -2024-08-07 17:21:43 - LocalDate local date -2024-08-07 17:21:43 - LocalDateTime local datetime -2024-08-07 17:21:43 - LocalTime local time -2024-08-07 17:21:43 - LocalDate local_date -2024-08-07 17:21:43 - LocalDateTime local_datetime -2024-08-07 17:21:43 - LocalTime local_time -2024-08-07 17:21:43 - Time localtime -2024-08-07 17:21:43 - Timestamp localtimestamp -2024-08-07 17:21:43 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 17:21:43 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 17:21:43 - Double log10(NUMERIC arg) -2024-08-07 17:21:43 - String lower(STRING string) -2024-08-07 17:21:43 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 17:21:43 - String ltrim(STRING string) -2024-08-07 17:21:43 - max(COMPARABLE arg) -2024-08-07 17:21:43 - Double median(NUMERIC arg) -2024-08-07 17:21:43 - Integer microsecond(TIME arg) -2024-08-07 17:21:43 - min(COMPARABLE arg) -2024-08-07 17:21:43 - Integer minute(TIME arg) -2024-08-07 17:21:43 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 17:21:43 - mode() -2024-08-07 17:21:43 - Integer month(DATE arg) -2024-08-07 17:21:43 - String monthname(DATE arg) -2024-08-07 17:21:43 - Timestamp now() -2024-08-07 17:21:43 - nth_valueANY value, INTEGER nth -2024-08-07 17:21:43 - nullif(arg0, arg1) -2024-08-07 17:21:43 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 17:21:43 - OffsetDateTime offset datetime -2024-08-07 17:21:43 - OffsetDateTime offset_datetime -2024-08-07 17:21:43 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 17:21:43 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 17:21:43 - Double percent_rank([arg0[, ...]]) -2024-08-07 17:21:43 - percentile_cont(NUMERIC arg) -2024-08-07 17:21:43 - percentile_disc(NUMERIC arg) -2024-08-07 17:21:43 - Double pi -2024-08-07 17:21:43 - Integer position(STRING pattern in STRING string) -2024-08-07 17:21:43 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 17:21:43 - Integer quarter(DATE arg) -2024-08-07 17:21:43 - Double radians(NUMERIC arg) -2024-08-07 17:21:43 - Double rand([INTEGER seed]) -2024-08-07 17:21:43 - Long rank([arg0[, ...]]) -2024-08-07 17:21:43 - String repeat(STRING string, INTEGER times) -2024-08-07 17:21:43 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 17:21:43 - String right(STRING string, INTEGER length) -2024-08-07 17:21:43 - round(NUMERIC number[, INTEGER places]) -2024-08-07 17:21:43 - Long row_number() -2024-08-07 17:21:43 - Long rownum() -2024-08-07 17:21:43 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 17:21:43 - String rtrim(STRING string) -2024-08-07 17:21:43 - Integer second(TIME arg) -2024-08-07 17:21:43 - Integer sign(NUMERIC arg) -2024-08-07 17:21:43 - Double sin(NUMERIC arg) -2024-08-07 17:21:43 - Double sinh(NUMERIC arg) -2024-08-07 17:21:43 - String soundex(arg) -2024-08-07 17:21:43 - String space(INTEGER arg) -2024-08-07 17:21:43 - Object sql -2024-08-07 17:21:43 - Double sqrt(NUMERIC arg) -2024-08-07 17:21:43 - Double stddev_pop(NUMERIC arg) -2024-08-07 17:21:43 - Double stddev_samp(NUMERIC arg) -2024-08-07 17:21:43 - String str(arg) -2024-08-07 17:21:43 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 17:21:43 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 17:21:43 - sum(arg) -2024-08-07 17:21:43 - Timestamp sysdate -2024-08-07 17:21:43 - Double tan(NUMERIC arg) -2024-08-07 17:21:43 - Double tanh(NUMERIC arg) -2024-08-07 17:21:43 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 17:21:43 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 17:21:43 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 17:21:43 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 17:21:43 - trunc( ... ) -2024-08-07 17:21:43 - truncate( ... ) -2024-08-07 17:21:43 - String upper(STRING string) -2024-08-07 17:21:43 - Double var_pop(NUMERIC arg) -2024-08-07 17:21:43 - Double var_samp(NUMERIC arg) -2024-08-07 17:21:43 - Integer week(DATE arg) -2024-08-07 17:21:43 - Integer year(DATE arg) -2024-08-07 17:21:43 - Starting QueryInterpretationCache(2048) -2024-08-07 17:21:43 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 17:21:43 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 17:21:43 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:21:43 - Configured EntityCopyObserver strategy: disallow -2024-08-07 17:21:44 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:21:44 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:21:44 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:21:44 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 17:21:44 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:21:44 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:21:44 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 17:21:44 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:21:44 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:21:44 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 17:21:44 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:21:44 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:21:44 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 17:21:44 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:21:44 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:21:44 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 17:21:44 - Starting post-init callbacks -2024-08-07 17:21:44 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 17:21:44 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 17:21:44 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 17:21:44 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 17:21:44 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 17:21:44 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 17:21:44 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 17:21:44 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 17:21:44 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 17:21:44 - Created new SQL alias : ba1_0 -2024-08-07 17:21:44 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:21:44 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1c3400df] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 82 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:44 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 82 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:44 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 82 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 84 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 82 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 82 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:44 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 82 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:44 - [javax.management.remote.rmi.RMIConnectionImpl@6f0b2f61: connectionId=rmi://127.0.0.1 2] closing. -2024-08-07 17:21:44 - [javax.management.remote.rmi.RMIConnectionImpl@6f0b2f61: connectionId=rmi://127.0.0.1 2] closed. -2024-08-07 17:21:44 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 17:21:44 - Version select: select id from bill_action where id=? -2024-08-07 17:21:44 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 17:21:44 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 17:21:44 - Delete (0): delete from bill_action where id=? -2024-08-07 17:21:44 - Created new SQL alias : ma1_0 -2024-08-07 17:21:44 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 17:21:44 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2f83467] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 17:21:44 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 17:21:44 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 17:21:44 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 17:21:44 - Version select: select id from member_action where id=? -2024-08-07 17:21:44 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 17:21:44 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 17:21:44 - Delete (0): delete from member_action where id=? -2024-08-07 17:21:44 - Created new SQL alias : e1_0 -2024-08-07 17:21:44 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:21:44 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 17:21:44 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:21:44 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 17:21:44 - Version select: select id from event where id=? -2024-08-07 17:21:44 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 17:21:44 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 17:21:44 - Delete (0): delete from event where id=? -2024-08-07 17:21:44 - Created new SQL alias : a1_0 -2024-08-07 17:21:44 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 17:21:44 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@435e224d] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 17:21:44 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 17:21:44 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 17:21:44 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 17:21:44 - Version select: select id from action where id=? -2024-08-07 17:21:44 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 17:21:44 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 17:21:44 - Delete (0): delete from action where id=? -2024-08-07 17:21:44 - Created new SQL alias : es1_0 -2024-08-07 17:21:44 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 17:21:44 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6dd7af2f] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 17:21:44 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 17:21:44 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 17:21:44 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 17:21:44 - Version select: select id from event_step where id=? -2024-08-07 17:21:44 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 17:21:44 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 17:21:44 - Delete (0): delete from event_step where id=? -2024-08-07 17:21:44 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 17:21:44 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@5f9ccd0c] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@71d8794f] -2024-08-07 17:21:44 - Checking 0 named HQL queries -2024-08-07 17:21:44 - Checking 0 named SQL queries -2024-08-07 17:21:44 - - drop table if exists action cascade -2024-08-07 17:21:44 - - drop table if exists bill_action cascade -2024-08-07 17:21:44 - - drop table if exists event cascade -2024-08-07 17:21:44 - - drop table if exists event_step cascade -2024-08-07 17:21:44 - - drop table if exists member_action cascade -2024-08-07 17:21:44 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 17:21:44 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 17:21:44 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 17:21:44 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 17:21:44 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 17:21:44 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 17:21:44 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 17:21:44 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 17:21:44 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 17:21:44 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@64641998 -2024-08-07 17:21:44 - Registering SessionFactory: e0578447-2f11-422e-85eb-3ae163865412 (<unnamed>) -2024-08-07 17:21:44 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 17:21:44 - Instantiated SessionFactory -2024-08-07 17:21:44 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'actionService' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 17:21:44 - Initializing JpaMetamodelMappingContext… -2024-08-07 17:21:44 - Finished initializing JpaMetamodelMappingContext -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - Statistics initialized [enabled=false] -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 17:21:44 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 17:21:44 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - Looking up named query BillAction.findByAction_Event -2024-08-07 17:21:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:21:44 - Did not find named query BillAction.findByAction_Event -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - Looking up named query BillAction.findByAction_Id -2024-08-07 17:21:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:21:44 - Did not find named query BillAction.findByAction_Id -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 17:21:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:21:44 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 17:21:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:21:44 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 17:21:44 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:21:44 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(744875576253208)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(744875576253208)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(744875576253208)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(744875576253208)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(744875576253208).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:21:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:21:44 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 17:21:44 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:21:44 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:21:44 - Looking up named query MemberAction.findByAction -2024-08-07 17:21:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:21:44 - Did not find named query MemberAction.findByAction -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 17:21:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:21:44 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 17:21:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:21:44 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:21:44 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 17:21:44 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 17:21:44 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:21:44 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 17:21:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:21:44 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 17:21:44 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 17:21:44 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 17:21:44 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 17:21:44 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - Looking up named query Event.findByToken -2024-08-07 17:21:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:21:44 - Did not find named query Event.findByToken -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 17:21:44 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 17:21:44 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:21:44 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:21:44 - Did not find named query Action.findLastByEvent.count -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 17:21:44 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:21:44 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:21:44 - Looking up named query Action.findByIdAndEvent -2024-08-07 17:21:44 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:21:44 - Did not find named query Action.findByIdAndEvent -2024-08-07 17:21:44 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:21:44 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 17:21:44 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 17:21:44 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 17:21:44 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'eventService' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 17:21:44 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 17:21:44 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 17:21:44 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 17:21:44 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 17:21:44 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 17:21:44 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 17:21:44 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:21:44 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 17:21:44 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 17:21:44 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 17:21:44 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'actionController' -2024-08-07 17:21:44 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 17:21:44 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'eventController' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'authService' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 17:21:44 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 17:21:44 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 17:21:44 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 17:21:44 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 17:21:44 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:21:44 - Loaded expression factory via original TCCL -2024-08-07 17:21:44 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 17:21:44 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 17:21:44 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:21:44 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 17:21:44 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:21:44 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:21:44 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:21:44 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:21:44 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:21:44 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:21:44 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:21:44 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:21:44 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:21:44 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:21:44 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'error' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 17:21:44 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 17:21:44 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 17:21:44 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 17:21:44 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 17:21:44 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:21:44 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:21:44 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 17:21:44 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:21:44 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:21:44 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 17:21:44 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:21:44 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:21:44 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:21:44 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 17:21:44 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 17:21:44 - - s.h.p.EventController: - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) -2024-08-07 17:21:44 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 17:21:44 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 17:21:44 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 17:21:44 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:21:44 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 17:21:44 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:21:44 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:21:44 - 'beanNameHandlerMapping' {} -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 17:21:44 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:21:44 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 17:21:44 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 17:21:44 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:21:44 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:21:44 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 17:21:44 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:21:44 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 17:21:44 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 17:21:44 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 17:21:44 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:21:44 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:21:44 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:21:44 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 17:21:44 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:21:44 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 17:21:44 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 17:21:44 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 17:21:44 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 17:21:44 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 17:21:44 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 17:21:44 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 17:21:44 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:21:44 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 17:21:44 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 17:21:44 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 17:21:44 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 17:21:44 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 82 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 17:21:44 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:21:44 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 82 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 82 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 84 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 82 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 82 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:44 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:21:44 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:44 - [javax.management.remote.rmi.RMIConnectionImpl@5ffcb940: connectionId=rmi://127.0.0.1 3] closing. -2024-08-07 17:21:44 - [javax.management.remote.rmi.RMIConnectionImpl@5ffcb940: connectionId=rmi://127.0.0.1 3] closed. -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 17:21:44 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:21:44 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 17:21:44 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 17:21:44 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 17:21:44 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 17:21:44 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 17:21:44 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 17:21:44 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 17:21:44 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 17:21:44 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 17:21:44 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 17:21:44 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 17:21:44 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 17:21:44 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 17:21:44 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:21:44 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 17:21:44 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 17:21:44 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 17:21:44 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 17:21:44 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 17:21:44 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 17:21:44 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 17:21:44 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 17:21:44 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 17:21:44 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 17:21:44 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 17:21:44 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:21:44 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:21:44 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 17:21:44 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 17:21:44 - Using SLF4J as the default logging framework -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 17:21:44 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 17:21:44 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 17:21:44 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 17:21:44 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 17:21:44 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 17:21:44 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 17:21:44 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 17:21:44 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 17:21:44 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 17:21:44 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 17:21:44 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 17:21:44 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 17:21:44 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 17:21:44 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 17:21:44 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 17:21:44 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 17:21:44 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 17:21:44 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 17:21:44 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:21:44 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:21:44 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 17:21:44 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 17:21:44 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 17:21:44 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:21:44 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:21:44 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 17:21:44 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 17:21:44 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 17:21:44 - Registering beans for JMX exposure on startup -2024-08-07 17:21:44 - Auto-detecting user-defined JMX MBeans -2024-08-07 17:21:44 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 17:21:44 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 17:21:44 - Starting beans in phase -2147483647 -2024-08-07 17:21:44 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 17:21:44 - Starting beans in phase 2147481599 -2024-08-07 17:21:44 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 17:21:44 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 17:21:44 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 17:21:44 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 17:21:44 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 17:21:44 - Successfully started bean 'webServerStartStop' -2024-08-07 17:21:44 - Starting beans in phase 2147482623 -2024-08-07 17:21:44 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 17:21:44 - Starting beans in phase 2147483647 -2024-08-07 17:21:44 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 17:21:44 - Started HaengdongApplication in 2.121 seconds (process running for 2.336) -2024-08-07 17:21:44 - Application availability state LivenessState changed to CORRECT -2024-08-07 17:21:44 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 17:21:45 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 82 -2024-08-07 17:21:45 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 84 -2024-08-07 17:21:45 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:21:45 - RMI TCP Connection(1)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - [javax.management.remote.rmi.RMIConnectionImpl@7acaff8d: connectionId=rmi://127.0.0.1 4] closing. -2024-08-07 17:21:45 - [javax.management.remote.rmi.RMIConnectionImpl@7acaff8d: connectionId=rmi://127.0.0.1 4] closed. -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:65453] -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:65452] -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 84 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 84 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - [javax.management.remote.rmi.RMIConnectionImpl@a8954a0: connectionId=rmi://127.0.0.1 5] closing. -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - [javax.management.remote.rmi.RMIConnectionImpl@a8954a0: connectionId=rmi://127.0.0.1 5] closed. -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 84 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - [javax.management.remote.rmi.RMIConnectionImpl@7789f383: connectionId=rmi://127.0.0.1 6] closing. -2024-08-07 17:21:45 - [javax.management.remote.rmi.RMIConnectionImpl@552205de: connectionId=rmi://127.0.0.1 7] closing. -2024-08-07 17:21:45 - [javax.management.remote.rmi.RMIConnectionImpl@7789f383: connectionId=rmi://127.0.0.1 6] closed. -2024-08-07 17:21:45 - [javax.management.remote.rmi.RMIConnectionImpl@552205de: connectionId=rmi://127.0.0.1 7] closed. -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 84 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - [javax.management.remote.rmi.RMIConnectionImpl@3b74caa: connectionId=rmi://127.0.0.1 8] closing. -2024-08-07 17:21:45 - [javax.management.remote.rmi.RMIConnectionImpl@3b74caa: connectionId=rmi://127.0.0.1 8] closed. -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 82 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 82 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 84 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 84 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - [javax.management.remote.rmi.RMIConnectionImpl@3470a1b2: connectionId=rmi://127.0.0.1 9] closing. -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - [javax.management.remote.rmi.RMIConnectionImpl@3470a1b2: connectionId=rmi://127.0.0.1 9] closed. -2024-08-07 17:21:45 - [javax.management.remote.rmi.RMIConnectionImpl@609c6e9f: connectionId=rmi://127.0.0.1 10] closing. -2024-08-07 17:21:45 - [javax.management.remote.rmi.RMIConnectionImpl@609c6e9f: connectionId=rmi://127.0.0.1 10] closed. -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 84 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 84 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:45 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 17:21:45 - Fetching JDBC Connection from DataSource -2024-08-07 17:21:45 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 17:21:45 - Initializing Servlet 'dispatcherServlet' -2024-08-07 17:21:45 - Detected StandardServletMultipartResolver -2024-08-07 17:21:45 - Detected AcceptHeaderLocaleResolver -2024-08-07 17:21:45 - Detected FixedThemeResolver -2024-08-07 17:21:45 - Fetching JDBC Connection from DataSource -2024-08-07 17:21:45 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@2471cfa0 -2024-08-07 17:21:45 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@3a3740a5 -2024-08-07 17:21:45 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 17:21:45 - Completed initialization in 1 ms -2024-08-07 17:21:45 - RMI TCP Connection(3)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - [javax.management.remote.rmi.RMIConnectionImpl@4504489c: connectionId=rmi://127.0.0.1 12] closing. -2024-08-07 17:21:45 - [javax.management.remote.rmi.RMIConnectionImpl@4504489c: connectionId=rmi://127.0.0.1 12] closed. -2024-08-07 17:21:45 - RMI TCP Connection(2)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:45 - [javax.management.remote.rmi.RMIConnectionImpl@eb803c0: connectionId=rmi://127.0.0.1 11] closing. -2024-08-07 17:21:45 - [javax.management.remote.rmi.RMIConnectionImpl@eb803c0: connectionId=rmi://127.0.0.1 11] closed. -2024-08-07 17:21:50 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.7590815342667585431/conf/jaspic-providers.xml] -2024-08-07 17:21:50 - OPTIONS "/api/events", parameters={} -2024-08-07 17:21:50 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:21:50 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:21:50 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:21:50 - Completed 200 OK -2024-08-07 17:21:50 - POST "/api/events", parameters={} -2024-08-07 17:21:50 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:21:50 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:21:50 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=컴이문제인가, password=1234]] -2024-08-07 17:21:50 - Found thread-bound EntityManager [SessionImpl(1354800151<open>)] for JPA transaction -2024-08-07 17:21:50 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 17:21:50 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:21:50 - begin -2024-08-07 17:21:50 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@6878584d] -2024-08-07 17:21:50 - Found thread-bound EntityManager [SessionImpl(1354800151<open>)] for JPA transaction -2024-08-07 17:21:50 - Participating in existing transaction -2024-08-07 17:21:50 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 17:21:50 - Executing identity-insert immediately -2024-08-07 17:21:50 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 17:21:50 - Initializer list is empty -2024-08-07 17:21:50 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@5c0203ec -2024-08-07 17:21:50 - Extracted JDBC value [0] - [1] -2024-08-07 17:21:50 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@6467c6c3 -2024-08-07 17:21:50 - Initiating transaction commit -2024-08-07 17:21:50 - Committing JPA transaction on EntityManager [SessionImpl(1354800151<open>)] -2024-08-07 17:21:50 - committing -2024-08-07 17:21:50 - Processing flush-time cascades -2024-08-07 17:21:50 - Dirty checking collections -2024-08-07 17:21:50 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 17:21:50 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 17:21:50 - Listing entities: -2024-08-07 17:21:50 - server.haengdong.domain.event.Event{password=1234, name=컴이문제인가, id=1, token=a25f656b-71d7-48b4-9464-be939c2d5de9} -2024-08-07 17:21:50 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:21:50 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:21:50 - Writing [EventResponse[eventId=a25f656b-71d7-48b4-9464-be939c2d5de9]] -2024-08-07 17:21:50 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:21:50 - Completed 200 OK -2024-08-07 17:21:51 - RMI TCP Connection(2)-127.0.0.1: (port 65450) connection closed -2024-08-07 17:21:51 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:65454] -2024-08-07 17:21:51 - RMI TCP Connection(1)-127.0.0.1: (port 65450) connection closed -2024-08-07 17:21:51 - RMI TCP Connection(3)-127.0.0.1: (port 65450) connection closed -2024-08-07 17:21:51 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=65453,localport=65450] -2024-08-07 17:21:51 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=65452,localport=65450] -2024-08-07 17:21:51 - RMI TCP Connection(4)-127.0.0.1: (port 65450) op = 80 -2024-08-07 17:21:51 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=65451,localport=65450] -2024-08-07 17:21:51 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:51 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:51 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=65452,localport=65450] -2024-08-07 17:21:51 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=65451,localport=65450] -2024-08-07 17:21:51 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:51 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=65453,localport=65450] -2024-08-07 17:21:51 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:21:51 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@482f7af0 -2024-08-07 17:22:05 - OPTIONS "/api/events/a25f656b-71d7-48b4-9464-be939c2d5de9", parameters={} -2024-08-07 17:22:05 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:22:05 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:22:05 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:22:05 - Completed 200 OK -2024-08-07 17:22:05 - OPTIONS "/api/events/a25f656b-71d7-48b4-9464-be939c2d5de9/actions", parameters={} -2024-08-07 17:22:05 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:22:05 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:22:05 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:22:05 - Completed 200 OK -2024-08-07 17:22:05 - GET "/api/events/a25f656b-71d7-48b4-9464-be939c2d5de9", parameters={} -2024-08-07 17:22:05 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:22:05 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:22:05 - GET "/api/events/a25f656b-71d7-48b4-9464-be939c2d5de9/actions", parameters={} -2024-08-07 17:22:05 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:22:05 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:22:05 - Found thread-bound EntityManager [SessionImpl(476930882<open>)] for JPA transaction -2024-08-07 17:22:05 - Found thread-bound EntityManager [SessionImpl(735551938<open>)] for JPA transaction -2024-08-07 17:22:05 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:22:05 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:22:05 - HikariPool-1 - Connection not added, stats (total=10, active=2, idle=8, waiting=0) -2024-08-07 17:22:05 - Setting JDBC Connection [HikariProxyConnection@2009556972 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:22:05 - Setting JDBC Connection [HikariProxyConnection@261531785 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:22:05 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:22:05 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:22:05 - begin -2024-08-07 17:22:05 - begin -2024-08-07 17:22:05 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@61a9c991] -2024-08-07 17:22:05 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@5669e1f9] -2024-08-07 17:22:05 - Created new SQL alias : e1_0 -2024-08-07 17:22:05 - Created new SQL alias : e1_0 -2024-08-07 17:22:05 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744875619758083))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:22:05 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744875619758083))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:22:05 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@3df7e8c9 -2024-08-07 17:22:05 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@59774540 -2024-08-07 17:22:05 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744875619758083).token) -2024-08-07 17:22:05 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744875619758083).token) -2024-08-07 17:22:05 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744875619758083)] - | +-BasicFetch [server.haengdong.domain.event.Event(744875619758083).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744875619758083).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744875619758083).token] - -2024-08-07 17:22:05 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744875619758083)] - | +-BasicFetch [server.haengdong.domain.event.Event(744875619758083).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744875619758083).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744875619758083).token] - -2024-08-07 17:22:05 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744875619758083)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:22:05 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744875619758083)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:22:05 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:22:05 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:22:05 - Initializer list: - server.haengdong.domain.event.Event(744875619758083) -> EntityResultInitializer(server.haengdong.domain.event.Event(744875619758083))@2001895517 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:22:05 - Initializer list: - server.haengdong.domain.event.Event(744875619758083) -> EntityResultInitializer(server.haengdong.domain.event.Event(744875619758083))@935919174 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:22:05 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:22:05 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:22:05 - Extracted JDBC value [0] - [1] -2024-08-07 17:22:05 - Extracted JDBC value [0] - [1] -2024-08-07 17:22:05 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744875619758083)): 1 -2024-08-07 17:22:05 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744875619758083)): 1 -2024-08-07 17:22:05 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744875619758083)#1] : 537590409 -2024-08-07 17:22:05 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744875619758083)#1] : 1496579758 -2024-08-07 17:22:05 - Extracted JDBC value [1] - [컴이문제인가] -2024-08-07 17:22:05 - Extracted JDBC value [1] - [컴이문제인가] -2024-08-07 17:22:05 - Extracted JDBC value [2] - [1234] -2024-08-07 17:22:05 - Extracted JDBC value [2] - [1234] -2024-08-07 17:22:05 - Extracted JDBC value [3] - [a25f656b-71d7-48b4-9464-be939c2d5de9] -2024-08-07 17:22:05 - Extracted JDBC value [3] - [a25f656b-71d7-48b4-9464-be939c2d5de9] -2024-08-07 17:22:05 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744875619758083)#1 -2024-08-07 17:22:05 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744875619758083)#1 -2024-08-07 17:22:05 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@3eeb0c9f -2024-08-07 17:22:05 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@7bccf5d0 -2024-08-07 17:22:05 - Initiating transaction commit -2024-08-07 17:22:05 - Committing JPA transaction on EntityManager [SessionImpl(735551938<open>)] -2024-08-07 17:22:05 - committing -2024-08-07 17:22:05 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@261531785 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:22:05 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:22:05 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:22:05 - Writing [EventDetailResponse[eventName=컴이문제인가]] -2024-08-07 17:22:05 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:22:05 - Completed 200 OK -2024-08-07 17:22:05 - Created new SQL alias : ba1_0 -2024-08-07 17:22:05 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(744875462400833))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:22:05 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@700ad1b2] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:22:05 - Created new SQL alias : a1_0 -2024-08-07 17:22:05 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@269e9738] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:22:05 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@700ad1b2] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:22:05 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@7da18e04 -2024-08-07 17:22:05 - Created new SQL alias : e1_0 -2024-08-07 17:22:05 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@334dcf55 -2024-08-07 17:22:05 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(744875462400833).action(744875462437500).event(744875462448708) : event) -2024-08-07 17:22:05 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(744875462400833)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(744875462400833).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(744875462400833).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(744875462400833).title] - -2024-08-07 17:22:05 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(744875462400833)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(744875462400833).action(744875462437500)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(744875462400833).action(744875462437500).event(744875462448708)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:22:05 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:22:05 - Initializer list: - server.haengdong.domain.action.BillAction(744875462400833) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(744875462400833))@830825649 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - server.haengdong.domain.action.BillAction(744875462400833).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(744875462400833).action.event)@328443659 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@1390689162) - server.haengdong.domain.action.BillAction(744875462400833).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(744875462400833).action)@614624071 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@1041773454) - -2024-08-07 17:22:05 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:22:05 - Created new SQL alias : ma1_0 -2024-08-07 17:22:05 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction(m))] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 17:22:05 - Created new SQL alias : a1_0 -2024-08-07 17:22:05 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@10126d33] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 17:22:05 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@230baee0] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 17:22:05 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@42cb4639] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 17:22:05 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@42cb4639] for NavigablePath [server.haengdong.domain.action.MemberAction(m).action(744875576253208).event] overrode previous registration : org.hibernate.sql.ast.tree.from.LazyTableGroup@230baee0 -2024-08-07 17:22:05 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 17:22:05 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 17:22:05 - Determining mapping-model type for SqmPath : SqmEntityValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action(744875576253208).event) -2024-08-07 17:22:05 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction(m)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.MemberAction(m).action(744875576253208)] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction(m).status] - -2024-08-07 17:22:05 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction(m)) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction(m).action(744875576253208)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.MemberAction(m).action(744875576253208).event) { - } - join LazyTableGroup (e2 : server.haengdong.domain.action.MemberAction(m).action(744875576253208).event) { - } - } - } - } - } - } - } - -2024-08-07 17:22:05 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:22:05 - Initializer list: - server.haengdong.domain.action.MemberAction(m).action(744875576253208).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744875576253208).event)@1060178638 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@1390689162) - server.haengdong.domain.action.MemberAction(m).action(744875576253208) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744875576253208))@1677731620 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@2095210259) - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@596350681 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - -2024-08-07 17:22:05 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:22:05 - Initiating transaction commit -2024-08-07 17:22:05 - Committing JPA transaction on EntityManager [SessionImpl(476930882<open>)] -2024-08-07 17:22:05 - committing -2024-08-07 17:22:05 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@2009556972 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:22:05 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:22:05 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:22:05 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:22:05 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:22:05 - Completed 200 OK -2024-08-07 17:22:11 - OPTIONS "/api/events/a25f656b-71d7-48b4-9464-be939c2d5de9/member-actions", parameters={} -2024-08-07 17:22:11 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:22:11 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:22:11 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:22:11 - Completed 200 OK -2024-08-07 17:22:11 - POST "/api/events/a25f656b-71d7-48b4-9464-be939c2d5de9/member-actions", parameters={} -2024-08-07 17:22:11 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:22:11 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 17:22:11 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:22:11 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 17:22:11 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 17:22:11 - Completed 401 UNAUTHORIZED -2024-08-07 17:22:13 - RMI TCP Connection(4)-127.0.0.1: (port 65450) connection closed -2024-08-07 17:22:13 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=65454,localport=65450] -2024-08-07 17:22:13 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=65454,localport=65450] -2024-08-07 17:22:13 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:22:13 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:22:43 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:22:43 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:23:13 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:23:13 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:23:24 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 17:23:24 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b, started on Wed Aug 07 17:21:42 KST 2024 -2024-08-07 17:23:24 - Stopping beans in phase 2147483647 -2024-08-07 17:23:24 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 17:23:24 - Stopping beans in phase 2147482623 -2024-08-07 17:23:24 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 17:23:24 - Stopping beans in phase 2147481599 -2024-08-07 17:23:25 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 17:23:25 - Stopping beans in phase -2147483647 -2024-08-07 17:23:25 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 17:23:25 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 17:23:25 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 17:23:25 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 17:23:25 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 17:23:25 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 17:23:25 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 17:23:25 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 17:23:25 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 17:23:25 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 17:23:25 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 17:23:25 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 17:23:25 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 17:23:25 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 17:23:25 - Unregistering JMX-exposed beans on shutdown -2024-08-07 17:23:25 - Unregistering JMX-exposed beans -2024-08-07 17:23:25 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 17:23:25 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 17:23:25 - HHH000031: Closing -2024-08-07 17:23:25 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@c24406b] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@71d8794f] -2024-08-07 17:23:25 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 17:23:25 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 17:23:25 - HikariPool-1 - Shutdown initiated... -2024-08-07 17:23:25 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:23:25 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:23:25 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:23:25 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:23:25 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:23:25 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:23:25 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:23:25 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:23:25 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:23:25 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:23:25 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:23:25 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 17:23:25 - HikariPool-1 - Shutdown completed. -2024-08-07 17:23:25 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 17:23:26 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 17:23:26 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 17:23:26 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:23:26 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:23:26 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:23:26 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:23:26 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:23:26 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:23:26 - Loaded expression factory via original TCCL -2024-08-07 17:23:26 - Starting HaengdongApplication using Java 17.0.12 with PID 63595 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 17:23:26 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 17:23:26 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 17:23:26 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 17:23:26 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 17:23:26 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 17:23:26 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:23:26 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:23:26 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:23:26 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:23:26 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:23:26 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 17:23:26 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 17:23:26 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 17:23:26 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 17:23:26 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 17:23:26 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 17:23:26 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 17:23:26 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 17:23:26 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 17:23:26 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 17:23:26 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 17:23:26 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 17:23:26 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 17:23:26 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 17:23:26 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 17:23:26 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 17:23:26 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 17:23:26 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 17:23:26 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 17:23:26 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 17:23:26 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 17:23:26 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 17:23:26 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 17:23:26 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 17:23:26 - Finished Spring Data repository scanning in 15 ms. Found 4 JPA repository interfaces. -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 17:23:26 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 17:23:26 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 17:23:26 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 17:23:26 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 17:23:26 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 17:23:26 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 17:23:26 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 17:23:26 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 17:23:26 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@1a7cb3a4] -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 17:23:26 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 17:23:26 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 17:23:26 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 17:23:26 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 17:23:26 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 17:23:26 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 17:23:26 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 17:23:26 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 17:23:26 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:23:26 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:23:26 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 17:23:26 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 17:23:26 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 17:23:26 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 17:23:26 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:23:26 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:23:26 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:23:26 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 17:23:26 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 17:23:26 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 17:23:26 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 17:23:26 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 17:23:26 - Tomcat initialized with port 8080 (http) -2024-08-07 17:23:26 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7ea71fc2] to [INITIALIZING] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7ea71fc2] to [INITIALIZED] -2024-08-07 17:23:26 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 17:23:26 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 17:23:26 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.mapper.MapperListener@19cdc217] to [INITIALIZING] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.mapper.MapperListener@19cdc217] to [INITIALIZED] -2024-08-07 17:23:26 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 17:23:26 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 17:23:26 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 17:23:26 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 17:23:26 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 17:23:26 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 17:23:26 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7ea71fc2] to [STARTING_PREP] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7ea71fc2] to [STARTING] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7ea71fc2] to [STARTED] -2024-08-07 17:23:26 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 17:23:26 - Starting service [Tomcat] -2024-08-07 17:23:26 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 17:23:26 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 17:23:26 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 17:23:26 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:23:26 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:23:26 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:23:26 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:23:26 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:23:26 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 17:23:26 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 17:23:26 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 17:23:26 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 17:23:26 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 17:23:26 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.webresources.StandardRoot@2c47a053] to [INITIALIZING] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.webresources.StandardRoot@2c47a053] to [INITIALIZED] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.webresources.StandardRoot@2c47a053] to [STARTING_PREP] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.webresources.DirResourceSet@d36c1c3] to [INITIALIZING] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.webresources.DirResourceSet@d36c1c3] to [INITIALIZED] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.webresources.DirResourceSet@d36c1c3] to [STARTING_PREP] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.webresources.DirResourceSet@d36c1c3] to [STARTING] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.webresources.DirResourceSet@d36c1c3] to [STARTED] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.webresources.StandardRoot@2c47a053] to [STARTING] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.webresources.StandardRoot@2c47a053] to [STARTED] -2024-08-07 17:23:26 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:23:26 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:23:26 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:23:26 - Starting this Loader -2024-08-07 17:23:26 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:23:26 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:23:26 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:23:26 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:23:26 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:23:26 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:23:26 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:23:26 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:23:26 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:23:26 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:23:26 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:23:26 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:23:26 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:23:26 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:23:26 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:23:26 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:23:26 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:23:26 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 17:23:26 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@25699aa7] to [INITIALIZING] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@25699aa7] to [INITIALIZED] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@25699aa7] to [STARTING_PREP] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@25699aa7] to [STARTING] -2024-08-07 17:23:26 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@25699aa7] to [STARTED] -2024-08-07 17:23:26 - Initializing Spring embedded WebApplicationContext -2024-08-07 17:23:26 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 17:23:26 - Root WebApplicationContext: initialization completed in 595 ms -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:23:26 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 17:23:26 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 17:23:26 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 17:23:26 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:23:26 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 17:23:26 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:23:26 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 17:23:26 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:23:26 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:23:26 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:23:26 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:23:26 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 17:23:26 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 17:23:26 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 17:23:26 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 17:23:26 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:23:26 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:23:26 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 17:23:26 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 17:23:26 - HikariPool-1 - configuration: -2024-08-07 17:23:26 - allowPoolSuspension.............false -2024-08-07 17:23:26 - autoCommit......................true -2024-08-07 17:23:26 - catalog.........................none -2024-08-07 17:23:26 - connectionInitSql...............none -2024-08-07 17:23:26 - connectionTestQuery.............none -2024-08-07 17:23:26 - connectionTimeout...............30000 -2024-08-07 17:23:26 - dataSource......................none -2024-08-07 17:23:26 - dataSourceClassName.............none -2024-08-07 17:23:26 - dataSourceJNDI..................none -2024-08-07 17:23:26 - dataSourceProperties............{password=<masked>} -2024-08-07 17:23:26 - driverClassName................."org.h2.Driver" -2024-08-07 17:23:26 - exceptionOverrideClassName......none -2024-08-07 17:23:26 - healthCheckProperties...........{} -2024-08-07 17:23:26 - healthCheckRegistry.............none -2024-08-07 17:23:26 - idleTimeout.....................600000 -2024-08-07 17:23:26 - initializationFailTimeout.......1 -2024-08-07 17:23:26 - isolateInternalQueries..........false -2024-08-07 17:23:26 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 17:23:26 - keepaliveTime...................0 -2024-08-07 17:23:26 - leakDetectionThreshold..........0 -2024-08-07 17:23:26 - maxLifetime.....................1800000 -2024-08-07 17:23:26 - maximumPoolSize.................10 -2024-08-07 17:23:26 - metricRegistry..................none -2024-08-07 17:23:26 - metricsTrackerFactory...........none -2024-08-07 17:23:26 - minimumIdle.....................10 -2024-08-07 17:23:26 - password........................<masked> -2024-08-07 17:23:26 - poolName........................"HikariPool-1" -2024-08-07 17:23:26 - readOnly........................false -2024-08-07 17:23:26 - registerMbeans..................false -2024-08-07 17:23:26 - scheduledExecutor...............none -2024-08-07 17:23:26 - schema..........................none -2024-08-07 17:23:26 - threadFactory...................internal -2024-08-07 17:23:26 - transactionIsolation............default -2024-08-07 17:23:26 - username........................"sa" -2024-08-07 17:23:26 - validationTimeout...............5000 -2024-08-07 17:23:26 - HikariPool-1 - Starting... -2024-08-07 17:23:27 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 17:23:27 - HikariPool-1 - Start completed. -2024-08-07 17:23:27 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 17:23:27 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 17:23:27 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:23:27 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 17:23:27 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:23:27 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:23:27 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:23:27 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 17:23:27 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 17:23:27 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 17:23:27 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 17:23:27 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 17:23:27 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 17:23:27 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 17:23:27 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 17:23:27 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 17:23:27 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 17:23:27 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 17:23:27 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 17:23:27 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 17:23:27 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 17:23:27 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 17:23:27 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 17:23:27 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 17:23:27 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 17:23:27 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 17:23:27 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 17:23:27 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 17:23:27 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 17:23:27 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 17:23:27 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 17:23:27 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 17:23:27 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 17:23:27 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 17:23:27 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 17:23:27 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 17:23:27 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 17:23:27 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 17:23:27 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 17:23:27 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 17:23:27 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 17:23:27 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 17:23:27 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:23:27 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:23:27 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:23:27 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5611bba] to [INITIALIZING] -2024-08-07 17:23:27 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5611bba] to [INITIALIZED] -2024-08-07 17:23:27 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5611bba] to [STARTING_PREP] -2024-08-07 17:23:27 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5611bba] to [STARTING] -2024-08-07 17:23:27 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5611bba] to [STARTED] -2024-08-07 17:23:27 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:23:27 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:23:27 - Filter 'requestContextFilter' configured for use -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:65501] -2024-08-07 17:23:27 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:27 - Filter 'characterEncodingFilter' configured for use -2024-08-07 17:23:27 - Filter 'formContentFilter' configured for use -2024-08-07 17:23:27 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 17:23:27 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 17:23:27 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:23:27 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:23:27 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:23:27 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:23:27 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:23:27 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:23:27 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:23:27 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:23:27 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:23:27 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:23:27 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:23:27 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:23:27 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:23:27 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:23:27 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:23:27 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 17:23:27 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 17:23:27 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:23:27 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:23:27 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:23:27 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:23:27 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:23:27 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:23:27 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:23:27 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:23:27 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:23:27 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:23:27 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:27 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 17:23:27 - Setting state for [org.apache.catalina.mapper.MapperListener@19cdc217] to [STARTING_PREP] -2024-08-07 17:23:27 - Setting state for [org.apache.catalina.mapper.MapperListener@19cdc217] to [STARTING] -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:27 - Registered host [localhost] -2024-08-07 17:23:27 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 17:23:27 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 17:23:27 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 17:23:27 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:27 - Setting state for [org.apache.catalina.mapper.MapperListener@19cdc217] to [STARTED] -2024-08-07 17:23:27 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 17:23:27 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 17:23:27 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 17:23:27 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 84 -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:27 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:27 - [javax.management.remote.rmi.RMIConnectionImpl@4c34241e: connectionId=rmi://127.0.0.1 1] closing. -2024-08-07 17:23:27 - [javax.management.remote.rmi.RMIConnectionImpl@4c34241e: connectionId=rmi://127.0.0.1 1] closed. -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 17:23:27 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 17:23:27 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:23:27 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:23:27 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 17:23:27 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 17:23:27 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:23:27 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:23:27 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 17:23:27 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 17:23:27 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 17:23:27 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 17:23:27 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 17:23:27 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 17:23:27 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 17:23:27 - HHH000206: 'hibernate.properties' not found -2024-08-07 17:23:27 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 17:23:27 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 17:23:27 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 17:23:27 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 17:23:27 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 17:23:27 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 17:23:27 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 17:23:27 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 17:23:27 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 17:23:27 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 17:23:27 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 17:23:27 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 17:23:27 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 17:23:27 - HHH000026: Second-level cache disabled -2024-08-07 17:23:27 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 17:23:27 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 17:23:27 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-07 17:23:27 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-07 17:23:27 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-07 17:23:27 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-07 17:23:27 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-07 17:23:27 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-07 17:23:27 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-07 17:23:27 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 17:23:27 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 17:23:27 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-07 17:23:27 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-07 17:23:27 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-07 17:23:27 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 17:23:27 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 17:23:27 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 17:23:27 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 17:23:27 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 17:23:27 - Adding type registration image -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 17:23:27 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 17:23:27 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 17:23:27 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 17:23:27 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 17:23:27 - Adding type registration short -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 17:23:27 - Adding type registration short -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 17:23:27 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 17:23:27 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 17:23:27 - Adding type registration int -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 17:23:27 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 17:23:27 - Adding type registration long -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 17:23:27 - Adding type registration long -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 17:23:27 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 17:23:27 - Adding type registration float -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 17:23:27 - Adding type registration float -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 17:23:27 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 17:23:27 - Adding type registration double -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 17:23:27 - Adding type registration double -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 17:23:27 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 17:23:27 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 17:23:27 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 17:23:27 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 17:23:27 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 17:23:27 - Adding type registration character -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 17:23:27 - Adding type registration char -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 17:23:27 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 17:23:27 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 17:23:27 - Adding type registration string -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 17:23:27 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 17:23:27 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 17:23:27 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 17:23:27 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 17:23:27 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 17:23:27 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 17:23:27 - Adding type registration text -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 17:23:27 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 17:23:27 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 17:23:27 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 17:23:27 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 17:23:27 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 17:23:27 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 17:23:27 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 17:23:27 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 17:23:27 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 17:23:27 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 17:23:27 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 17:23:27 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 17:23:27 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 17:23:27 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 17:23:27 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 17:23:27 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 17:23:27 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 17:23:27 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 17:23:27 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 17:23:27 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 17:23:27 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 17:23:27 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 17:23:27 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 17:23:27 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 17:23:27 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 17:23:27 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 17:23:27 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 17:23:27 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 17:23:27 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 17:23:27 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 17:23:27 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 17:23:27 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 17:23:27 - Adding type registration date -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 17:23:27 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 17:23:27 - Adding type registration time -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 17:23:27 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 17:23:27 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 17:23:27 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 17:23:27 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 17:23:27 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 17:23:27 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 17:23:27 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 17:23:27 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 17:23:27 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 17:23:27 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 17:23:27 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 17:23:27 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 17:23:27 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 17:23:27 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 17:23:27 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 17:23:27 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 17:23:27 - Adding type registration class -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 17:23:27 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 17:23:27 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 17:23:27 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 17:23:27 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 17:23:27 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 17:23:27 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 17:23:27 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 17:23:27 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 17:23:27 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 17:23:27 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 17:23:27 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 17:23:27 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 17:23:27 - Adding type registration url -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 17:23:27 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 17:23:27 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 17:23:27 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 17:23:27 - Adding type registration object -> org.hibernate.type.JavaObjectType@5034681f -2024-08-07 17:23:27 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@5034681f -2024-08-07 17:23:27 - Adding type registration null -> org.hibernate.type.NullType@fceab5d -2024-08-07 17:23:27 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@79445efb -2024-08-07 17:23:27 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@1592e540 -2024-08-07 17:23:27 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@3e2772a9 -2024-08-07 17:23:27 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@4449b273 -2024-08-07 17:23:27 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@1fa18f87 -2024-08-07 17:23:27 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@1d9bd1d6 -2024-08-07 17:23:27 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@18ac4af6 -2024-08-07 17:23:27 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@117fb9ba -2024-08-07 17:23:27 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@5bf7f15f] into BootstrapContext; was [null] -2024-08-07 17:23:27 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@5bf7f15f) [was null] -2024-08-07 17:23:27 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@2c154508] into BootstrapContext; was [null] -2024-08-07 17:23:27 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@395eb363] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@1e194966] -2024-08-07 17:23:27 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 17:23:27 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 17:23:27 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 17:23:27 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 17:23:27 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 17:23:27 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@5bf7f15f] -2024-08-07 17:23:27 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@5bf7f15f] -2024-08-07 17:23:27 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-07 17:23:27 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 17:23:27 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 17:23:27 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 17:23:27 - JDBC version : 4.2 -2024-08-07 17:23:27 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 17:23:27 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 17:23:27 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 17:23:27 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 17:23:27 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 17:23:27 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 17:23:27 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 17:23:27 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 17:23:27 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 17:23:27 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 17:23:27 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 17:23:27 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@da9374c] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@34647f58] -2024-08-07 17:23:27 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-07 17:23:27 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 17:23:27 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 17:23:27 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 17:23:27 - Import with entity name Action -2024-08-07 17:23:27 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 17:23:27 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:23:27 - Binding column: AnnotatedColumn() -2024-08-07 17:23:27 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:23:27 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:23:27 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:23:27 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 17:23:27 - building BasicValue for id -2024-08-07 17:23:27 - Skipping column re-registration: action.id -2024-08-07 17:23:27 - Building property id -2024-08-07 17:23:27 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:23:27 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:23:27 - Binding column: AnnotatedColumn() -2024-08-07 17:23:27 - Building property event -2024-08-07 17:23:27 - Binding column: AnnotatedColumn() -2024-08-07 17:23:27 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 17:23:27 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 17:23:27 - building BasicValue for sequence -2024-08-07 17:23:27 - Skipping column re-registration: action.sequence -2024-08-07 17:23:27 - Building property sequence -2024-08-07 17:23:27 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:23:27 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 17:23:27 - Import with entity name BillAction -2024-08-07 17:23:27 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 17:23:27 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:23:27 - Binding column: AnnotatedColumn() -2024-08-07 17:23:27 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:23:27 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:23:27 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:23:27 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 17:23:27 - building BasicValue for id -2024-08-07 17:23:27 - Skipping column re-registration: bill_action.id -2024-08-07 17:23:27 - Building property id -2024-08-07 17:23:27 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:23:27 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:23:27 - Binding column: AnnotatedColumn() -2024-08-07 17:23:27 - Building property action -2024-08-07 17:23:27 - Binding column: AnnotatedColumn() -2024-08-07 17:23:27 - MetadataSourceProcessor property price with lazy=false -2024-08-07 17:23:27 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 17:23:27 - building BasicValue for price -2024-08-07 17:23:27 - Skipping column re-registration: bill_action.price -2024-08-07 17:23:27 - Building property price -2024-08-07 17:23:27 - Binding column: AnnotatedColumn() -2024-08-07 17:23:27 - MetadataSourceProcessor property title with lazy=false -2024-08-07 17:23:27 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 17:23:27 - building BasicValue for title -2024-08-07 17:23:27 - Skipping column re-registration: bill_action.title -2024-08-07 17:23:27 - Building property title -2024-08-07 17:23:27 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:23:27 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 17:23:27 - Import with entity name MemberAction -2024-08-07 17:23:27 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 17:23:27 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:23:27 - Binding column: AnnotatedColumn() -2024-08-07 17:23:27 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:23:27 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:23:27 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:23:27 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 17:23:27 - building BasicValue for id -2024-08-07 17:23:27 - Skipping column re-registration: member_action.id -2024-08-07 17:23:27 - Building property id -2024-08-07 17:23:27 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:23:27 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:23:27 - Binding column: AnnotatedColumn() -2024-08-07 17:23:27 - Building property action -2024-08-07 17:23:27 - Binding column: AnnotatedColumn() -2024-08-07 17:23:27 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 17:23:27 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 17:23:27 - building BasicValue for memberGroupId -2024-08-07 17:23:27 - Skipping column re-registration: member_action.member_group_id -2024-08-07 17:23:27 - Building property memberGroupId -2024-08-07 17:23:27 - Binding column: AnnotatedColumn() -2024-08-07 17:23:27 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 17:23:27 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 17:23:27 - building BasicValue for memberName -2024-08-07 17:23:27 - Skipping column re-registration: member_action.member_name -2024-08-07 17:23:27 - Building property memberName -2024-08-07 17:23:27 - Binding column: AnnotatedColumn() -2024-08-07 17:23:27 - MetadataSourceProcessor property status with lazy=false -2024-08-07 17:23:27 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 17:23:27 - building BasicValue for status -2024-08-07 17:23:27 - Skipping column re-registration: member_action.status -2024-08-07 17:23:27 - Building property status -2024-08-07 17:23:27 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:23:27 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 17:23:27 - Import with entity name Event -2024-08-07 17:23:27 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 17:23:27 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:23:27 - Binding column: AnnotatedColumn() -2024-08-07 17:23:27 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:23:27 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:23:27 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:23:27 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 17:23:27 - building BasicValue for id -2024-08-07 17:23:27 - Skipping column re-registration: event.id -2024-08-07 17:23:27 - Building property id -2024-08-07 17:23:27 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:23:27 - Binding column: AnnotatedColumn() -2024-08-07 17:23:27 - MetadataSourceProcessor property name with lazy=false -2024-08-07 17:23:27 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 17:23:27 - building BasicValue for name -2024-08-07 17:23:27 - Skipping column re-registration: event.name -2024-08-07 17:23:27 - Building property name -2024-08-07 17:23:27 - Binding column: AnnotatedColumn() -2024-08-07 17:23:27 - MetadataSourceProcessor property password with lazy=false -2024-08-07 17:23:27 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 17:23:27 - building BasicValue for password -2024-08-07 17:23:27 - Skipping column re-registration: event.password -2024-08-07 17:23:27 - Building property password -2024-08-07 17:23:27 - Binding column: AnnotatedColumn() -2024-08-07 17:23:27 - MetadataSourceProcessor property token with lazy=false -2024-08-07 17:23:27 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 17:23:27 - building BasicValue for token -2024-08-07 17:23:27 - Skipping column re-registration: event.token -2024-08-07 17:23:27 - Building property token -2024-08-07 17:23:27 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 17:23:27 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 17:23:27 - Import with entity name EventStep -2024-08-07 17:23:27 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 17:23:27 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:23:27 - Binding column: AnnotatedColumn() -2024-08-07 17:23:27 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:23:27 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:23:27 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:23:27 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 17:23:27 - building BasicValue for id -2024-08-07 17:23:27 - Skipping column re-registration: event_step.id -2024-08-07 17:23:27 - Building property id -2024-08-07 17:23:27 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:23:27 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:23:27 - Binding column: AnnotatedColumn() -2024-08-07 17:23:27 - Building property event -2024-08-07 17:23:27 - Binding column: AnnotatedColumn() -2024-08-07 17:23:27 - MetadataSourceProcessor property name with lazy=false -2024-08-07 17:23:27 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 17:23:27 - building BasicValue for name -2024-08-07 17:23:27 - Skipping column re-registration: event_step.name -2024-08-07 17:23:27 - Building property name -2024-08-07 17:23:27 - Binding column: AnnotatedColumn() -2024-08-07 17:23:27 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 17:23:27 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 17:23:27 - building BasicValue for sequence -2024-08-07 17:23:27 - Skipping column re-registration: event_step.sequence -2024-08-07 17:23:27 - Building property sequence -2024-08-07 17:23:27 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 17:23:27 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:23:27 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 17:23:27 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 17:23:27 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:23:27 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 17:23:27 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 17:23:27 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 17:23:27 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:23:27 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 17:23:27 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 17:23:27 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 17:23:27 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:23:27 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 17:23:27 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 17:23:27 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 17:23:27 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:23:27 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 17:23:27 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 17:23:27 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 17:23:27 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 17:23:27 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 17:23:27 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 17:23:27 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 17:23:27 - Building session factory -2024-08-07 17:23:27 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:23:27 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@30d5fc1b, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@7957aa57, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.15640734908207185619, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=63595, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.15640734908207185619, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@7b92ea9d, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 17:23:27 - Session factory constructed with filter configurations : {} -2024-08-07 17:23:27 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:23:27 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:23:27 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:23:27 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:23:27 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:23:27 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:23:27 - Loaded expression factory via original TCCL -2024-08-07 17:23:27 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 17:23:27 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 17:23:27 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:23:27 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:23:27 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:23:27 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:23:27 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:23:27 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:23:27 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:23:27 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:23:27 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:23:27 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:23:27 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:23:27 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:23:27 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:23:27 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:23:27 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:23:27 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:23:27 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@76cbee13] under count; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@633c0a61] under every; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@49322d04] under any; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6b756a62] under sinh; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@394b9e22] under cosh; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6e0f259e] under tanh; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4fe9adfb] under pi; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@f8fe81e] under log; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 17:23:27 - Registering alternate key : length -> character_length -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@3a9040f0] under position; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@5216532a] under overlay; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@6761f75b] under trim; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@71135794] under cast; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@79b0956e] under collate; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@37f627d0] under extract; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@65d2d3cc] under ifnull; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@ca2a03f] under pad; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@3293030b] under str; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@78b2d29e] under format; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@25b402ea] under timestampadd; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@a0bdbe2] under timestampdiff; prior registration was null -2024-08-07 17:23:27 - Registering alternate key : dateadd -> timestampadd -2024-08-07 17:23:27 - Registering alternate key : datediff -> timestampdiff -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5f81507a] under current_date; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7d7c05fa] under current_time; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7dbbf730] under current_timestamp; prior registration was null -2024-08-07 17:23:27 - Registering alternate key : current date -> current_date -2024-08-07 17:23:27 - Registering alternate key : current time -> current_time -2024-08-07 17:23:27 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7c4a5ef2] under local_date; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@299dd381] under local_time; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@34d3409d] under local_datetime; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16732340] under offset_datetime; prior registration was null -2024-08-07 17:23:27 - Registering alternate key : local date -> local_date -2024-08-07 17:23:27 - Registering alternate key : local time -> local_time -2024-08-07 17:23:27 - Registering alternate key : local datetime -> local_datetime -2024-08-07 17:23:27 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@38e052b2] under instant; prior registration was null -2024-08-07 17:23:27 - Registering alternate key : current_instant -> instant -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@64f613da] under sql; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@2f64f99f] under count; prior registration was org.hibernate.dialect.function.CountFunction@76cbee13 -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@4e210016] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4fe9adfb -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2fc40856] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 17:23:27 - Registering alternate key : day -> day_of_month -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@299dd381 -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@34d3409d -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@57fec63f] under trunc; prior registration was null -2024-08-07 17:23:27 - Registering alternate key : truncate -> trunc -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7a2fd94c] under date_trunc; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 17:23:27 - Registering alternate key : chr -> char -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@637c8632] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@3a9040f0 -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@156eeff1] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 17:23:27 - Registering alternate key : every -> bool_and -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 17:23:27 - Registering alternate key : any -> bool_or -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@34001c5d] under format; prior registration was org.hibernate.dialect.function.FormatFunction@78b2d29e -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@5b643d6e] under listagg; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@73230721] under mode; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@10bcbbce] under percentile_cont; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@27234b7c] under percentile_disc; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@31f9f9b3] under rank; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@7730da00] under dense_rank; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@52d01430] under percent_rank; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@3fdede3a] under cume_dist; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@4eab9aec] under array; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@5a45c218] under array_list; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@3163e03b] under array_agg; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@45c28c49] under array_position; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@29ae2517] under array_positions; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@752ffce3] under array_positions_list; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@78f35e39] under array_length; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@4056cdb2] under array_concat; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@67baa05] under array_prepend; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@5b5a89d1] under array_append; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@c414eb3] under array_contains; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@4edd8a0a] under array_contains_nullable; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@151d216e] under array_overlaps; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@1018f702] under array_overlaps_nullable; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2119b989] under array_get; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@50b2ba2c] under array_set; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@13ae87a6] under array_remove; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@1701beb3] under array_remove_index; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7f584d0c] under array_slice; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@5ef7ae2f] under array_replace; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1bcf2c64] under array_trim; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@691a5c3a] under array_fill; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@5570dc21] under array_fill_list; prior registration was null -2024-08-07 17:23:27 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@4a34de5e] under array_to_string; prior registration was null -2024-08-07 17:23:27 - abs(NUMERIC arg) -2024-08-07 17:23:27 - Double acos(NUMERIC arg) -2024-08-07 17:23:27 - Boolean any(BOOLEAN predicate) -2024-08-07 17:23:27 - array( ... ) -2024-08-07 17:23:27 - array_agg(arg) -2024-08-07 17:23:27 - array_append( ... ) -2024-08-07 17:23:27 - array_concat( ... ) -2024-08-07 17:23:27 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 17:23:27 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 17:23:27 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 17:23:27 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 17:23:27 - array_get(ARRAY array, INTEGER index) -2024-08-07 17:23:27 - Integer array_length(ARRAY array) -2024-08-07 17:23:27 - array_list( ... ) -2024-08-07 17:23:27 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 17:23:27 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 17:23:27 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 17:23:27 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 17:23:27 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 17:23:27 - array_prepend( ... ) -2024-08-07 17:23:27 - array_remove( ... ) -2024-08-07 17:23:27 - array_remove_index( ... ) -2024-08-07 17:23:27 - array_replace( ... ) -2024-08-07 17:23:27 - array_set( ... ) -2024-08-07 17:23:27 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 17:23:27 - String array_to_string( ... ) -2024-08-07 17:23:27 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 17:23:27 - Integer ascii(STRING arg) -2024-08-07 17:23:27 - Double asin(NUMERIC arg) -2024-08-07 17:23:27 - Double atan(NUMERIC arg) -2024-08-07 17:23:27 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 17:23:27 - avg(NUMERIC arg) -2024-08-07 17:23:27 - bit_and(arg) -2024-08-07 17:23:27 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 17:23:27 - bit_or(arg) -2024-08-07 17:23:27 - bitand(arg0, arg1) -2024-08-07 17:23:27 - bitnot(arg) -2024-08-07 17:23:27 - bitor(arg0, arg1) -2024-08-07 17:23:27 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 17:23:27 - bitxor(arg0, arg1) -2024-08-07 17:23:27 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 17:23:27 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 17:23:27 - cast(arg as Type) -2024-08-07 17:23:27 - ceiling(NUMERIC arg) -2024-08-07 17:23:27 - Character char(INTEGER arg) -2024-08-07 17:23:27 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 17:23:27 - Character chr(INTEGER arg) -2024-08-07 17:23:27 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 17:23:27 - String collate(STRING string as COLLATION collation) -2024-08-07 17:23:27 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 17:23:27 - Double cos(NUMERIC arg) -2024-08-07 17:23:27 - Double cosh(NUMERIC arg) -2024-08-07 17:23:27 - Double cot(NUMERIC arg) -2024-08-07 17:23:27 - Long count([distinct ]{arg|*}) -2024-08-07 17:23:27 - Double cume_dist([arg0[, ...]]) -2024-08-07 17:23:27 - Date curdate() -2024-08-07 17:23:27 - Date current date -2024-08-07 17:23:27 - Time current time -2024-08-07 17:23:27 - Timestamp current timestamp -2024-08-07 17:23:27 - Date current_date -2024-08-07 17:23:27 - Instant current_instant -2024-08-07 17:23:27 - Time current_time -2024-08-07 17:23:27 - Timestamp current_timestamp -2024-08-07 17:23:27 - Time curtime() -2024-08-07 17:23:27 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 17:23:27 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 17:23:27 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 17:23:27 - Integer day(DATE arg) -2024-08-07 17:23:27 - Integer day_of_month(DATE arg) -2024-08-07 17:23:27 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 17:23:27 - Integer day_of_week(DATE arg) -2024-08-07 17:23:27 - Integer day_of_year(DATE arg) -2024-08-07 17:23:27 - String dayname(DATE arg) -2024-08-07 17:23:27 - Double degrees(NUMERIC arg) -2024-08-07 17:23:27 - Long dense_rank([arg0[, ...]]) -2024-08-07 17:23:27 - Boolean every(BOOLEAN predicate) -2024-08-07 17:23:27 - Double exp(NUMERIC arg) -2024-08-07 17:23:27 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 17:23:27 - first_valueANY value -2024-08-07 17:23:27 - floor(NUMERIC arg) -2024-08-07 17:23:27 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 17:23:27 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 17:23:27 - Integer hour(TIME arg) -2024-08-07 17:23:27 - ifnull(arg0, arg1) -2024-08-07 17:23:27 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 17:23:27 - Instant instant -2024-08-07 17:23:27 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 17:23:27 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 17:23:27 - last_valueANY value -2024-08-07 17:23:27 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 17:23:27 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 17:23:27 - String left(STRING string, INTEGER length) -2024-08-07 17:23:27 - Integer length(STRING_OR_CLOB arg) -2024-08-07 17:23:27 - String listagg(STRING arg0, STRING arg1) -2024-08-07 17:23:27 - Double ln(NUMERIC arg) -2024-08-07 17:23:27 - LocalDate local date -2024-08-07 17:23:27 - LocalDateTime local datetime -2024-08-07 17:23:27 - LocalTime local time -2024-08-07 17:23:27 - LocalDate local_date -2024-08-07 17:23:27 - LocalDateTime local_datetime -2024-08-07 17:23:27 - LocalTime local_time -2024-08-07 17:23:27 - Time localtime -2024-08-07 17:23:27 - Timestamp localtimestamp -2024-08-07 17:23:27 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 17:23:27 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 17:23:27 - Double log10(NUMERIC arg) -2024-08-07 17:23:27 - String lower(STRING string) -2024-08-07 17:23:27 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 17:23:27 - String ltrim(STRING string) -2024-08-07 17:23:27 - max(COMPARABLE arg) -2024-08-07 17:23:27 - Double median(NUMERIC arg) -2024-08-07 17:23:27 - Integer microsecond(TIME arg) -2024-08-07 17:23:27 - min(COMPARABLE arg) -2024-08-07 17:23:27 - Integer minute(TIME arg) -2024-08-07 17:23:27 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 17:23:27 - mode() -2024-08-07 17:23:27 - Integer month(DATE arg) -2024-08-07 17:23:27 - String monthname(DATE arg) -2024-08-07 17:23:27 - Timestamp now() -2024-08-07 17:23:27 - nth_valueANY value, INTEGER nth -2024-08-07 17:23:27 - nullif(arg0, arg1) -2024-08-07 17:23:27 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 17:23:27 - OffsetDateTime offset datetime -2024-08-07 17:23:27 - OffsetDateTime offset_datetime -2024-08-07 17:23:27 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 17:23:27 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 17:23:27 - Double percent_rank([arg0[, ...]]) -2024-08-07 17:23:27 - percentile_cont(NUMERIC arg) -2024-08-07 17:23:27 - percentile_disc(NUMERIC arg) -2024-08-07 17:23:27 - Double pi -2024-08-07 17:23:27 - Integer position(STRING pattern in STRING string) -2024-08-07 17:23:27 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 17:23:27 - Integer quarter(DATE arg) -2024-08-07 17:23:27 - Double radians(NUMERIC arg) -2024-08-07 17:23:27 - Double rand([INTEGER seed]) -2024-08-07 17:23:27 - Long rank([arg0[, ...]]) -2024-08-07 17:23:27 - String repeat(STRING string, INTEGER times) -2024-08-07 17:23:27 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 17:23:27 - String right(STRING string, INTEGER length) -2024-08-07 17:23:27 - round(NUMERIC number[, INTEGER places]) -2024-08-07 17:23:27 - Long row_number() -2024-08-07 17:23:27 - Long rownum() -2024-08-07 17:23:27 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 17:23:27 - String rtrim(STRING string) -2024-08-07 17:23:27 - Integer second(TIME arg) -2024-08-07 17:23:27 - Integer sign(NUMERIC arg) -2024-08-07 17:23:27 - Double sin(NUMERIC arg) -2024-08-07 17:23:27 - Double sinh(NUMERIC arg) -2024-08-07 17:23:27 - String soundex(arg) -2024-08-07 17:23:27 - String space(INTEGER arg) -2024-08-07 17:23:27 - Object sql -2024-08-07 17:23:27 - Double sqrt(NUMERIC arg) -2024-08-07 17:23:27 - Double stddev_pop(NUMERIC arg) -2024-08-07 17:23:27 - Double stddev_samp(NUMERIC arg) -2024-08-07 17:23:27 - String str(arg) -2024-08-07 17:23:27 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 17:23:27 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 17:23:27 - sum(arg) -2024-08-07 17:23:27 - Timestamp sysdate -2024-08-07 17:23:27 - Double tan(NUMERIC arg) -2024-08-07 17:23:27 - Double tanh(NUMERIC arg) -2024-08-07 17:23:27 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 17:23:27 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 17:23:27 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 17:23:27 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 17:23:27 - trunc( ... ) -2024-08-07 17:23:27 - truncate( ... ) -2024-08-07 17:23:27 - String upper(STRING string) -2024-08-07 17:23:27 - Double var_pop(NUMERIC arg) -2024-08-07 17:23:27 - Double var_samp(NUMERIC arg) -2024-08-07 17:23:27 - Integer week(DATE arg) -2024-08-07 17:23:27 - Integer year(DATE arg) -2024-08-07 17:23:27 - Starting QueryInterpretationCache(2048) -2024-08-07 17:23:27 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:23:27 - Configured EntityCopyObserver strategy: disallow -2024-08-07 17:23:27 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 17:23:27 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 17:23:27 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:23:27 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:23:27 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:23:27 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 17:23:27 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:23:27 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:23:27 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 17:23:27 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:23:27 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:23:27 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 17:23:27 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:23:27 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:23:27 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 17:23:27 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:23:27 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:23:27 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 17:23:27 - Starting post-init callbacks -2024-08-07 17:23:27 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 17:23:27 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 17:23:27 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 17:23:27 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 17:23:27 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 17:23:27 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 17:23:27 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 17:23:27 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 17:23:27 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 17:23:27 - Created new SQL alias : ba1_0 -2024-08-07 17:23:27 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:23:27 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@452d6fd] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:23:27 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 17:23:27 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 17:23:27 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 17:23:27 - Version select: select id from bill_action where id=? -2024-08-07 17:23:27 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 17:23:27 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 17:23:27 - Delete (0): delete from bill_action where id=? -2024-08-07 17:23:27 - Created new SQL alias : ma1_0 -2024-08-07 17:23:27 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 17:23:27 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@c6653e] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 17:23:27 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 17:23:27 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 17:23:27 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 17:23:27 - Version select: select id from member_action where id=? -2024-08-07 17:23:27 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 17:23:27 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 17:23:27 - Delete (0): delete from member_action where id=? -2024-08-07 17:23:27 - Created new SQL alias : e1_0 -2024-08-07 17:23:27 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:23:27 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 17:23:27 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:23:27 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 17:23:27 - Version select: select id from event where id=? -2024-08-07 17:23:27 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 17:23:27 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 17:23:27 - Delete (0): delete from event where id=? -2024-08-07 17:23:27 - Created new SQL alias : a1_0 -2024-08-07 17:23:27 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 17:23:27 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5e8bc83e] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 17:23:27 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 17:23:27 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 17:23:27 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 17:23:27 - Version select: select id from action where id=? -2024-08-07 17:23:27 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 17:23:27 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 17:23:27 - Delete (0): delete from action where id=? -2024-08-07 17:23:27 - Created new SQL alias : es1_0 -2024-08-07 17:23:27 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 17:23:27 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@69374e28] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 17:23:27 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 17:23:27 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 17:23:27 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 17:23:27 - Version select: select id from event_step where id=? -2024-08-07 17:23:27 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 17:23:27 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 17:23:27 - Delete (0): delete from event_step where id=? -2024-08-07 17:23:27 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 17:23:27 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@da9374c] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@9cdf13e] -2024-08-07 17:23:27 - Checking 0 named HQL queries -2024-08-07 17:23:27 - Checking 0 named SQL queries -2024-08-07 17:23:27 - - drop table if exists action cascade -2024-08-07 17:23:27 - - drop table if exists bill_action cascade -2024-08-07 17:23:27 - - drop table if exists event cascade -2024-08-07 17:23:27 - - drop table if exists event_step cascade -2024-08-07 17:23:27 - - drop table if exists member_action cascade -2024-08-07 17:23:27 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 82 -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 82 -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 82 -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 84 -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:27 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:23:27 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:27 - [javax.management.remote.rmi.RMIConnectionImpl@7a7e14c2: connectionId=rmi://127.0.0.1 2] closing. -2024-08-07 17:23:27 - [javax.management.remote.rmi.RMIConnectionImpl@7a7e14c2: connectionId=rmi://127.0.0.1 2] closed. -2024-08-07 17:23:27 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 17:23:27 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 17:23:27 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 17:23:27 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 17:23:27 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 17:23:27 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 17:23:27 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 17:23:27 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 17:23:27 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@1f67d37f -2024-08-07 17:23:27 - Registering SessionFactory: 4d6273e1-f31b-476e-ae41-6837dd5c9a17 (<unnamed>) -2024-08-07 17:23:27 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 17:23:27 - Instantiated SessionFactory -2024-08-07 17:23:27 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'actionService' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 17:23:27 - Initializing JpaMetamodelMappingContext… -2024-08-07 17:23:27 - Finished initializing JpaMetamodelMappingContext -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - Statistics initialized [enabled=false] -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 17:23:27 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 17:23:27 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 17:23:27 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 17:23:27 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:23:27 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - Looking up named query BillAction.findByAction_Event -2024-08-07 17:23:27 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:23:27 - Did not find named query BillAction.findByAction_Event -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - Looking up named query BillAction.findByAction_Id -2024-08-07 17:23:27 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:23:27 - Did not find named query BillAction.findByAction_Id -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 17:23:27 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:23:27 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 17:23:27 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:23:27 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 17:23:27 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:23:27 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 17:23:27 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 17:23:27 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:23:27 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 17:23:27 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:23:27 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 17:23:27 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 17:23:27 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 17:23:27 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 17:23:27 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:23:27 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 17:23:27 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:23:27 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(744978992560833)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(744978992560833)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(744978992560833)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(744978992560833)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(744978992560833).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:23:27 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:23:27 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 17:23:27 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:23:27 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:23:27 - Looking up named query MemberAction.findByAction -2024-08-07 17:23:27 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:23:27 - Did not find named query MemberAction.findByAction -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - Looking up named query Event.findByToken -2024-08-07 17:23:27 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:23:27 - Did not find named query Event.findByToken -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 17:23:27 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 17:23:27 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:23:27 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:23:27 - Did not find named query Action.findLastByEvent.count -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 17:23:27 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:23:27 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:23:27 - Looking up named query Action.findByIdAndEvent -2024-08-07 17:23:27 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:23:27 - Did not find named query Action.findByIdAndEvent -2024-08-07 17:23:27 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:23:27 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 17:23:27 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 17:23:27 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 17:23:27 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'eventService' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 17:23:27 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 17:23:27 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 17:23:27 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 17:23:27 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 17:23:27 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 17:23:27 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 17:23:27 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:23:27 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 17:23:27 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 17:23:27 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 17:23:27 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 17:23:27 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'actionController' -2024-08-07 17:23:27 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 17:23:27 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'eventController' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'authService' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 17:23:27 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 17:23:27 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 17:23:27 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 17:23:27 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:23:27 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 17:23:27 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 17:23:27 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 17:23:27 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:23:27 - Loaded expression factory via original TCCL -2024-08-07 17:23:27 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 17:23:27 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 17:23:27 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:23:27 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 17:23:27 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:23:27 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:23:27 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:23:27 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:23:27 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:23:27 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:23:27 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:23:27 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:23:27 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:23:27 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:23:27 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'error' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:23:27 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:23:27 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 17:23:27 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 17:23:27 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:23:27 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:23:27 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 17:23:27 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:23:27 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:23:27 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 17:23:27 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 17:23:27 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 17:23:27 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 17:23:27 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 17:23:27 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 17:23:27 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:23:27 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:23:27 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 17:23:27 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:23:27 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:23:27 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 17:23:27 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:23:27 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:23:27 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:23:27 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 17:23:27 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 17:23:27 - - s.h.p.EventController: - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) -2024-08-07 17:23:27 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 17:23:27 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 17:23:27 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 17:23:27 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:23:27 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 17:23:27 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:23:27 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:23:27 - 'beanNameHandlerMapping' {} -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 17:23:27 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:23:27 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 17:23:27 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 17:23:27 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 17:23:27 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:23:27 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:23:27 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 17:23:27 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:23:27 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 17:23:27 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 17:23:27 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 17:23:27 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:23:27 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:23:27 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:23:27 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 17:23:27 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:23:27 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 17:23:27 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 17:23:27 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 17:23:27 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 17:23:27 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 17:23:27 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 17:23:28 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 17:23:28 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 17:23:28 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 17:23:28 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:23:28 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 17:23:28 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 17:23:28 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 17:23:28 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 17:23:28 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:23:28 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 17:23:28 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 17:23:28 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:23:28 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 17:23:28 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 17:23:28 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 17:23:28 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 17:23:28 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:23:28 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 17:23:28 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 17:23:28 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 17:23:28 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 17:23:28 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:23:28 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 17:23:28 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 17:23:28 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 17:23:28 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 17:23:28 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 17:23:28 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 17:23:28 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 17:23:28 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 17:23:28 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:23:28 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 17:23:28 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 17:23:28 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 17:23:28 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 82 -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 82 -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:23:28 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 17:23:28 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 82 -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 84 -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 82 -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 82 -2024-08-07 17:23:28 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 82 -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - [javax.management.remote.rmi.RMIConnectionImpl@48d3bad8: connectionId=rmi://127.0.0.1 3] closing. -2024-08-07 17:23:28 - [javax.management.remote.rmi.RMIConnectionImpl@48d3bad8: connectionId=rmi://127.0.0.1 3] closed. -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 17:23:28 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 17:23:28 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 17:23:28 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 17:23:28 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 17:23:28 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 17:23:28 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 17:23:28 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 17:23:28 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 17:23:28 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 17:23:28 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 17:23:28 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 17:23:28 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 17:23:28 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 17:23:28 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:23:28 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:23:28 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 17:23:28 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 17:23:28 - Using SLF4J as the default logging framework -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 17:23:28 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 17:23:28 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 17:23:28 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:23:28 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 17:23:28 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 17:23:28 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 17:23:28 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 17:23:28 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 17:23:28 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 17:23:28 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 17:23:28 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 17:23:28 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 17:23:28 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 17:23:28 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 17:23:28 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 17:23:28 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 17:23:28 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 17:23:28 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 17:23:28 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 17:23:28 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 17:23:28 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 17:23:28 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:23:28 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 17:23:28 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:23:28 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:23:28 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 17:23:28 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:23:28 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:23:28 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 17:23:28 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 17:23:28 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:23:28 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:23:28 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 17:23:28 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 17:23:28 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 17:23:28 - Registering beans for JMX exposure on startup -2024-08-07 17:23:28 - Auto-detecting user-defined JMX MBeans -2024-08-07 17:23:28 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 17:23:28 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 17:23:28 - Starting beans in phase -2147483647 -2024-08-07 17:23:28 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 17:23:28 - Starting beans in phase 2147481599 -2024-08-07 17:23:28 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 17:23:28 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 17:23:28 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 17:23:28 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 17:23:28 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 17:23:28 - Successfully started bean 'webServerStartStop' -2024-08-07 17:23:28 - Starting beans in phase 2147482623 -2024-08-07 17:23:28 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 17:23:28 - Starting beans in phase 2147483647 -2024-08-07 17:23:28 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.web.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 17:23:28 - Started HaengdongApplication in 2.109 seconds (process running for 2.301) -2024-08-07 17:23:28 - Application availability state LivenessState changed to CORRECT -2024-08-07 17:23:28 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 82 -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 84 -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:23:28 - RMI TCP Connection(1)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - [javax.management.remote.rmi.RMIConnectionImpl@277645bf: connectionId=rmi://127.0.0.1 4] closing. -2024-08-07 17:23:28 - [javax.management.remote.rmi.RMIConnectionImpl@277645bf: connectionId=rmi://127.0.0.1 4] closed. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:65502] -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:65503] -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 84 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 84 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - [javax.management.remote.rmi.RMIConnectionImpl@15867be6: connectionId=rmi://127.0.0.1 6] closing. -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - [javax.management.remote.rmi.RMIConnectionImpl@15867be6: connectionId=rmi://127.0.0.1 6] closed. -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 84 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - [javax.management.remote.rmi.RMIConnectionImpl@7b70199: connectionId=rmi://127.0.0.1 5] closing. -2024-08-07 17:23:28 - [javax.management.remote.rmi.RMIConnectionImpl@7b70199: connectionId=rmi://127.0.0.1 5] closed. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - [javax.management.remote.rmi.RMIConnectionImpl@72c6f386: connectionId=rmi://127.0.0.1 7] closing. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - [javax.management.remote.rmi.RMIConnectionImpl@72c6f386: connectionId=rmi://127.0.0.1 7] closed. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 84 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 17:23:28 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.15640734908207185619/conf/jaspic-providers.xml] -2024-08-07 17:23:28 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 17:23:28 - Initializing Servlet 'dispatcherServlet' -2024-08-07 17:23:28 - Detected StandardServletMultipartResolver -2024-08-07 17:23:28 - Detected AcceptHeaderLocaleResolver -2024-08-07 17:23:28 - Detected FixedThemeResolver -2024-08-07 17:23:28 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@1ec22804 -2024-08-07 17:23:28 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@664c6bbc -2024-08-07 17:23:28 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 17:23:28 - Completed initialization in 1 ms -2024-08-07 17:23:28 - GET "/api/events/7ee10524-4c4e-470c-8439-77850e9dcedc/actions", parameters={} -2024-08-07 17:23:28 - GET "/api/events/7ee10524-4c4e-470c-8439-77850e9dcedc", parameters={} -2024-08-07 17:23:28 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:23:28 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:23:28 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:23:28 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - [javax.management.remote.rmi.RMIConnectionImpl@6f2b15b: connectionId=rmi://127.0.0.1 8] closing. -2024-08-07 17:23:28 - [javax.management.remote.rmi.RMIConnectionImpl@6f2b15b: connectionId=rmi://127.0.0.1 8] closed. -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 82 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 84 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 84 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - [javax.management.remote.rmi.RMIConnectionImpl@3db33f7b: connectionId=rmi://127.0.0.1 9] closing. -2024-08-07 17:23:28 - [javax.management.remote.rmi.RMIConnectionImpl@4edf1b53: connectionId=rmi://127.0.0.1 10] closing. -2024-08-07 17:23:28 - [javax.management.remote.rmi.RMIConnectionImpl@3db33f7b: connectionId=rmi://127.0.0.1 9] closed. -2024-08-07 17:23:28 - [javax.management.remote.rmi.RMIConnectionImpl@4edf1b53: connectionId=rmi://127.0.0.1 10] closed. -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 84 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 84 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:28 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 17:23:28 - Found thread-bound EntityManager [SessionImpl(811882824<open>)] for JPA transaction -2024-08-07 17:23:28 - Found thread-bound EntityManager [SessionImpl(674907738<open>)] for JPA transaction -2024-08-07 17:23:28 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:23:28 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:23:28 - Fetching JDBC Connection from DataSource -2024-08-07 17:23:28 - HikariPool-1 - Connection not added, stats (total=10, active=3, idle=7, waiting=0) -2024-08-07 17:23:28 - Setting JDBC Connection [HikariProxyConnection@307282787 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:23:28 - Setting JDBC Connection [HikariProxyConnection@1893948626 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:23:28 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:23:28 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:23:28 - begin -2024-08-07 17:23:28 - begin -2024-08-07 17:23:28 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@6785614b] -2024-08-07 17:23:28 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@27f7653b] -2024-08-07 17:23:28 - Fetching JDBC Connection from DataSource -2024-08-07 17:23:28 - RMI TCP Connection(2)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - [javax.management.remote.rmi.RMIConnectionImpl@5eaefeec: connectionId=rmi://127.0.0.1 11] closing. -2024-08-07 17:23:28 - [javax.management.remote.rmi.RMIConnectionImpl@5eaefeec: connectionId=rmi://127.0.0.1 11] closed. -2024-08-07 17:23:28 - RMI TCP Connection(3)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:28 - [javax.management.remote.rmi.RMIConnectionImpl@18fed55c: connectionId=rmi://127.0.0.1 12] closing. -2024-08-07 17:23:28 - [javax.management.remote.rmi.RMIConnectionImpl@18fed55c: connectionId=rmi://127.0.0.1 12] closed. -2024-08-07 17:23:28 - Created new SQL alias : e1_0 -2024-08-07 17:23:28 - Created new SQL alias : e1_0 -2024-08-07 17:23:28 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744979008806625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:23:28 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744979008806625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:23:28 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@2444aeee -2024-08-07 17:23:28 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@7a53d56f -2024-08-07 17:23:28 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744979008806625).token) -2024-08-07 17:23:28 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744979008806625).token) -2024-08-07 17:23:28 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744979008806625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744979008806625).token] - -2024-08-07 17:23:28 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744979008806625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744979008806625).token] - -2024-08-07 17:23:28 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744979008806625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:23:28 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744979008806625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:23:28 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:23:28 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:23:28 - Initializer list: - server.haengdong.domain.event.Event(744979008806625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744979008806625))@466394419 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:23:28 - Initializer list: - server.haengdong.domain.event.Event(744979008806625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744979008806625))@592846357 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:23:28 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:23:28 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:23:28 - Initiating transaction rollback -2024-08-07 17:23:28 - Initiating transaction rollback -2024-08-07 17:23:28 - Rolling back JPA transaction on EntityManager [SessionImpl(674907738<open>)] -2024-08-07 17:23:28 - Rolling back JPA transaction on EntityManager [SessionImpl(811882824<open>)] -2024-08-07 17:23:28 - rolling back -2024-08-07 17:23:28 - rolling back -2024-08-07 17:23:28 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1893948626 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:23:28 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@307282787 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:23:28 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:23:28 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:23:28 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException) -2024-08-07 17:23:28 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException) -2024-08-07 17:23:28 - 존재하지 않는 행사입니다. -server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다. - at server.haengdong.application.EventService.lambda$getEvent$1(EventService.java:128) - at java.base/java.util.Optional.orElseThrow(Optional.java:403) - at server.haengdong.application.EventService.getEvent(EventService.java:128) - at server.haengdong.application.EventService.findActions(EventService.java:53) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at server.haengdong.application.EventService$$SpringCGLIB$$0.findActions(<generated>) - at server.haengdong.presentation.EventController.findActions(EventController.java:56) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:23:28 - 존재하지 않는 행사입니다. -server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다. - at server.haengdong.application.EventService.lambda$getEvent$1(EventService.java:128) - at java.base/java.util.Optional.orElseThrow(Optional.java:403) - at server.haengdong.application.EventService.getEvent(EventService.java:128) - at server.haengdong.application.EventService.findEvent(EventService.java:47) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at server.haengdong.application.EventService$$SpringCGLIB$$0.findEvent(<generated>) - at server.haengdong.presentation.EventController.findEvent(EventController.java:49) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:23:28 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:23:28 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:23:28 - Writing [ErrorResponse[code=EV_400, message=존재하지 않는 행사입니다.]] -2024-08-07 17:23:28 - Writing [ErrorResponse[code=EV_400, message=존재하지 않는 행사입니다.]] -2024-08-07 17:23:28 - Resolved [server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다.] -2024-08-07 17:23:28 - Resolved [server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다.] -2024-08-07 17:23:28 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:23:28 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:23:28 - Completed 400 BAD_REQUEST -2024-08-07 17:23:28 - Completed 400 BAD_REQUEST -2024-08-07 17:23:34 - RMI TCP Connection(2)-127.0.0.1: (port 65500) connection closed -2024-08-07 17:23:34 - RMI TCP Connection(3)-127.0.0.1: (port 65500) connection closed -2024-08-07 17:23:34 - RMI TCP Connection(1)-127.0.0.1: (port 65500) connection closed -2024-08-07 17:23:34 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=65503,localport=65500] -2024-08-07 17:23:34 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=65502,localport=65500] -2024-08-07 17:23:34 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=65503,localport=65500] -2024-08-07 17:23:34 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=65501,localport=65500] -2024-08-07 17:23:34 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=65502,localport=65500] -2024-08-07 17:23:34 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=65501,localport=65500] -2024-08-07 17:23:34 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:65504] -2024-08-07 17:23:34 - RMI TCP Connection(4)-127.0.0.1: (port 65500) op = 80 -2024-08-07 17:23:34 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:34 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:34 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:34 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:34 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4c4c7d6c -2024-08-07 17:23:57 - RMI TCP Connection(4)-127.0.0.1: (port 65500) connection closed -2024-08-07 17:23:57 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=65504,localport=65500] -2024-08-07 17:23:57 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=65504,localport=65500] -2024-08-07 17:23:57 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:23:57 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:24:27 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:24:27 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:24:30 - GET "/api/events/7ee10524-4c4e-470c-8439-77850e9dcedc/actions", parameters={} -2024-08-07 17:24:30 - GET "/api/events/7ee10524-4c4e-470c-8439-77850e9dcedc", parameters={} -2024-08-07 17:24:30 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:24:30 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:24:30 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:24:30 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:24:30 - Found thread-bound EntityManager [SessionImpl(951253228<open>)] for JPA transaction -2024-08-07 17:24:30 - Found thread-bound EntityManager [SessionImpl(1445006328<open>)] for JPA transaction -2024-08-07 17:24:30 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:24:30 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:24:30 - Setting JDBC Connection [HikariProxyConnection@1015900962 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:24:30 - Setting JDBC Connection [HikariProxyConnection@387711427 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:24:30 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:24:30 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:24:30 - HikariPool-1 - Connection not added, stats (total=10, active=2, idle=8, waiting=0) -2024-08-07 17:24:30 - begin -2024-08-07 17:24:30 - begin -2024-08-07 17:24:30 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@798ff2d7] -2024-08-07 17:24:30 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@78615fea] -2024-08-07 17:24:30 - Created new SQL alias : e1_0 -2024-08-07 17:24:30 - Created new SQL alias : e1_0 -2024-08-07 17:24:30 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744979008806625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:24:30 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744979008806625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:24:30 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@26c1f5d5 -2024-08-07 17:24:30 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@67660a24 -2024-08-07 17:24:30 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744979008806625).token) -2024-08-07 17:24:30 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744979008806625).token) -2024-08-07 17:24:30 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744979008806625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744979008806625).token] - -2024-08-07 17:24:30 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744979008806625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744979008806625).token] - -2024-08-07 17:24:30 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744979008806625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:24:30 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744979008806625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:24:30 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:24:30 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:24:30 - Initializer list: - server.haengdong.domain.event.Event(744979008806625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744979008806625))@429919640 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:24:30 - Initializer list: - server.haengdong.domain.event.Event(744979008806625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744979008806625))@90136975 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:24:30 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:24:30 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:24:30 - Initiating transaction rollback -2024-08-07 17:24:30 - Initiating transaction rollback -2024-08-07 17:24:30 - Rolling back JPA transaction on EntityManager [SessionImpl(951253228<open>)] -2024-08-07 17:24:30 - Rolling back JPA transaction on EntityManager [SessionImpl(1445006328<open>)] -2024-08-07 17:24:30 - rolling back -2024-08-07 17:24:30 - rolling back -2024-08-07 17:24:30 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@387711427 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:24:30 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:24:30 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1015900962 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:24:30 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:24:30 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException) -2024-08-07 17:24:30 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException) -2024-08-07 17:24:30 - 존재하지 않는 행사입니다. -server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다. - at server.haengdong.application.EventService.lambda$getEvent$1(EventService.java:128) - at java.base/java.util.Optional.orElseThrow(Optional.java:403) - at server.haengdong.application.EventService.getEvent(EventService.java:128) - at server.haengdong.application.EventService.findEvent(EventService.java:47) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at server.haengdong.application.EventService$$SpringCGLIB$$0.findEvent(<generated>) - at server.haengdong.presentation.EventController.findEvent(EventController.java:49) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:24:30 - 존재하지 않는 행사입니다. -server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다. - at server.haengdong.application.EventService.lambda$getEvent$1(EventService.java:128) - at java.base/java.util.Optional.orElseThrow(Optional.java:403) - at server.haengdong.application.EventService.getEvent(EventService.java:128) - at server.haengdong.application.EventService.findActions(EventService.java:53) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at server.haengdong.application.EventService$$SpringCGLIB$$0.findActions(<generated>) - at server.haengdong.presentation.EventController.findActions(EventController.java:56) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:24:30 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:24:30 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:24:30 - Writing [ErrorResponse[code=EV_400, message=존재하지 않는 행사입니다.]] -2024-08-07 17:24:30 - Writing [ErrorResponse[code=EV_400, message=존재하지 않는 행사입니다.]] -2024-08-07 17:24:30 - Resolved [server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다.] -2024-08-07 17:24:30 - Resolved [server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다.] -2024-08-07 17:24:30 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:24:30 - Completed 400 BAD_REQUEST -2024-08-07 17:24:30 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:24:30 - Completed 400 BAD_REQUEST -2024-08-07 17:24:43 - POST "/api/events", parameters={} -2024-08-07 17:24:43 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:24:43 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:24:43 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=adfa, password=1234]] -2024-08-07 17:24:43 - Found thread-bound EntityManager [SessionImpl(2435836<open>)] for JPA transaction -2024-08-07 17:24:43 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 17:24:43 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:24:43 - begin -2024-08-07 17:24:43 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@2328d1eb] -2024-08-07 17:24:43 - Found thread-bound EntityManager [SessionImpl(2435836<open>)] for JPA transaction -2024-08-07 17:24:43 - Participating in existing transaction -2024-08-07 17:24:43 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 17:24:43 - Executing identity-insert immediately -2024-08-07 17:24:43 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 17:24:43 - Initializer list is empty -2024-08-07 17:24:43 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@365eda44 -2024-08-07 17:24:43 - Extracted JDBC value [0] - [1] -2024-08-07 17:24:43 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@351d2e89 -2024-08-07 17:24:43 - Initiating transaction commit -2024-08-07 17:24:43 - Committing JPA transaction on EntityManager [SessionImpl(2435836<open>)] -2024-08-07 17:24:43 - committing -2024-08-07 17:24:43 - Processing flush-time cascades -2024-08-07 17:24:43 - Dirty checking collections -2024-08-07 17:24:43 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 17:24:43 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 17:24:43 - Listing entities: -2024-08-07 17:24:43 - server.haengdong.domain.event.Event{password=1234, name=adfa, id=1, token=b611acdc-f004-4567-aede-a5c85ab75ba5} -2024-08-07 17:24:43 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:24:43 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:24:43 - Writing [EventResponse[eventId=b611acdc-f004-4567-aede-a5c85ab75ba5]] -2024-08-07 17:24:43 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:24:43 - Completed 200 OK -2024-08-07 17:24:44 - OPTIONS "/api/events/b611acdc-f004-4567-aede-a5c85ab75ba5", parameters={} -2024-08-07 17:24:44 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:24:44 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:24:44 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:24:44 - Completed 200 OK -2024-08-07 17:24:44 - OPTIONS "/api/events/b611acdc-f004-4567-aede-a5c85ab75ba5/actions", parameters={} -2024-08-07 17:24:44 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:24:44 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:24:44 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:24:44 - Completed 200 OK -2024-08-07 17:24:44 - GET "/api/events/b611acdc-f004-4567-aede-a5c85ab75ba5", parameters={} -2024-08-07 17:24:44 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:24:44 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:24:44 - Found thread-bound EntityManager [SessionImpl(340868459<open>)] for JPA transaction -2024-08-07 17:24:44 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:24:44 - Setting JDBC Connection [HikariProxyConnection@275692345 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:24:44 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:24:44 - begin -2024-08-07 17:24:44 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@556c3750] -2024-08-07 17:24:44 - Created new SQL alias : e1_0 -2024-08-07 17:24:44 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744979008806625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:24:44 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@7954b12c -2024-08-07 17:24:44 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744979008806625).token) -2024-08-07 17:24:44 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744979008806625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744979008806625).token] - -2024-08-07 17:24:44 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744979008806625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:24:44 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:24:44 - Initializer list: - server.haengdong.domain.event.Event(744979008806625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744979008806625))@893634591 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:24:44 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:24:44 - Extracted JDBC value [0] - [1] -2024-08-07 17:24:44 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744979008806625)): 1 -2024-08-07 17:24:44 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744979008806625)#1] : 1466657927 -2024-08-07 17:24:44 - GET "/api/events/b611acdc-f004-4567-aede-a5c85ab75ba5/actions", parameters={} -2024-08-07 17:24:44 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:24:44 - Extracted JDBC value [1] - [adfa] -2024-08-07 17:24:44 - Extracted JDBC value [2] - [1234] -2024-08-07 17:24:44 - Extracted JDBC value [3] - [b611acdc-f004-4567-aede-a5c85ab75ba5] -2024-08-07 17:24:44 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:24:44 - Found thread-bound EntityManager [SessionImpl(1931201066<open>)] for JPA transaction -2024-08-07 17:24:44 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:24:44 - Setting JDBC Connection [HikariProxyConnection@1998868625 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:24:44 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:24:44 - begin -2024-08-07 17:24:44 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@3226c011] -2024-08-07 17:24:44 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744979008806625)#1 -2024-08-07 17:24:44 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@11b24989 -2024-08-07 17:24:44 - Created new SQL alias : e1_0 -2024-08-07 17:24:44 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744979008806625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:24:44 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@2eb9e687 -2024-08-07 17:24:44 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744979008806625).token) -2024-08-07 17:24:44 - Initiating transaction commit -2024-08-07 17:24:44 - Committing JPA transaction on EntityManager [SessionImpl(340868459<open>)] -2024-08-07 17:24:44 - committing -2024-08-07 17:24:44 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744979008806625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744979008806625).token] - -2024-08-07 17:24:44 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744979008806625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:24:44 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@275692345 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:24:44 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:24:44 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:24:44 - Initializer list: - server.haengdong.domain.event.Event(744979008806625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744979008806625))@1376337758 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:24:44 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:24:44 - Extracted JDBC value [0] - [1] -2024-08-07 17:24:44 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744979008806625)): 1 -2024-08-07 17:24:44 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744979008806625)#1] : 1303323850 -2024-08-07 17:24:44 - Extracted JDBC value [1] - [adfa] -2024-08-07 17:24:44 - Extracted JDBC value [2] - [1234] -2024-08-07 17:24:44 - Extracted JDBC value [3] - [b611acdc-f004-4567-aede-a5c85ab75ba5] -2024-08-07 17:24:44 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744979008806625)#1 -2024-08-07 17:24:44 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@564701ee -2024-08-07 17:24:44 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:24:44 - Writing [EventDetailResponse[eventName=adfa]] -2024-08-07 17:24:44 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:24:44 - Completed 200 OK -2024-08-07 17:24:44 - Created new SQL alias : ba1_0 -2024-08-07 17:24:44 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(744978854757500))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:24:44 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@623e71e] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:24:44 - Created new SQL alias : a1_0 -2024-08-07 17:24:44 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4fa1bbd8] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:24:44 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@623e71e] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:24:44 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@4bcbdb61 -2024-08-07 17:24:44 - Created new SQL alias : e1_0 -2024-08-07 17:24:44 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@1dff927 -2024-08-07 17:24:44 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166).event(744978854784083) : event) -2024-08-07 17:24:44 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(744978854757500)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(744978854757500).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(744978854757500).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(744978854757500).title] - -2024-08-07 17:24:44 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(744978854757500)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166).event(744978854784083)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:24:44 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:24:44 - Initializer list: - server.haengdong.domain.action.BillAction(744978854757500).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(744978854757500).action.event)@899251454 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@369750755) - server.haengdong.domain.action.BillAction(744978854757500).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(744978854757500).action)@872146855 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@1220368415) - server.haengdong.domain.action.BillAction(744978854757500) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(744978854757500))@918401914 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - -2024-08-07 17:24:44 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:24:44 - Created new SQL alias : ma1_0 -2024-08-07 17:24:44 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction(m))] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 17:24:44 - Created new SQL alias : a1_0 -2024-08-07 17:24:44 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1f0243d] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 17:24:44 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1fffc10a] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 17:24:44 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1cc20c46] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 17:24:44 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1cc20c46] for NavigablePath [server.haengdong.domain.action.MemberAction(m).action(744978992560833).event] overrode previous registration : org.hibernate.sql.ast.tree.from.LazyTableGroup@1fffc10a -2024-08-07 17:24:44 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 17:24:44 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 17:24:44 - Determining mapping-model type for SqmPath : SqmEntityValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action(744978992560833).event) -2024-08-07 17:24:44 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction(m)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.MemberAction(m).action(744978992560833)] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction(m).status] - -2024-08-07 17:24:44 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction(m)) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction(m).action(744978992560833)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.MemberAction(m).action(744978992560833).event) { - } - join LazyTableGroup (e2 : server.haengdong.domain.action.MemberAction(m).action(744978992560833).event) { - } - } - } - } - } - } - } - -2024-08-07 17:24:44 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:24:44 - Initializer list: - server.haengdong.domain.action.MemberAction(m).action(744978992560833) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744978992560833))@2097506086 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@393604326) - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@458846834 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(744978992560833).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744978992560833).event)@526358860 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@369750755) - -2024-08-07 17:24:44 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:24:44 - Initiating transaction commit -2024-08-07 17:24:44 - Committing JPA transaction on EntityManager [SessionImpl(1931201066<open>)] -2024-08-07 17:24:44 - committing -2024-08-07 17:24:44 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1998868625 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:24:44 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:24:44 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:24:44 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:24:44 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:24:44 - Completed 200 OK -2024-08-07 17:24:47 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:24:47 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:24:47 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:24:47 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:24:47 - OPTIONS "/api/events/b611acdc-f004-4567-aede-a5c85ab75ba5/member-actions", parameters={} -2024-08-07 17:24:47 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:24:47 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:24:47 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:24:47 - Completed 200 OK -2024-08-07 17:24:47 - POST "/api/events/b611acdc-f004-4567-aede-a5c85ab75ba5/member-actions", parameters={} -2024-08-07 17:24:47 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:24:47 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 17:24:47 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:24:47 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 17:24:47 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 17:24:47 - Completed 401 UNAUTHORIZED -2024-08-07 17:24:52 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:24:52 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:24:57 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:24:57 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:25:27 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:25:27 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:25:57 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:25:57 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:26:06 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:26:06 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:26:06 - POST "/api/events", parameters={} -2024-08-07 17:26:06 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:26:06 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:26:06 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=1234]] -2024-08-07 17:26:06 - Found thread-bound EntityManager [SessionImpl(435326388<open>)] for JPA transaction -2024-08-07 17:26:06 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 17:26:06 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:26:06 - begin -2024-08-07 17:26:06 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@361d7913] -2024-08-07 17:26:06 - Found thread-bound EntityManager [SessionImpl(435326388<open>)] for JPA transaction -2024-08-07 17:26:06 - Participating in existing transaction -2024-08-07 17:26:06 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 17:26:06 - Executing identity-insert immediately -2024-08-07 17:26:06 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 17:26:06 - Initializer list is empty -2024-08-07 17:26:06 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@19c75611 -2024-08-07 17:26:06 - Extracted JDBC value [0] - [2] -2024-08-07 17:26:06 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@7a8c278a -2024-08-07 17:26:06 - Initiating transaction commit -2024-08-07 17:26:06 - Committing JPA transaction on EntityManager [SessionImpl(435326388<open>)] -2024-08-07 17:26:06 - committing -2024-08-07 17:26:06 - Processing flush-time cascades -2024-08-07 17:26:06 - Dirty checking collections -2024-08-07 17:26:06 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 17:26:06 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 17:26:06 - Listing entities: -2024-08-07 17:26:06 - server.haengdong.domain.event.Event{password=1234, name=1234, id=2, token=71818b1a-efaf-4c28-a747-8040bda353b9} -2024-08-07 17:26:06 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:26:06 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:26:06 - Writing [EventResponse[eventId=71818b1a-efaf-4c28-a747-8040bda353b9]] -2024-08-07 17:26:06 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:26:06 - Completed 200 OK -2024-08-07 17:26:27 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:26:27 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:26:57 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:26:57 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:27:27 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:27:27 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:27:57 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:27:57 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:28:27 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:28:27 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:28:34 - GET "/api/events/b611acdc-f004-4567-aede-a5c85ab75ba5", parameters={} -2024-08-07 17:28:34 - GET "/api/events/b611acdc-f004-4567-aede-a5c85ab75ba5/actions", parameters={} -2024-08-07 17:28:34 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:28:34 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:28:34 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:28:34 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:28:34 - Found thread-bound EntityManager [SessionImpl(2128999624<open>)] for JPA transaction -2024-08-07 17:28:34 - Found thread-bound EntityManager [SessionImpl(1072998696<open>)] for JPA transaction -2024-08-07 17:28:34 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:28:34 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:28:34 - Setting JDBC Connection [HikariProxyConnection@1459925670 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:28:34 - Setting JDBC Connection [HikariProxyConnection@243807586 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:28:34 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:28:34 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:28:34 - begin -2024-08-07 17:28:34 - begin -2024-08-07 17:28:34 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@37c1e1c1] -2024-08-07 17:28:34 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@12dfd9d0] -2024-08-07 17:28:34 - Created new SQL alias : e1_0 -2024-08-07 17:28:34 - Created new SQL alias : e1_0 -2024-08-07 17:28:34 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744979008806625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:28:34 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744979008806625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:28:34 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@5d707740 -2024-08-07 17:28:34 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@64b40bd9 -2024-08-07 17:28:34 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744979008806625).token) -2024-08-07 17:28:34 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744979008806625).token) -2024-08-07 17:28:34 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744979008806625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744979008806625).token] - -2024-08-07 17:28:34 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744979008806625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744979008806625).token] - -2024-08-07 17:28:34 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744979008806625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:28:34 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744979008806625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:28:34 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:28:34 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:28:34 - Initializer list: - server.haengdong.domain.event.Event(744979008806625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744979008806625))@1314703631 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:28:34 - Initializer list: - server.haengdong.domain.event.Event(744979008806625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744979008806625))@230888303 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:28:34 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:28:34 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:28:34 - Extracted JDBC value [0] - [1] -2024-08-07 17:28:34 - Extracted JDBC value [0] - [1] -2024-08-07 17:28:34 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744979008806625)): 1 -2024-08-07 17:28:34 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744979008806625)): 1 -2024-08-07 17:28:34 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744979008806625)#1] : 777652300 -2024-08-07 17:28:34 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744979008806625)#1] : 956331656 -2024-08-07 17:28:34 - Extracted JDBC value [1] - [adfa] -2024-08-07 17:28:34 - Extracted JDBC value [1] - [adfa] -2024-08-07 17:28:34 - Extracted JDBC value [2] - [1234] -2024-08-07 17:28:34 - Extracted JDBC value [2] - [1234] -2024-08-07 17:28:34 - Extracted JDBC value [3] - [b611acdc-f004-4567-aede-a5c85ab75ba5] -2024-08-07 17:28:34 - Extracted JDBC value [3] - [b611acdc-f004-4567-aede-a5c85ab75ba5] -2024-08-07 17:28:34 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744979008806625)#1 -2024-08-07 17:28:34 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744979008806625)#1 -2024-08-07 17:28:34 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@2ccd42ac -2024-08-07 17:28:34 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@6e6a839 -2024-08-07 17:28:34 - Initiating transaction commit -2024-08-07 17:28:34 - Committing JPA transaction on EntityManager [SessionImpl(1072998696<open>)] -2024-08-07 17:28:34 - committing -2024-08-07 17:28:34 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1459925670 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:28:34 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:28:34 - Created new SQL alias : ba1_0 -2024-08-07 17:28:34 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(744978854757500))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:28:34 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@14d68d69] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:28:34 - Created new SQL alias : a1_0 -2024-08-07 17:28:34 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@27c258aa] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:28:34 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:28:34 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@14d68d69] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:28:34 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@4bcbdb61 -2024-08-07 17:28:34 - Writing [EventDetailResponse[eventName=adfa]] -2024-08-07 17:28:34 - Created new SQL alias : e1_0 -2024-08-07 17:28:34 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@1bc79d22 -2024-08-07 17:28:34 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166).event(744978854784083) : event) -2024-08-07 17:28:34 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(744978854757500)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(744978854757500).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(744978854757500).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(744978854757500).title] - -2024-08-07 17:28:34 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(744978854757500)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166).event(744978854784083)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:28:34 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:28:34 - Initializer list: - server.haengdong.domain.action.BillAction(744978854757500).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(744978854757500).action.event)@1830221655 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@369750755) - server.haengdong.domain.action.BillAction(744978854757500).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(744978854757500).action)@1300988505 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@1220368415) - server.haengdong.domain.action.BillAction(744978854757500) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(744978854757500))@2025423946 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - -2024-08-07 17:28:34 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:28:34 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:28:34 - Completed 200 OK -2024-08-07 17:28:34 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:28:34 - Initializer list: - server.haengdong.domain.action.MemberAction(m).action(744978992560833) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744978992560833))@966320109 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@393604326) - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@2069286206 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(744978992560833).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744978992560833).event)@132555703 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@369750755) - -2024-08-07 17:28:34 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:28:34 - Initiating transaction commit -2024-08-07 17:28:34 - Committing JPA transaction on EntityManager [SessionImpl(2128999624<open>)] -2024-08-07 17:28:34 - committing -2024-08-07 17:28:34 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@243807586 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:28:34 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:28:34 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:28:34 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:28:34 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:28:34 - Completed 200 OK -2024-08-07 17:28:37 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:28:37 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:28:37 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:28:37 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:28:57 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:28:57 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:29:09 - POST "/api/events", parameters={} -2024-08-07 17:29:09 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:29:09 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:29:09 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=sadfa, password=1234]] -2024-08-07 17:29:09 - Found thread-bound EntityManager [SessionImpl(978297350<open>)] for JPA transaction -2024-08-07 17:29:09 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 17:29:09 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:29:09 - begin -2024-08-07 17:29:09 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@138b99fb] -2024-08-07 17:29:09 - Found thread-bound EntityManager [SessionImpl(978297350<open>)] for JPA transaction -2024-08-07 17:29:09 - Participating in existing transaction -2024-08-07 17:29:09 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 17:29:09 - Executing identity-insert immediately -2024-08-07 17:29:09 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 17:29:09 - Initializer list is empty -2024-08-07 17:29:09 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@51efe286 -2024-08-07 17:29:09 - Extracted JDBC value [0] - [3] -2024-08-07 17:29:09 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@6d342b -2024-08-07 17:29:09 - Initiating transaction commit -2024-08-07 17:29:09 - Committing JPA transaction on EntityManager [SessionImpl(978297350<open>)] -2024-08-07 17:29:09 - committing -2024-08-07 17:29:09 - Processing flush-time cascades -2024-08-07 17:29:09 - Dirty checking collections -2024-08-07 17:29:09 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 17:29:09 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 17:29:09 - Listing entities: -2024-08-07 17:29:09 - server.haengdong.domain.event.Event{password=1234, name=sadfa, id=3, token=a373a103-38d9-4fc4-8cba-731d078d8c8e} -2024-08-07 17:29:09 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:29:09 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:29:09 - Writing [EventResponse[eventId=a373a103-38d9-4fc4-8cba-731d078d8c8e]] -2024-08-07 17:29:09 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:29:09 - Completed 200 OK -2024-08-07 17:29:11 - OPTIONS "/api/events/a373a103-38d9-4fc4-8cba-731d078d8c8e", parameters={} -2024-08-07 17:29:11 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:29:11 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:29:11 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:29:11 - Completed 200 OK -2024-08-07 17:29:11 - GET "/api/events/a373a103-38d9-4fc4-8cba-731d078d8c8e", parameters={} -2024-08-07 17:29:11 - OPTIONS "/api/events/a373a103-38d9-4fc4-8cba-731d078d8c8e/actions", parameters={} -2024-08-07 17:29:11 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:29:11 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:29:11 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:29:11 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:29:11 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:29:11 - Completed 200 OK -2024-08-07 17:29:11 - Found thread-bound EntityManager [SessionImpl(663522274<open>)] for JPA transaction -2024-08-07 17:29:11 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:29:11 - Setting JDBC Connection [HikariProxyConnection@869111828 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:29:11 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:29:11 - begin -2024-08-07 17:29:11 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@7dbc053e] -2024-08-07 17:29:11 - Created new SQL alias : e1_0 -2024-08-07 17:29:11 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744979008806625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:29:11 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@75d3e1d -2024-08-07 17:29:11 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744979008806625).token) -2024-08-07 17:29:11 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744979008806625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744979008806625).token] - -2024-08-07 17:29:11 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744979008806625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:29:11 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:29:11 - Initializer list: - server.haengdong.domain.event.Event(744979008806625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744979008806625))@102185090 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:29:11 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:29:11 - Extracted JDBC value [0] - [3] -2024-08-07 17:29:11 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744979008806625)): 3 -2024-08-07 17:29:11 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744979008806625)#3] : 640023633 -2024-08-07 17:29:11 - Extracted JDBC value [1] - [sadfa] -2024-08-07 17:29:11 - Extracted JDBC value [2] - [1234] -2024-08-07 17:29:11 - Extracted JDBC value [3] - [a373a103-38d9-4fc4-8cba-731d078d8c8e] -2024-08-07 17:29:11 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744979008806625)#3 -2024-08-07 17:29:11 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@19c9033f -2024-08-07 17:29:11 - Initiating transaction commit -2024-08-07 17:29:11 - Committing JPA transaction on EntityManager [SessionImpl(663522274<open>)] -2024-08-07 17:29:11 - committing -2024-08-07 17:29:11 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@869111828 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:29:11 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:29:11 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:29:11 - Writing [EventDetailResponse[eventName=sadfa]] -2024-08-07 17:29:11 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:29:11 - Completed 200 OK -2024-08-07 17:29:11 - GET "/api/events/a373a103-38d9-4fc4-8cba-731d078d8c8e/actions", parameters={} -2024-08-07 17:29:11 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:29:11 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:29:11 - Found thread-bound EntityManager [SessionImpl(1301506189<open>)] for JPA transaction -2024-08-07 17:29:11 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:29:11 - Setting JDBC Connection [HikariProxyConnection@932569529 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:29:11 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:29:11 - begin -2024-08-07 17:29:11 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@14c15e84] -2024-08-07 17:29:11 - Created new SQL alias : e1_0 -2024-08-07 17:29:11 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744979008806625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:29:11 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@fea8be1 -2024-08-07 17:29:11 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744979008806625).token) -2024-08-07 17:29:11 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744979008806625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744979008806625).token] - -2024-08-07 17:29:11 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744979008806625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:29:11 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:29:11 - Initializer list: - server.haengdong.domain.event.Event(744979008806625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744979008806625))@1606460651 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:29:11 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:29:11 - Extracted JDBC value [0] - [3] -2024-08-07 17:29:11 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744979008806625)): 3 -2024-08-07 17:29:11 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744979008806625)#3] : 434544238 -2024-08-07 17:29:11 - Extracted JDBC value [1] - [sadfa] -2024-08-07 17:29:11 - Extracted JDBC value [2] - [1234] -2024-08-07 17:29:11 - Extracted JDBC value [3] - [a373a103-38d9-4fc4-8cba-731d078d8c8e] -2024-08-07 17:29:11 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744979008806625)#3 -2024-08-07 17:29:11 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@435b8645 -2024-08-07 17:29:11 - Created new SQL alias : ba1_0 -2024-08-07 17:29:11 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(744978854757500))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:29:11 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4bd4a711] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:29:11 - Created new SQL alias : a1_0 -2024-08-07 17:29:11 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@54227980] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:29:11 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4bd4a711] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:29:11 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@4bcbdb61 -2024-08-07 17:29:11 - Created new SQL alias : e1_0 -2024-08-07 17:29:11 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@33ce7a4e -2024-08-07 17:29:11 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166).event(744978854784083) : event) -2024-08-07 17:29:11 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(744978854757500)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(744978854757500).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(744978854757500).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(744978854757500).title] - -2024-08-07 17:29:11 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(744978854757500)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166).event(744978854784083)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:29:11 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:29:11 - Initializer list: - server.haengdong.domain.action.BillAction(744978854757500).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(744978854757500).action.event)@269789603 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@369750755) - server.haengdong.domain.action.BillAction(744978854757500).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(744978854757500).action)@2123790495 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@1220368415) - server.haengdong.domain.action.BillAction(744978854757500) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(744978854757500))@960491700 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - -2024-08-07 17:29:11 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:29:11 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:29:11 - Initializer list: - server.haengdong.domain.action.MemberAction(m).action(744978992560833) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744978992560833))@654305814 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@393604326) - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@1610810413 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(744978992560833).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744978992560833).event)@1476548605 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@369750755) - -2024-08-07 17:29:11 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:29:11 - Initiating transaction commit -2024-08-07 17:29:11 - Committing JPA transaction on EntityManager [SessionImpl(1301506189<open>)] -2024-08-07 17:29:11 - committing -2024-08-07 17:29:11 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@932569529 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:29:11 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:29:11 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:29:11 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:29:11 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:29:11 - Completed 200 OK -2024-08-07 17:29:12 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:29:12 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:29:12 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:29:12 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:29:14 - OPTIONS "/api/events/a373a103-38d9-4fc4-8cba-731d078d8c8e/member-actions", parameters={} -2024-08-07 17:29:14 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:29:14 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:29:14 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:29:14 - Completed 200 OK -2024-08-07 17:29:14 - POST "/api/events/a373a103-38d9-4fc4-8cba-731d078d8c8e/member-actions", parameters={} -2024-08-07 17:29:14 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:29:14 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 17:29:14 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:29:14 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 17:29:14 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 17:29:14 - Completed 401 UNAUTHORIZED -2024-08-07 17:29:17 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:29:17 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:29:27 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:29:27 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:29:57 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:29:57 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:30:27 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:30:27 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:30:45 - GET "/api/events/a373a103-38d9-4fc4-8cba-731d078d8c8e", parameters={} -2024-08-07 17:30:45 - GET "/api/events/a373a103-38d9-4fc4-8cba-731d078d8c8e/actions", parameters={} -2024-08-07 17:30:45 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:30:45 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:30:45 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:30:45 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:30:45 - Found thread-bound EntityManager [SessionImpl(1187454595<open>)] for JPA transaction -2024-08-07 17:30:45 - Found thread-bound EntityManager [SessionImpl(117601699<open>)] for JPA transaction -2024-08-07 17:30:45 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:30:45 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:30:45 - Setting JDBC Connection [HikariProxyConnection@1484918127 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:30:45 - Setting JDBC Connection [HikariProxyConnection@385320822 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:30:45 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:30:45 - begin -2024-08-07 17:30:45 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:30:45 - begin -2024-08-07 17:30:45 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@3822bcfc] -2024-08-07 17:30:45 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@7468617f] -2024-08-07 17:30:45 - Created new SQL alias : e1_0 -2024-08-07 17:30:45 - Created new SQL alias : e1_0 -2024-08-07 17:30:45 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744979008806625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:30:45 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744979008806625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:30:45 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@3bb96523 -2024-08-07 17:30:45 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@51070bbf -2024-08-07 17:30:45 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744979008806625).token) -2024-08-07 17:30:45 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744979008806625).token) -2024-08-07 17:30:45 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744979008806625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744979008806625).token] - -2024-08-07 17:30:45 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744979008806625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744979008806625).token] - -2024-08-07 17:30:45 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744979008806625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:30:45 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744979008806625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:30:45 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:30:45 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:30:45 - Initializer list: - server.haengdong.domain.event.Event(744979008806625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744979008806625))@981542969 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:30:45 - Initializer list: - server.haengdong.domain.event.Event(744979008806625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744979008806625))@1110615276 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:30:45 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:30:45 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:30:45 - Extracted JDBC value [0] - [3] -2024-08-07 17:30:45 - Extracted JDBC value [0] - [3] -2024-08-07 17:30:45 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744979008806625)): 3 -2024-08-07 17:30:45 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744979008806625)): 3 -2024-08-07 17:30:45 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744979008806625)#3] : 237104706 -2024-08-07 17:30:45 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744979008806625)#3] : 912603955 -2024-08-07 17:30:45 - Extracted JDBC value [1] - [sadfa] -2024-08-07 17:30:45 - Extracted JDBC value [1] - [sadfa] -2024-08-07 17:30:45 - Extracted JDBC value [2] - [1234] -2024-08-07 17:30:45 - Extracted JDBC value [2] - [1234] -2024-08-07 17:30:45 - Extracted JDBC value [3] - [a373a103-38d9-4fc4-8cba-731d078d8c8e] -2024-08-07 17:30:45 - Extracted JDBC value [3] - [a373a103-38d9-4fc4-8cba-731d078d8c8e] -2024-08-07 17:30:45 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744979008806625)#3 -2024-08-07 17:30:45 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744979008806625)#3 -2024-08-07 17:30:45 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@6127fcd7 -2024-08-07 17:30:45 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@3dd2cf5f -2024-08-07 17:30:45 - Initiating transaction commit -2024-08-07 17:30:45 - Committing JPA transaction on EntityManager [SessionImpl(117601699<open>)] -2024-08-07 17:30:45 - committing -2024-08-07 17:30:45 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@385320822 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:30:45 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:30:45 - Created new SQL alias : ba1_0 -2024-08-07 17:30:45 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(744978854757500))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:30:45 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:30:45 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@37c4aff9] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:30:45 - Writing [EventDetailResponse[eventName=sadfa]] -2024-08-07 17:30:45 - Created new SQL alias : a1_0 -2024-08-07 17:30:45 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1cc72669] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:30:45 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@37c4aff9] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:30:45 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@4bcbdb61 -2024-08-07 17:30:45 - Created new SQL alias : e1_0 -2024-08-07 17:30:45 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@79e6c2a8 -2024-08-07 17:30:45 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166).event(744978854784083) : event) -2024-08-07 17:30:45 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(744978854757500)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(744978854757500).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(744978854757500).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(744978854757500).title] - -2024-08-07 17:30:45 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(744978854757500)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166).event(744978854784083)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:30:45 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:30:45 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:30:45 - Initializer list: - server.haengdong.domain.action.BillAction(744978854757500).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(744978854757500).action.event)@1431289999 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@369750755) - server.haengdong.domain.action.BillAction(744978854757500).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(744978854757500).action)@1197872824 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@1220368415) - server.haengdong.domain.action.BillAction(744978854757500) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(744978854757500))@1656198227 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - -2024-08-07 17:30:45 - Completed 200 OK -2024-08-07 17:30:45 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:30:45 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:30:45 - Initializer list: - server.haengdong.domain.action.MemberAction(m).action(744978992560833) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744978992560833))@933702247 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@393604326) - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@1777083852 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(744978992560833).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744978992560833).event)@481319146 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@369750755) - -2024-08-07 17:30:45 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:30:45 - Initiating transaction commit -2024-08-07 17:30:45 - Committing JPA transaction on EntityManager [SessionImpl(1187454595<open>)] -2024-08-07 17:30:45 - committing -2024-08-07 17:30:45 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1484918127 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:30:45 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:30:45 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:30:45 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:30:45 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:30:45 - Completed 200 OK -2024-08-07 17:30:47 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:30:47 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:30:47 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:30:47 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:30:51 - POST "/api/events/a373a103-38d9-4fc4-8cba-731d078d8c8e/member-actions", parameters={} -2024-08-07 17:30:51 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:30:51 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 17:30:51 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:30:51 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 17:30:51 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 17:30:51 - Completed 401 UNAUTHORIZED -2024-08-07 17:30:52 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:30:52 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:30:57 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:30:57 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:31:23 - OPTIONS "/api/events", parameters={} -2024-08-07 17:31:23 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:31:23 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:31:23 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:31:23 - Completed 200 OK -2024-08-07 17:31:23 - POST "/api/events", parameters={} -2024-08-07 17:31:23 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:31:23 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:31:23 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=1234]] -2024-08-07 17:31:23 - Found thread-bound EntityManager [SessionImpl(153476769<open>)] for JPA transaction -2024-08-07 17:31:23 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 17:31:23 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:31:23 - begin -2024-08-07 17:31:23 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@373bdb7b] -2024-08-07 17:31:23 - Found thread-bound EntityManager [SessionImpl(153476769<open>)] for JPA transaction -2024-08-07 17:31:23 - Participating in existing transaction -2024-08-07 17:31:23 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 17:31:23 - Executing identity-insert immediately -2024-08-07 17:31:23 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 17:31:23 - Initializer list is empty -2024-08-07 17:31:23 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@553939ff -2024-08-07 17:31:23 - Extracted JDBC value [0] - [4] -2024-08-07 17:31:23 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@49c3917f -2024-08-07 17:31:23 - Initiating transaction commit -2024-08-07 17:31:23 - Committing JPA transaction on EntityManager [SessionImpl(153476769<open>)] -2024-08-07 17:31:23 - committing -2024-08-07 17:31:23 - Processing flush-time cascades -2024-08-07 17:31:23 - Dirty checking collections -2024-08-07 17:31:23 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 17:31:23 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 17:31:23 - Listing entities: -2024-08-07 17:31:23 - server.haengdong.domain.event.Event{password=1234, name=1234, id=4, token=a187672d-f634-44b7-8944-8daaaa449553} -2024-08-07 17:31:23 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:31:23 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:31:23 - Writing [EventResponse[eventId=a187672d-f634-44b7-8944-8daaaa449553]] -2024-08-07 17:31:23 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:31:23 - Completed 200 OK -2024-08-07 17:31:26 - OPTIONS "/api/events/a187672d-f634-44b7-8944-8daaaa449553", parameters={} -2024-08-07 17:31:26 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:31:26 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:31:26 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:31:26 - Completed 200 OK -2024-08-07 17:31:26 - OPTIONS "/api/events/a187672d-f634-44b7-8944-8daaaa449553/actions", parameters={} -2024-08-07 17:31:26 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:31:26 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:31:26 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:31:26 - Completed 200 OK -2024-08-07 17:31:26 - GET "/api/events/a187672d-f634-44b7-8944-8daaaa449553", parameters={} -2024-08-07 17:31:26 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:31:26 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:31:26 - GET "/api/events/a187672d-f634-44b7-8944-8daaaa449553/actions", parameters={} -2024-08-07 17:31:26 - Found thread-bound EntityManager [SessionImpl(1110076208<open>)] for JPA transaction -2024-08-07 17:31:26 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:31:26 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:31:26 - Setting JDBC Connection [HikariProxyConnection@1835861732 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:31:26 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:31:26 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:31:26 - begin -2024-08-07 17:31:26 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@724e14d9] -2024-08-07 17:31:26 - Found thread-bound EntityManager [SessionImpl(1130524601<open>)] for JPA transaction -2024-08-07 17:31:26 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:31:26 - Setting JDBC Connection [HikariProxyConnection@1561004087 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:31:26 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:31:26 - begin -2024-08-07 17:31:26 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@8f0f253] -2024-08-07 17:31:26 - Created new SQL alias : e1_0 -2024-08-07 17:31:26 - Created new SQL alias : e1_0 -2024-08-07 17:31:26 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744979008806625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:31:26 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744979008806625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:31:26 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@2c518f03 -2024-08-07 17:31:26 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@4de8851 -2024-08-07 17:31:26 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744979008806625).token) -2024-08-07 17:31:26 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744979008806625).token) -2024-08-07 17:31:26 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744979008806625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744979008806625).token] - -2024-08-07 17:31:26 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744979008806625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744979008806625).token] - -2024-08-07 17:31:26 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744979008806625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:31:26 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744979008806625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:31:26 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:31:26 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:31:26 - Initializer list: - server.haengdong.domain.event.Event(744979008806625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744979008806625))@973494846 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:31:26 - Initializer list: - server.haengdong.domain.event.Event(744979008806625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744979008806625))@1588839123 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:31:26 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:31:26 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:31:26 - Extracted JDBC value [0] - [4] -2024-08-07 17:31:26 - Extracted JDBC value [0] - [4] -2024-08-07 17:31:26 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744979008806625)): 4 -2024-08-07 17:31:26 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744979008806625)): 4 -2024-08-07 17:31:26 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744979008806625)#4] : 1424673072 -2024-08-07 17:31:26 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744979008806625)#4] : 1693792373 -2024-08-07 17:31:26 - Extracted JDBC value [1] - [1234] -2024-08-07 17:31:26 - Extracted JDBC value [1] - [1234] -2024-08-07 17:31:26 - Extracted JDBC value [2] - [1234] -2024-08-07 17:31:26 - Extracted JDBC value [2] - [1234] -2024-08-07 17:31:26 - Extracted JDBC value [3] - [a187672d-f634-44b7-8944-8daaaa449553] -2024-08-07 17:31:26 - Extracted JDBC value [3] - [a187672d-f634-44b7-8944-8daaaa449553] -2024-08-07 17:31:26 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744979008806625)#4 -2024-08-07 17:31:26 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744979008806625)#4 -2024-08-07 17:31:26 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@140f3c24 -2024-08-07 17:31:26 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@6caa597f -2024-08-07 17:31:26 - Initiating transaction commit -2024-08-07 17:31:26 - Committing JPA transaction on EntityManager [SessionImpl(1110076208<open>)] -2024-08-07 17:31:26 - committing -2024-08-07 17:31:26 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1835861732 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:31:26 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:31:26 - Created new SQL alias : ba1_0 -2024-08-07 17:31:26 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(744978854757500))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:31:26 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:31:26 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1ff96b97] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:31:26 - Writing [EventDetailResponse[eventName=1234]] -2024-08-07 17:31:26 - Created new SQL alias : a1_0 -2024-08-07 17:31:26 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@727a8a50] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:31:26 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1ff96b97] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:31:26 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@4bcbdb61 -2024-08-07 17:31:26 - Created new SQL alias : e1_0 -2024-08-07 17:31:26 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@402eae14 -2024-08-07 17:31:26 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166).event(744978854784083) : event) -2024-08-07 17:31:26 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:31:26 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(744978854757500)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(744978854757500).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(744978854757500).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(744978854757500).title] - -2024-08-07 17:31:26 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(744978854757500)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166).event(744978854784083)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:31:26 - Completed 200 OK -2024-08-07 17:31:26 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:31:26 - Initializer list: - server.haengdong.domain.action.BillAction(744978854757500).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(744978854757500).action.event)@511880216 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@369750755) - server.haengdong.domain.action.BillAction(744978854757500).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(744978854757500).action)@1249102220 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@1220368415) - server.haengdong.domain.action.BillAction(744978854757500) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(744978854757500))@1820193432 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - -2024-08-07 17:31:26 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:31:26 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:31:26 - Initializer list: - server.haengdong.domain.action.MemberAction(m).action(744978992560833) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744978992560833))@2047294402 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@393604326) - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@2045636392 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(744978992560833).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744978992560833).event)@1978904617 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@369750755) - -2024-08-07 17:31:26 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:31:26 - Initiating transaction commit -2024-08-07 17:31:26 - Committing JPA transaction on EntityManager [SessionImpl(1130524601<open>)] -2024-08-07 17:31:26 - committing -2024-08-07 17:31:26 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1561004087 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:31:26 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:31:26 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:31:26 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:31:26 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:31:26 - Completed 200 OK -2024-08-07 17:31:27 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:31:27 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:31:29 - OPTIONS "/api/events/a187672d-f634-44b7-8944-8daaaa449553/member-actions", parameters={} -2024-08-07 17:31:29 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:31:29 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:31:29 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:31:29 - Completed 200 OK -2024-08-07 17:31:29 - POST "/api/events/a187672d-f634-44b7-8944-8daaaa449553/member-actions", parameters={} -2024-08-07 17:31:29 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:31:29 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 17:31:29 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:31:29 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 17:31:29 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 17:31:29 - Completed 401 UNAUTHORIZED -2024-08-07 17:31:57 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:31:57 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:31:59 - GET "/api/events/a373a103-38d9-4fc4-8cba-731d078d8c8e/actions", parameters={} -2024-08-07 17:31:59 - GET "/api/events/a373a103-38d9-4fc4-8cba-731d078d8c8e", parameters={} -2024-08-07 17:31:59 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:31:59 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:31:59 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:31:59 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:31:59 - Found thread-bound EntityManager [SessionImpl(2098975496<open>)] for JPA transaction -2024-08-07 17:31:59 - Found thread-bound EntityManager [SessionImpl(319760950<open>)] for JPA transaction -2024-08-07 17:31:59 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:31:59 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:31:59 - Setting JDBC Connection [HikariProxyConnection@1509440021 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:31:59 - Setting JDBC Connection [HikariProxyConnection@1187609725 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:31:59 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:31:59 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:31:59 - begin -2024-08-07 17:31:59 - begin -2024-08-07 17:31:59 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@77a5701d] -2024-08-07 17:31:59 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@4c2ccad6] -2024-08-07 17:31:59 - Created new SQL alias : e1_0 -2024-08-07 17:31:59 - Created new SQL alias : e1_0 -2024-08-07 17:31:59 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744979008806625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:31:59 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744979008806625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:31:59 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@37786265 -2024-08-07 17:31:59 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@3e143b1e -2024-08-07 17:31:59 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744979008806625).token) -2024-08-07 17:31:59 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744979008806625).token) -2024-08-07 17:31:59 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744979008806625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744979008806625).token] - -2024-08-07 17:31:59 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744979008806625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744979008806625).token] - -2024-08-07 17:31:59 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744979008806625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:31:59 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744979008806625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:31:59 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:31:59 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:31:59 - Initializer list: - server.haengdong.domain.event.Event(744979008806625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744979008806625))@419804194 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:31:59 - Initializer list: - server.haengdong.domain.event.Event(744979008806625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744979008806625))@977503158 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:31:59 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:31:59 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:31:59 - Extracted JDBC value [0] - [3] -2024-08-07 17:31:59 - Extracted JDBC value [0] - [3] -2024-08-07 17:31:59 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744979008806625)): 3 -2024-08-07 17:31:59 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744979008806625)): 3 -2024-08-07 17:31:59 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744979008806625)#3] : 1883142492 -2024-08-07 17:31:59 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744979008806625)#3] : 359500860 -2024-08-07 17:31:59 - Extracted JDBC value [1] - [sadfa] -2024-08-07 17:31:59 - Extracted JDBC value [1] - [sadfa] -2024-08-07 17:31:59 - Extracted JDBC value [2] - [1234] -2024-08-07 17:31:59 - Extracted JDBC value [2] - [1234] -2024-08-07 17:31:59 - Extracted JDBC value [3] - [a373a103-38d9-4fc4-8cba-731d078d8c8e] -2024-08-07 17:31:59 - Extracted JDBC value [3] - [a373a103-38d9-4fc4-8cba-731d078d8c8e] -2024-08-07 17:31:59 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744979008806625)#3 -2024-08-07 17:31:59 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744979008806625)#3 -2024-08-07 17:31:59 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@3395f314 -2024-08-07 17:31:59 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@442e77dd -2024-08-07 17:31:59 - Initiating transaction commit -2024-08-07 17:31:59 - Committing JPA transaction on EntityManager [SessionImpl(319760950<open>)] -2024-08-07 17:31:59 - committing -2024-08-07 17:31:59 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1509440021 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:31:59 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:31:59 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:31:59 - Created new SQL alias : ba1_0 -2024-08-07 17:31:59 - Writing [EventDetailResponse[eventName=sadfa]] -2024-08-07 17:31:59 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(744978854757500))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:31:59 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@24531fea] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:31:59 - Created new SQL alias : a1_0 -2024-08-07 17:31:59 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@38c25527] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:31:59 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@24531fea] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:31:59 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@4bcbdb61 -2024-08-07 17:31:59 - Created new SQL alias : e1_0 -2024-08-07 17:31:59 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@12bdb786 -2024-08-07 17:31:59 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166).event(744978854784083) : event) -2024-08-07 17:31:59 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:31:59 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(744978854757500)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(744978854757500).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(744978854757500).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(744978854757500).title] - -2024-08-07 17:31:59 - Completed 200 OK -2024-08-07 17:31:59 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(744978854757500)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166).event(744978854784083)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:31:59 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:31:59 - Initializer list: - server.haengdong.domain.action.BillAction(744978854757500).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(744978854757500).action.event)@701816515 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@369750755) - server.haengdong.domain.action.BillAction(744978854757500).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(744978854757500).action)@356792412 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@1220368415) - server.haengdong.domain.action.BillAction(744978854757500) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(744978854757500))@1057307838 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - -2024-08-07 17:31:59 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:31:59 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:31:59 - Initializer list: - server.haengdong.domain.action.MemberAction(m).action(744978992560833) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744978992560833))@1705840378 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@393604326) - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@1403256732 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(744978992560833).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744978992560833).event)@1130111985 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@369750755) - -2024-08-07 17:31:59 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:31:59 - Initiating transaction commit -2024-08-07 17:31:59 - Committing JPA transaction on EntityManager [SessionImpl(2098975496<open>)] -2024-08-07 17:31:59 - committing -2024-08-07 17:31:59 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1187609725 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:31:59 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:31:59 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:31:59 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:31:59 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:31:59 - Completed 200 OK -2024-08-07 17:32:02 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:32:02 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:32:02 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:32:02 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:32:08 - POST "/api/events", parameters={} -2024-08-07 17:32:08 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:32:08 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:32:08 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=asdfas, password=1234]] -2024-08-07 17:32:08 - Found thread-bound EntityManager [SessionImpl(274312018<open>)] for JPA transaction -2024-08-07 17:32:08 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 17:32:08 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:32:08 - begin -2024-08-07 17:32:08 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@774d7b0e] -2024-08-07 17:32:08 - Found thread-bound EntityManager [SessionImpl(274312018<open>)] for JPA transaction -2024-08-07 17:32:08 - Participating in existing transaction -2024-08-07 17:32:08 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 17:32:08 - Executing identity-insert immediately -2024-08-07 17:32:08 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 17:32:08 - Initializer list is empty -2024-08-07 17:32:08 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@5d90472a -2024-08-07 17:32:08 - Extracted JDBC value [0] - [5] -2024-08-07 17:32:08 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@7a619ccb -2024-08-07 17:32:08 - Initiating transaction commit -2024-08-07 17:32:08 - Committing JPA transaction on EntityManager [SessionImpl(274312018<open>)] -2024-08-07 17:32:08 - committing -2024-08-07 17:32:08 - Processing flush-time cascades -2024-08-07 17:32:08 - Dirty checking collections -2024-08-07 17:32:08 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 17:32:08 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 17:32:08 - Listing entities: -2024-08-07 17:32:08 - server.haengdong.domain.event.Event{password=1234, name=asdfas, id=5, token=d5fbbe58-da02-49af-9ebe-7f74a583ad2f} -2024-08-07 17:32:08 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:32:08 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:32:08 - Writing [EventResponse[eventId=d5fbbe58-da02-49af-9ebe-7f74a583ad2f]] -2024-08-07 17:32:08 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:32:08 - Completed 200 OK -2024-08-07 17:32:09 - OPTIONS "/api/events/d5fbbe58-da02-49af-9ebe-7f74a583ad2f", parameters={} -2024-08-07 17:32:09 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:32:09 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:32:09 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:32:09 - Completed 200 OK -2024-08-07 17:32:09 - OPTIONS "/api/events/d5fbbe58-da02-49af-9ebe-7f74a583ad2f/actions", parameters={} -2024-08-07 17:32:09 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:32:09 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:32:09 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:32:09 - Completed 200 OK -2024-08-07 17:32:09 - GET "/api/events/d5fbbe58-da02-49af-9ebe-7f74a583ad2f", parameters={} -2024-08-07 17:32:09 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:32:09 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:32:09 - Found thread-bound EntityManager [SessionImpl(1804450392<open>)] for JPA transaction -2024-08-07 17:32:09 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:32:09 - Setting JDBC Connection [HikariProxyConnection@60239352 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:32:09 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:32:09 - begin -2024-08-07 17:32:09 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@16cd219c] -2024-08-07 17:32:09 - Created new SQL alias : e1_0 -2024-08-07 17:32:09 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744979008806625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:32:09 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@17b0a155 -2024-08-07 17:32:09 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744979008806625).token) -2024-08-07 17:32:09 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744979008806625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744979008806625).token] - -2024-08-07 17:32:09 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744979008806625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:32:09 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:32:09 - Initializer list: - server.haengdong.domain.event.Event(744979008806625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744979008806625))@1419089041 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:32:09 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:32:09 - Extracted JDBC value [0] - [5] -2024-08-07 17:32:09 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744979008806625)): 5 -2024-08-07 17:32:09 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744979008806625)#5] : 1819019792 -2024-08-07 17:32:09 - Extracted JDBC value [1] - [asdfas] -2024-08-07 17:32:09 - Extracted JDBC value [2] - [1234] -2024-08-07 17:32:09 - Extracted JDBC value [3] - [d5fbbe58-da02-49af-9ebe-7f74a583ad2f] -2024-08-07 17:32:09 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744979008806625)#5 -2024-08-07 17:32:09 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@14a53a10 -2024-08-07 17:32:09 - Initiating transaction commit -2024-08-07 17:32:09 - Committing JPA transaction on EntityManager [SessionImpl(1804450392<open>)] -2024-08-07 17:32:09 - committing -2024-08-07 17:32:09 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@60239352 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:32:09 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:32:09 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:32:09 - GET "/api/events/d5fbbe58-da02-49af-9ebe-7f74a583ad2f/actions", parameters={} -2024-08-07 17:32:09 - Writing [EventDetailResponse[eventName=asdfas]] -2024-08-07 17:32:09 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:32:09 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:32:09 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:32:09 - Completed 200 OK -2024-08-07 17:32:09 - Found thread-bound EntityManager [SessionImpl(22227542<open>)] for JPA transaction -2024-08-07 17:32:09 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:32:09 - Setting JDBC Connection [HikariProxyConnection@144546137 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:32:09 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:32:09 - begin -2024-08-07 17:32:09 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@591cb38e] -2024-08-07 17:32:09 - Created new SQL alias : e1_0 -2024-08-07 17:32:09 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(744979008806625))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:32:09 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@50c21c58 -2024-08-07 17:32:09 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(744979008806625).token) -2024-08-07 17:32:09 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(744979008806625)] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).name] - | +-BasicFetch [server.haengdong.domain.event.Event(744979008806625).password] - | \-BasicFetch [server.haengdong.domain.event.Event(744979008806625).token] - -2024-08-07 17:32:09 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(744979008806625)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:32:09 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:32:09 - Initializer list: - server.haengdong.domain.event.Event(744979008806625) -> EntityResultInitializer(server.haengdong.domain.event.Event(744979008806625))@282383455 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:32:09 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:32:09 - Extracted JDBC value [0] - [5] -2024-08-07 17:32:09 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(744979008806625)): 5 -2024-08-07 17:32:09 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(744979008806625)#5] : 746812481 -2024-08-07 17:32:09 - Extracted JDBC value [1] - [asdfas] -2024-08-07 17:32:09 - Extracted JDBC value [2] - [1234] -2024-08-07 17:32:09 - Extracted JDBC value [3] - [d5fbbe58-da02-49af-9ebe-7f74a583ad2f] -2024-08-07 17:32:09 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(744979008806625)#5 -2024-08-07 17:32:09 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@1ac33ba2 -2024-08-07 17:32:09 - Created new SQL alias : ba1_0 -2024-08-07 17:32:09 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(744978854757500))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:32:09 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@277f22af] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:32:09 - Created new SQL alias : a1_0 -2024-08-07 17:32:09 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@24e213c9] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:32:09 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@277f22af] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:32:09 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@4bcbdb61 -2024-08-07 17:32:09 - Created new SQL alias : e1_0 -2024-08-07 17:32:09 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@6bd07809 -2024-08-07 17:32:09 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166).event(744978854784083) : event) -2024-08-07 17:32:09 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(744978854757500)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(744978854757500).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(744978854757500).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(744978854757500).title] - -2024-08-07 17:32:09 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(744978854757500)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(744978854757500).action(744978854777166).event(744978854784083)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:32:09 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:32:09 - Initializer list: - server.haengdong.domain.action.BillAction(744978854757500).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(744978854757500).action.event)@398765669 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@369750755) - server.haengdong.domain.action.BillAction(744978854757500).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(744978854757500).action)@1232116840 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@1220368415) - server.haengdong.domain.action.BillAction(744978854757500) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(744978854757500))@2109252308 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - -2024-08-07 17:32:09 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:32:09 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:32:09 - Initializer list: - server.haengdong.domain.action.MemberAction(m).action(744978992560833) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744978992560833))@526332751 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@393604326) - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@659135602 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(744978992560833).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(744978992560833).event)@1700126168 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@369750755) - -2024-08-07 17:32:09 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:32:09 - Initiating transaction commit -2024-08-07 17:32:09 - Committing JPA transaction on EntityManager [SessionImpl(22227542<open>)] -2024-08-07 17:32:09 - committing -2024-08-07 17:32:09 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@144546137 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:32:09 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:32:09 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:32:09 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:32:09 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:32:09 - Completed 200 OK -2024-08-07 17:32:12 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:32:12 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:32:12 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:32:12 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:32:27 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:32:27 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:32:28 - OPTIONS "/api/events/d5fbbe58-da02-49af-9ebe-7f74a583ad2f/member-actions", parameters={} -2024-08-07 17:32:28 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:32:28 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:32:28 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:32:28 - Completed 200 OK -2024-08-07 17:32:28 - POST "/api/events/d5fbbe58-da02-49af-9ebe-7f74a583ad2f/member-actions", parameters={} -2024-08-07 17:32:28 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:32:28 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 17:32:28 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:32:28 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 17:32:28 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 17:32:28 - Completed 401 UNAUTHORIZED -2024-08-07 17:32:32 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:32:32 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:32:57 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:32:57 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:33:27 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:33:27 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:33:45 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 17:33:45 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b, started on Wed Aug 07 17:23:26 KST 2024 -2024-08-07 17:33:45 - Stopping beans in phase 2147483647 -2024-08-07 17:33:45 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 17:33:45 - Stopping beans in phase 2147482623 -2024-08-07 17:33:45 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 17:33:45 - Stopping beans in phase 2147481599 -2024-08-07 17:33:45 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 17:33:45 - Stopping beans in phase -2147483647 -2024-08-07 17:33:45 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 17:33:45 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 17:33:45 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 17:33:45 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 17:33:45 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 17:33:45 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 17:33:45 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 17:33:45 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 17:33:45 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 17:33:45 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 17:33:45 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 17:33:45 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 17:33:45 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 17:33:45 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 17:33:45 - Unregistering JMX-exposed beans on shutdown -2024-08-07 17:33:45 - Unregistering JMX-exposed beans -2024-08-07 17:33:45 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 17:33:45 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 17:33:45 - HHH000031: Closing -2024-08-07 17:33:45 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@500f5999] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@9cdf13e] -2024-08-07 17:33:45 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 17:33:45 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 17:33:45 - HikariPool-1 - Shutdown initiated... -2024-08-07 17:33:45 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:33:45 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:33:45 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:33:45 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:33:45 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:33:45 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:33:45 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:33:45 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:33:45 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:33:45 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:33:45 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:33:45 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 17:33:45 - HikariPool-1 - Shutdown completed. -2024-08-07 17:33:45 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 17:33:46 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 17:33:46 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 17:33:46 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:33:46 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:33:46 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:33:46 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:33:46 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:33:46 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:33:46 - Loaded expression factory via original TCCL -2024-08-07 17:33:46 - Starting HaengdongApplication using Java 17.0.12 with PID 64192 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 17:33:46 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 17:33:46 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 17:33:46 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 17:33:46 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b -2024-08-07 17:33:46 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 17:33:46 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:33:46 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:33:46 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:33:46 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:33:46 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:33:46 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:33:46 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 17:33:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 17:33:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 17:33:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 17:33:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 17:33:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 17:33:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 17:33:46 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 17:33:46 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 17:33:46 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 17:33:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 17:33:46 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 17:33:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 17:33:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 17:33:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 17:33:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 17:33:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 17:33:46 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 17:33:47 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 17:33:47 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 17:33:47 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 17:33:47 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 17:33:47 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 17:33:47 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 17:33:47 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 17:33:47 - Finished Spring Data repository scanning in 16 ms. Found 4 JPA repository interfaces. -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 17:33:47 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 17:33:47 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 17:33:47 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 17:33:47 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 17:33:47 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 17:33:47 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 17:33:47 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 17:33:47 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 17:33:47 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@4fa86cb8] -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 17:33:47 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 17:33:47 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 17:33:47 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 17:33:47 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 17:33:47 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 17:33:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 17:33:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 17:33:47 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 17:33:47 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:33:47 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:33:47 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:33:47 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 17:33:47 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 17:33:47 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 17:33:47 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 17:33:47 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 17:33:47 - Tomcat initialized with port 8080 (http) -2024-08-07 17:33:47 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@79cb8ffa] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@79cb8ffa] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.mapper.MapperListener@62ea8931] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.mapper.MapperListener@62ea8931] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 17:33:47 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 17:33:47 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@79cb8ffa] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@79cb8ffa] to [STARTING] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@79cb8ffa] to [STARTED] -2024-08-07 17:33:47 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 17:33:47 - Starting service [Tomcat] -2024-08-07 17:33:47 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 17:33:47 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 17:33:47 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.webresources.StandardRoot@3d1c933] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.webresources.StandardRoot@3d1c933] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.webresources.StandardRoot@3d1c933] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.webresources.DirResourceSet@77aea] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.webresources.DirResourceSet@77aea] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.webresources.DirResourceSet@77aea] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.webresources.DirResourceSet@77aea] to [STARTING] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.webresources.DirResourceSet@77aea] to [STARTED] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.webresources.StandardRoot@3d1c933] to [STARTING] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.webresources.StandardRoot@3d1c933] to [STARTED] -2024-08-07 17:33:47 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:33:47 - Starting this Loader -2024-08-07 17:33:47 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:33:47 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:33:47 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 17:33:47 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@514377fc] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@514377fc] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@514377fc] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@514377fc] to [STARTING] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@514377fc] to [STARTED] -2024-08-07 17:33:47 - Initializing Spring embedded WebApplicationContext -2024-08-07 17:33:47 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 17:33:47 - Root WebApplicationContext: initialization completed in 613 ms -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 17:33:47 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 17:33:47 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 17:33:47 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 17:33:47 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:33:47 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 17:33:47 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 17:33:47 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 17:33:47 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 17:33:47 - HikariPool-1 - configuration: -2024-08-07 17:33:47 - allowPoolSuspension.............false -2024-08-07 17:33:47 - autoCommit......................true -2024-08-07 17:33:47 - catalog.........................none -2024-08-07 17:33:47 - connectionInitSql...............none -2024-08-07 17:33:47 - connectionTestQuery.............none -2024-08-07 17:33:47 - connectionTimeout...............30000 -2024-08-07 17:33:47 - dataSource......................none -2024-08-07 17:33:47 - dataSourceClassName.............none -2024-08-07 17:33:47 - dataSourceJNDI..................none -2024-08-07 17:33:47 - dataSourceProperties............{password=<masked>} -2024-08-07 17:33:47 - driverClassName................."org.h2.Driver" -2024-08-07 17:33:47 - exceptionOverrideClassName......none -2024-08-07 17:33:47 - healthCheckProperties...........{} -2024-08-07 17:33:47 - healthCheckRegistry.............none -2024-08-07 17:33:47 - idleTimeout.....................600000 -2024-08-07 17:33:47 - initializationFailTimeout.......1 -2024-08-07 17:33:47 - isolateInternalQueries..........false -2024-08-07 17:33:47 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 17:33:47 - keepaliveTime...................0 -2024-08-07 17:33:47 - leakDetectionThreshold..........0 -2024-08-07 17:33:47 - maxLifetime.....................1800000 -2024-08-07 17:33:47 - maximumPoolSize.................10 -2024-08-07 17:33:47 - metricRegistry..................none -2024-08-07 17:33:47 - metricsTrackerFactory...........none -2024-08-07 17:33:47 - minimumIdle.....................10 -2024-08-07 17:33:47 - password........................<masked> -2024-08-07 17:33:47 - poolName........................"HikariPool-1" -2024-08-07 17:33:47 - readOnly........................false -2024-08-07 17:33:47 - registerMbeans..................false -2024-08-07 17:33:47 - scheduledExecutor...............none -2024-08-07 17:33:47 - schema..........................none -2024-08-07 17:33:47 - threadFactory...................internal -2024-08-07 17:33:47 - transactionIsolation............default -2024-08-07 17:33:47 - username........................"sa" -2024-08-07 17:33:47 - validationTimeout...............5000 -2024-08-07 17:33:47 - HikariPool-1 - Starting... -2024-08-07 17:33:47 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 17:33:47 - HikariPool-1 - Start completed. -2024-08-07 17:33:47 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 17:33:47 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 17:33:47 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:33:47 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 17:33:47 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:33:47 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:49463] -2024-08-07 17:33:47 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 17:33:47 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:47 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:47 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 84 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:47 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:47 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:47 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@4540c7] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@4540c7] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@4540c7] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@4540c7] to [STARTING] -2024-08-07 17:33:47 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@4540c7] to [STARTED] -2024-08-07 17:33:47 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:33:47 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:33:47 - Filter 'requestContextFilter' configured for use -2024-08-07 17:33:47 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 17:33:47 - Filter 'characterEncodingFilter' configured for use -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:47 - Filter 'formContentFilter' configured for use -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 17:33:47 - [javax.management.remote.rmi.RMIConnectionImpl@7545bfdb: connectionId=rmi://127.0.0.1 1] closing. -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 17:33:47 - [javax.management.remote.rmi.RMIConnectionImpl@7545bfdb: connectionId=rmi://127.0.0.1 1] closed. -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:33:47 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:33:47 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:33:47 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 17:33:47 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.mapper.MapperListener@62ea8931] to [STARTING_PREP] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.mapper.MapperListener@62ea8931] to [STARTING] -2024-08-07 17:33:47 - Registered host [localhost] -2024-08-07 17:33:47 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 17:33:47 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 17:33:47 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 17:33:47 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 17:33:47 - Setting state for [org.apache.catalina.mapper.MapperListener@62ea8931] to [STARTED] -2024-08-07 17:33:47 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 17:33:47 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 17:33:47 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 17:33:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:33:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:33:47 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 17:33:47 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 17:33:47 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 17:33:47 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:33:47 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:33:47 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 17:33:47 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 17:33:47 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 17:33:47 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 17:33:47 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 17:33:47 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 17:33:47 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 17:33:47 - HHH000206: 'hibernate.properties' not found -2024-08-07 17:33:47 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 17:33:47 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 17:33:47 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 17:33:47 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 17:33:47 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 17:33:47 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 17:33:47 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 17:33:47 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 17:33:47 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 17:33:47 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 17:33:47 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 17:33:47 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 17:33:47 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 17:33:47 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 17:33:47 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 17:33:47 - HHH000026: Second-level cache disabled -2024-08-07 17:33:47 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 17:33:47 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 17:33:47 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 17:33:47 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 17:33:47 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 17:33:47 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 17:33:47 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 17:33:47 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 17:33:47 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 17:33:47 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 17:33:47 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 17:33:47 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 17:33:47 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 17:33:47 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 17:33:47 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 17:33:47 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 17:33:47 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 17:33:47 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 17:33:47 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 17:33:47 - Adding type registration image -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 17:33:47 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 17:33:47 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 17:33:47 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 17:33:47 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 17:33:47 - Adding type registration short -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 17:33:47 - Adding type registration short -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 17:33:47 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 17:33:47 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 17:33:47 - Adding type registration int -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 17:33:47 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 17:33:47 - Adding type registration long -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 17:33:47 - Adding type registration long -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 17:33:47 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 17:33:47 - Adding type registration float -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 17:33:47 - Adding type registration float -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 17:33:47 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 17:33:47 - Adding type registration double -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 17:33:47 - Adding type registration double -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 17:33:47 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 17:33:47 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 17:33:47 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 17:33:47 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 17:33:47 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 17:33:47 - Adding type registration character -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 17:33:47 - Adding type registration char -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 17:33:47 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 17:33:47 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 17:33:47 - Adding type registration string -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 17:33:47 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 17:33:47 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 17:33:47 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 17:33:47 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 17:33:47 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 17:33:47 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 17:33:47 - Adding type registration text -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 17:33:47 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 17:33:47 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 17:33:47 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 17:33:47 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 17:33:47 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 17:33:47 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 17:33:47 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 17:33:47 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 17:33:47 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 17:33:47 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 17:33:47 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 17:33:47 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 17:33:47 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 17:33:47 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 17:33:47 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 17:33:47 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 17:33:47 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 17:33:47 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 17:33:47 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 17:33:47 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 17:33:47 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 17:33:47 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 17:33:47 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 17:33:47 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 17:33:47 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 17:33:47 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 17:33:47 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 17:33:47 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 17:33:47 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 17:33:47 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 17:33:47 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 17:33:47 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 17:33:47 - Adding type registration date -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 17:33:47 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 17:33:47 - Adding type registration time -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 17:33:47 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 17:33:47 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 17:33:47 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 17:33:47 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 17:33:47 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 17:33:47 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 17:33:47 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 17:33:47 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 17:33:47 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 17:33:47 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 17:33:47 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 17:33:47 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 17:33:47 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 17:33:47 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 17:33:47 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 17:33:47 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 17:33:47 - Adding type registration class -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 17:33:47 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 17:33:47 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 17:33:47 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 17:33:47 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 17:33:47 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 17:33:47 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 17:33:47 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-07 17:33:47 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-07 17:33:47 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 17:33:47 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 17:33:47 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-07 17:33:47 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-07 17:33:47 - Adding type registration url -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-07 17:33:47 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-07 17:33:47 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-07 17:33:47 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@2c5708e7 -2024-08-07 17:33:47 - Adding type registration object -> org.hibernate.type.JavaObjectType@1b8ee69d -2024-08-07 17:33:47 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@1b8ee69d -2024-08-07 17:33:47 - Adding type registration null -> org.hibernate.type.NullType@2b1d1a5 -2024-08-07 17:33:47 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@41e7a544 -2024-08-07 17:33:47 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@3b66ac74 -2024-08-07 17:33:47 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@573870cb -2024-08-07 17:33:47 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@5b88af70 -2024-08-07 17:33:47 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@2739ecc0 -2024-08-07 17:33:47 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@2932e15f -2024-08-07 17:33:47 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@3d98729a -2024-08-07 17:33:47 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@2375a976 -2024-08-07 17:33:47 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@103e7c7c] into BootstrapContext; was [null] -2024-08-07 17:33:47 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@103e7c7c) [was null] -2024-08-07 17:33:47 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@3355b8ff] into BootstrapContext; was [null] -2024-08-07 17:33:47 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@32646ecf] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@68f9e807] -2024-08-07 17:33:47 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 17:33:47 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 17:33:47 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-07 17:33:47 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 17:33:47 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 17:33:47 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@103e7c7c] -2024-08-07 17:33:47 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@103e7c7c] -2024-08-07 17:33:47 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 17:33:47 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 17:33:47 - JDBC version : 4.2 -2024-08-07 17:33:47 - HikariPool-1 - After adding stats (total=5, active=1, idle=4, waiting=0) -2024-08-07 17:33:47 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 17:33:47 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 17:33:47 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 17:33:47 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 17:33:47 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 17:33:47 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 17:33:47 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 17:33:47 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 17:33:47 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 17:33:47 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 17:33:47 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 17:33:47 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 17:33:47 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@7acb5200] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@3d50a3d9] -2024-08-07 17:33:47 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 17:33:47 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 17:33:47 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 17:33:47 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 17:33:47 - Import with entity name Action -2024-08-07 17:33:47 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 17:33:47 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:33:47 - Binding column: AnnotatedColumn() -2024-08-07 17:33:47 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:33:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:33:47 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:33:47 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 17:33:47 - building BasicValue for id -2024-08-07 17:33:47 - Skipping column re-registration: action.id -2024-08-07 17:33:47 - Building property id -2024-08-07 17:33:47 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:33:47 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:33:47 - Binding column: AnnotatedColumn() -2024-08-07 17:33:47 - Building property event -2024-08-07 17:33:47 - Binding column: AnnotatedColumn() -2024-08-07 17:33:47 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 17:33:47 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 17:33:47 - building BasicValue for sequence -2024-08-07 17:33:47 - Skipping column re-registration: action.sequence -2024-08-07 17:33:47 - Building property sequence -2024-08-07 17:33:47 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:33:47 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 17:33:47 - Import with entity name BillAction -2024-08-07 17:33:47 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 17:33:47 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:33:47 - Binding column: AnnotatedColumn() -2024-08-07 17:33:47 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:33:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:33:47 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:33:47 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 17:33:47 - building BasicValue for id -2024-08-07 17:33:47 - Skipping column re-registration: bill_action.id -2024-08-07 17:33:47 - Building property id -2024-08-07 17:33:47 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:33:47 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:33:47 - Binding column: AnnotatedColumn() -2024-08-07 17:33:47 - Building property action -2024-08-07 17:33:47 - Binding column: AnnotatedColumn() -2024-08-07 17:33:47 - MetadataSourceProcessor property price with lazy=false -2024-08-07 17:33:47 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 17:33:47 - building BasicValue for price -2024-08-07 17:33:47 - Skipping column re-registration: bill_action.price -2024-08-07 17:33:47 - Building property price -2024-08-07 17:33:47 - Binding column: AnnotatedColumn() -2024-08-07 17:33:47 - MetadataSourceProcessor property title with lazy=false -2024-08-07 17:33:47 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 17:33:47 - building BasicValue for title -2024-08-07 17:33:47 - Skipping column re-registration: bill_action.title -2024-08-07 17:33:47 - Building property title -2024-08-07 17:33:47 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:33:47 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 17:33:47 - Import with entity name MemberAction -2024-08-07 17:33:47 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 17:33:47 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:33:47 - Binding column: AnnotatedColumn() -2024-08-07 17:33:47 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:33:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:33:47 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:33:47 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 17:33:47 - building BasicValue for id -2024-08-07 17:33:47 - Skipping column re-registration: member_action.id -2024-08-07 17:33:47 - Building property id -2024-08-07 17:33:47 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:33:47 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:33:47 - Binding column: AnnotatedColumn() -2024-08-07 17:33:47 - Building property action -2024-08-07 17:33:47 - Binding column: AnnotatedColumn() -2024-08-07 17:33:47 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 17:33:47 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 17:33:47 - building BasicValue for memberGroupId -2024-08-07 17:33:47 - Skipping column re-registration: member_action.member_group_id -2024-08-07 17:33:47 - Building property memberGroupId -2024-08-07 17:33:47 - Binding column: AnnotatedColumn() -2024-08-07 17:33:47 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 17:33:47 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 17:33:47 - building BasicValue for memberName -2024-08-07 17:33:47 - Skipping column re-registration: member_action.member_name -2024-08-07 17:33:47 - Building property memberName -2024-08-07 17:33:47 - Binding column: AnnotatedColumn() -2024-08-07 17:33:47 - MetadataSourceProcessor property status with lazy=false -2024-08-07 17:33:47 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 17:33:47 - building BasicValue for status -2024-08-07 17:33:47 - Skipping column re-registration: member_action.status -2024-08-07 17:33:47 - Building property status -2024-08-07 17:33:47 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:33:47 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 17:33:47 - Import with entity name Event -2024-08-07 17:33:47 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 17:33:47 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:33:47 - Binding column: AnnotatedColumn() -2024-08-07 17:33:47 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:33:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:33:47 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:33:47 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 17:33:47 - building BasicValue for id -2024-08-07 17:33:47 - Skipping column re-registration: event.id -2024-08-07 17:33:47 - Building property id -2024-08-07 17:33:47 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:33:47 - Binding column: AnnotatedColumn() -2024-08-07 17:33:47 - MetadataSourceProcessor property name with lazy=false -2024-08-07 17:33:47 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 17:33:47 - building BasicValue for name -2024-08-07 17:33:47 - Skipping column re-registration: event.name -2024-08-07 17:33:47 - Building property name -2024-08-07 17:33:47 - Binding column: AnnotatedColumn() -2024-08-07 17:33:47 - MetadataSourceProcessor property password with lazy=false -2024-08-07 17:33:47 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 17:33:47 - building BasicValue for password -2024-08-07 17:33:47 - Skipping column re-registration: event.password -2024-08-07 17:33:47 - Building property password -2024-08-07 17:33:47 - Binding column: AnnotatedColumn() -2024-08-07 17:33:47 - MetadataSourceProcessor property token with lazy=false -2024-08-07 17:33:47 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 17:33:47 - building BasicValue for token -2024-08-07 17:33:47 - Skipping column re-registration: event.token -2024-08-07 17:33:47 - Building property token -2024-08-07 17:33:47 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 17:33:47 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 17:33:47 - Import with entity name EventStep -2024-08-07 17:33:47 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 17:33:47 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:33:47 - Binding column: AnnotatedColumn() -2024-08-07 17:33:47 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:33:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:33:47 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:33:47 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 17:33:47 - building BasicValue for id -2024-08-07 17:33:47 - Skipping column re-registration: event_step.id -2024-08-07 17:33:47 - Building property id -2024-08-07 17:33:47 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:33:47 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:33:47 - Binding column: AnnotatedColumn() -2024-08-07 17:33:47 - Building property event -2024-08-07 17:33:47 - Binding column: AnnotatedColumn() -2024-08-07 17:33:47 - MetadataSourceProcessor property name with lazy=false -2024-08-07 17:33:47 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 17:33:47 - building BasicValue for name -2024-08-07 17:33:47 - Skipping column re-registration: event_step.name -2024-08-07 17:33:47 - Building property name -2024-08-07 17:33:47 - Binding column: AnnotatedColumn() -2024-08-07 17:33:47 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 17:33:47 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 17:33:47 - building BasicValue for sequence -2024-08-07 17:33:47 - Skipping column re-registration: event_step.sequence -2024-08-07 17:33:47 - Building property sequence -2024-08-07 17:33:47 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 17:33:47 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:33:47 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 17:33:47 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:33:47 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 17:33:47 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 17:33:47 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:33:47 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 17:33:47 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 17:33:47 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 17:33:47 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:33:47 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 17:33:47 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 17:33:47 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 17:33:47 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:33:47 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 17:33:47 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 17:33:47 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 17:33:47 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 17:33:47 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 17:33:47 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 17:33:47 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 17:33:47 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 17:33:47 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 17:33:47 - Building session factory -2024-08-07 17:33:47 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:33:47 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@25b8f9d2, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@2979c6ef, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1296184868596726786, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=64192, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1296184868596726786, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@1af6974c, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 17:33:47 - Session factory constructed with filter configurations : {} -2024-08-07 17:33:47 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:33:47 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:33:47 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:33:47 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:33:47 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:33:47 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:33:47 - Loaded expression factory via original TCCL -2024-08-07 17:33:47 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:33:47 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:33:47 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:33:47 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:33:47 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:33:47 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:33:47 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:33:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:33:47 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 17:33:47 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 17:33:47 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:33:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:33:47 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:33:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:33:47 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:33:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:33:47 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:33:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:33:47 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@49322d04] under count; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@6f7a65e] under every; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@29bf90fc] under any; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@63896cf7] under sinh; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3f838072] under cosh; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@46c9ee28] under tanh; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@31f5ffb9] under pi; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@19b3d3a4] under log; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 17:33:47 - Registering alternate key : length -> character_length -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@517d9cd5] under position; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@34ff08c6] under overlay; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@35451ba6] under trim; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@65d2d3cc] under cast; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5382a35f] under collate; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@4a7c72af] under extract; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@1b53e6fc] under ifnull; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@4add4dff] under pad; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@62c42a3] under str; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@575fe6da] under format; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@ed1d2cf] under timestampadd; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@34d3409d] under timestampdiff; prior registration was null -2024-08-07 17:33:47 - Registering alternate key : dateadd -> timestampadd -2024-08-07 17:33:47 - Registering alternate key : datediff -> timestampdiff -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@515fff35] under current_date; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5eb9bf7d] under current_time; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@64f613da] under current_timestamp; prior registration was null -2024-08-07 17:33:47 - Registering alternate key : current date -> current_date -2024-08-07 17:33:47 - Registering alternate key : current time -> current_time -2024-08-07 17:33:47 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2f64f99f] under local_date; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16c1d11] under local_time; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@123d0816] under local_datetime; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@4601a148] under offset_datetime; prior registration was null -2024-08-07 17:33:47 - Registering alternate key : local date -> local_date -2024-08-07 17:33:47 - Registering alternate key : local time -> local_time -2024-08-07 17:33:47 - Registering alternate key : local datetime -> local_datetime -2024-08-07 17:33:47 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@4e210016] under instant; prior registration was null -2024-08-07 17:33:47 - Registering alternate key : current_instant -> instant -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@58e4aa67] under sql; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@57ed8f95] under count; prior registration was org.hibernate.dialect.function.CountFunction@49322d04 -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@5d01a2eb] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@31f5ffb9 -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6fe337a5] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 17:33:47 - Registering alternate key : day -> day_of_month -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@16c1d11 -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@123d0816 -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@5b643d6e] under trunc; prior registration was null -2024-08-07 17:33:47 - Registering alternate key : truncate -> trunc -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@34f8ce89] under date_trunc; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 17:33:47 - Registering alternate key : chr -> char -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@22ed2886] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@517d9cd5 -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@30ca66c5] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 17:33:47 - Registering alternate key : every -> bool_and -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 17:33:47 - Registering alternate key : any -> bool_or -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@4abfa2ff] under format; prior registration was org.hibernate.dialect.function.FormatFunction@575fe6da -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@125a8ab6] under listagg; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@3fdede3a] under mode; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@41948c13] under percentile_cont; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@3085befb] under percentile_disc; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@533e8807] under rank; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@322eb1a] under dense_rank; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@2b4ba2d9] under percent_rank; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@69f24965] under cume_dist; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@2202c92f] under array; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@440d2d64] under array_list; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@7be6dabb] under array_agg; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@27f31d91] under array_position; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@69926b6e] under array_positions; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@20462820] under array_positions_list; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4c0ab04f] under array_length; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@267b678f] under array_concat; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@630e5010] under array_prepend; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@10b5ff4d] under array_append; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@1018f702] under array_contains; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@5400db7e] under array_contains_nullable; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@31de8099] under array_overlaps; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@40d04cf8] under array_overlaps_nullable; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@12478b4e] under array_get; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@22c4354d] under array_set; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@4c599679] under array_remove; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@1bcf2c64] under array_remove_index; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@b5bddfe] under array_slice; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@5ca3acad] under array_replace; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@b75f3f4] under array_trim; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@48da5106] under array_fill; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@31cddb11] under array_fill_list; prior registration was null -2024-08-07 17:33:47 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@2c51c756] under array_to_string; prior registration was null -2024-08-07 17:33:47 - abs(NUMERIC arg) -2024-08-07 17:33:47 - Double acos(NUMERIC arg) -2024-08-07 17:33:47 - Boolean any(BOOLEAN predicate) -2024-08-07 17:33:47 - array( ... ) -2024-08-07 17:33:47 - array_agg(arg) -2024-08-07 17:33:47 - array_append( ... ) -2024-08-07 17:33:47 - array_concat( ... ) -2024-08-07 17:33:47 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 17:33:47 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 17:33:47 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 17:33:47 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 17:33:47 - array_get(ARRAY array, INTEGER index) -2024-08-07 17:33:47 - Integer array_length(ARRAY array) -2024-08-07 17:33:47 - array_list( ... ) -2024-08-07 17:33:47 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 17:33:47 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 17:33:47 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 17:33:47 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 17:33:47 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 17:33:47 - array_prepend( ... ) -2024-08-07 17:33:47 - array_remove( ... ) -2024-08-07 17:33:47 - array_remove_index( ... ) -2024-08-07 17:33:47 - array_replace( ... ) -2024-08-07 17:33:47 - array_set( ... ) -2024-08-07 17:33:47 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 17:33:47 - String array_to_string( ... ) -2024-08-07 17:33:47 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 17:33:47 - Integer ascii(STRING arg) -2024-08-07 17:33:47 - Double asin(NUMERIC arg) -2024-08-07 17:33:47 - Double atan(NUMERIC arg) -2024-08-07 17:33:47 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 17:33:47 - avg(NUMERIC arg) -2024-08-07 17:33:47 - bit_and(arg) -2024-08-07 17:33:47 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 17:33:47 - bit_or(arg) -2024-08-07 17:33:47 - bitand(arg0, arg1) -2024-08-07 17:33:47 - bitnot(arg) -2024-08-07 17:33:47 - bitor(arg0, arg1) -2024-08-07 17:33:47 - bitxor(arg0, arg1) -2024-08-07 17:33:47 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 17:33:47 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 17:33:47 - cast(arg as Type) -2024-08-07 17:33:47 - ceiling(NUMERIC arg) -2024-08-07 17:33:47 - Character char(INTEGER arg) -2024-08-07 17:33:47 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 17:33:47 - Character chr(INTEGER arg) -2024-08-07 17:33:47 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 17:33:47 - String collate(STRING string as COLLATION collation) -2024-08-07 17:33:47 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 17:33:47 - Double cos(NUMERIC arg) -2024-08-07 17:33:47 - Double cosh(NUMERIC arg) -2024-08-07 17:33:47 - Double cot(NUMERIC arg) -2024-08-07 17:33:47 - Long count([distinct ]{arg|*}) -2024-08-07 17:33:47 - Double cume_dist([arg0[, ...]]) -2024-08-07 17:33:47 - Date curdate() -2024-08-07 17:33:47 - Date current date -2024-08-07 17:33:47 - Time current time -2024-08-07 17:33:47 - Timestamp current timestamp -2024-08-07 17:33:47 - Date current_date -2024-08-07 17:33:47 - Instant current_instant -2024-08-07 17:33:47 - Time current_time -2024-08-07 17:33:47 - Timestamp current_timestamp -2024-08-07 17:33:47 - Time curtime() -2024-08-07 17:33:47 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 17:33:47 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 17:33:47 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 17:33:47 - Integer day(DATE arg) -2024-08-07 17:33:47 - Integer day_of_month(DATE arg) -2024-08-07 17:33:47 - Integer day_of_week(DATE arg) -2024-08-07 17:33:47 - Integer day_of_year(DATE arg) -2024-08-07 17:33:47 - String dayname(DATE arg) -2024-08-07 17:33:47 - Double degrees(NUMERIC arg) -2024-08-07 17:33:47 - Long dense_rank([arg0[, ...]]) -2024-08-07 17:33:47 - Boolean every(BOOLEAN predicate) -2024-08-07 17:33:47 - Double exp(NUMERIC arg) -2024-08-07 17:33:47 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 17:33:47 - first_valueANY value -2024-08-07 17:33:47 - floor(NUMERIC arg) -2024-08-07 17:33:47 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 17:33:47 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 17:33:47 - Integer hour(TIME arg) -2024-08-07 17:33:47 - ifnull(arg0, arg1) -2024-08-07 17:33:47 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 17:33:47 - Instant instant -2024-08-07 17:33:47 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 17:33:47 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 17:33:47 - last_valueANY value -2024-08-07 17:33:47 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 17:33:47 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 17:33:47 - String left(STRING string, INTEGER length) -2024-08-07 17:33:47 - Integer length(STRING_OR_CLOB arg) -2024-08-07 17:33:47 - String listagg(STRING arg0, STRING arg1) -2024-08-07 17:33:47 - Double ln(NUMERIC arg) -2024-08-07 17:33:47 - LocalDate local date -2024-08-07 17:33:47 - LocalDateTime local datetime -2024-08-07 17:33:47 - LocalTime local time -2024-08-07 17:33:47 - LocalDate local_date -2024-08-07 17:33:47 - LocalDateTime local_datetime -2024-08-07 17:33:47 - LocalTime local_time -2024-08-07 17:33:47 - Time localtime -2024-08-07 17:33:47 - Timestamp localtimestamp -2024-08-07 17:33:47 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 17:33:47 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 17:33:47 - Double log10(NUMERIC arg) -2024-08-07 17:33:47 - String lower(STRING string) -2024-08-07 17:33:47 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 17:33:47 - String ltrim(STRING string) -2024-08-07 17:33:47 - max(COMPARABLE arg) -2024-08-07 17:33:47 - Double median(NUMERIC arg) -2024-08-07 17:33:47 - Integer microsecond(TIME arg) -2024-08-07 17:33:47 - min(COMPARABLE arg) -2024-08-07 17:33:47 - Integer minute(TIME arg) -2024-08-07 17:33:47 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 17:33:47 - mode() -2024-08-07 17:33:47 - Integer month(DATE arg) -2024-08-07 17:33:47 - String monthname(DATE arg) -2024-08-07 17:33:47 - Timestamp now() -2024-08-07 17:33:47 - nth_valueANY value, INTEGER nth -2024-08-07 17:33:47 - nullif(arg0, arg1) -2024-08-07 17:33:47 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 17:33:47 - OffsetDateTime offset datetime -2024-08-07 17:33:47 - OffsetDateTime offset_datetime -2024-08-07 17:33:47 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 17:33:47 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 17:33:47 - Double percent_rank([arg0[, ...]]) -2024-08-07 17:33:47 - percentile_cont(NUMERIC arg) -2024-08-07 17:33:47 - percentile_disc(NUMERIC arg) -2024-08-07 17:33:47 - Double pi -2024-08-07 17:33:47 - Integer position(STRING pattern in STRING string) -2024-08-07 17:33:47 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 17:33:47 - Integer quarter(DATE arg) -2024-08-07 17:33:47 - Double radians(NUMERIC arg) -2024-08-07 17:33:47 - Double rand([INTEGER seed]) -2024-08-07 17:33:47 - Long rank([arg0[, ...]]) -2024-08-07 17:33:47 - String repeat(STRING string, INTEGER times) -2024-08-07 17:33:47 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 17:33:47 - String right(STRING string, INTEGER length) -2024-08-07 17:33:47 - round(NUMERIC number[, INTEGER places]) -2024-08-07 17:33:47 - Long row_number() -2024-08-07 17:33:47 - Long rownum() -2024-08-07 17:33:47 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 17:33:47 - String rtrim(STRING string) -2024-08-07 17:33:47 - Integer second(TIME arg) -2024-08-07 17:33:47 - Integer sign(NUMERIC arg) -2024-08-07 17:33:47 - Double sin(NUMERIC arg) -2024-08-07 17:33:47 - Double sinh(NUMERIC arg) -2024-08-07 17:33:47 - String soundex(arg) -2024-08-07 17:33:47 - String space(INTEGER arg) -2024-08-07 17:33:47 - Object sql -2024-08-07 17:33:47 - Double sqrt(NUMERIC arg) -2024-08-07 17:33:47 - Double stddev_pop(NUMERIC arg) -2024-08-07 17:33:47 - Double stddev_samp(NUMERIC arg) -2024-08-07 17:33:47 - String str(arg) -2024-08-07 17:33:47 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 17:33:47 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 17:33:47 - sum(arg) -2024-08-07 17:33:47 - Timestamp sysdate -2024-08-07 17:33:47 - Double tan(NUMERIC arg) -2024-08-07 17:33:47 - Double tanh(NUMERIC arg) -2024-08-07 17:33:47 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 17:33:47 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 17:33:47 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 17:33:47 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 17:33:47 - trunc( ... ) -2024-08-07 17:33:47 - truncate( ... ) -2024-08-07 17:33:47 - String upper(STRING string) -2024-08-07 17:33:47 - Double var_pop(NUMERIC arg) -2024-08-07 17:33:47 - Double var_samp(NUMERIC arg) -2024-08-07 17:33:47 - Integer week(DATE arg) -2024-08-07 17:33:47 - Integer year(DATE arg) -2024-08-07 17:33:47 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 17:33:47 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 17:33:47 - Starting QueryInterpretationCache(2048) -2024-08-07 17:33:47 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:33:47 - Configured EntityCopyObserver strategy: disallow -2024-08-07 17:33:47 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:33:47 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:33:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:33:47 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 17:33:47 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:33:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:33:47 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 17:33:47 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:33:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:33:47 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 17:33:47 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:33:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:33:47 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 17:33:47 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:33:47 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:33:47 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 17:33:47 - Starting post-init callbacks -2024-08-07 17:33:47 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 17:33:47 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 17:33:47 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 17:33:47 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 17:33:47 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 17:33:47 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 17:33:47 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 17:33:47 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 17:33:47 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 82 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 84 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:47 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:33:47 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:47 - [javax.management.remote.rmi.RMIConnectionImpl@4c184181: connectionId=rmi://127.0.0.1 2] closing. -2024-08-07 17:33:47 - [javax.management.remote.rmi.RMIConnectionImpl@4c184181: connectionId=rmi://127.0.0.1 2] closed. -2024-08-07 17:33:47 - Created new SQL alias : ba1_0 -2024-08-07 17:33:47 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:33:47 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@174aabb2] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:33:47 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 17:33:47 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 17:33:48 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 17:33:48 - Version select: select id from bill_action where id=? -2024-08-07 17:33:48 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 17:33:48 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 17:33:48 - Delete (0): delete from bill_action where id=? -2024-08-07 17:33:48 - Created new SQL alias : ma1_0 -2024-08-07 17:33:48 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 17:33:48 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7b1b1784] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 17:33:48 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 17:33:48 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 17:33:48 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 17:33:48 - Version select: select id from member_action where id=? -2024-08-07 17:33:48 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 17:33:48 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 17:33:48 - Delete (0): delete from member_action where id=? -2024-08-07 17:33:48 - Created new SQL alias : e1_0 -2024-08-07 17:33:48 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:33:48 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 17:33:48 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:33:48 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 17:33:48 - Version select: select id from event where id=? -2024-08-07 17:33:48 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 17:33:48 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 17:33:48 - Delete (0): delete from event where id=? -2024-08-07 17:33:48 - Created new SQL alias : a1_0 -2024-08-07 17:33:48 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 17:33:48 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5cbebfba] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 17:33:48 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 17:33:48 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 17:33:48 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 17:33:48 - Version select: select id from action where id=? -2024-08-07 17:33:48 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 17:33:48 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 17:33:48 - Delete (0): delete from action where id=? -2024-08-07 17:33:48 - Created new SQL alias : es1_0 -2024-08-07 17:33:48 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 17:33:48 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@58df2864] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 17:33:48 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 17:33:48 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 17:33:48 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 17:33:48 - Version select: select id from event_step where id=? -2024-08-07 17:33:48 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 17:33:48 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 17:33:48 - Delete (0): delete from event_step where id=? -2024-08-07 17:33:48 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 17:33:48 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@7acb5200] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@20a7ce0] -2024-08-07 17:33:48 - Checking 0 named HQL queries -2024-08-07 17:33:48 - Checking 0 named SQL queries -2024-08-07 17:33:48 - - drop table if exists action cascade -2024-08-07 17:33:48 - - drop table if exists bill_action cascade -2024-08-07 17:33:48 - - drop table if exists event cascade -2024-08-07 17:33:48 - - drop table if exists event_step cascade -2024-08-07 17:33:48 - - drop table if exists member_action cascade -2024-08-07 17:33:48 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 17:33:48 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 17:33:48 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 17:33:48 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 17:33:48 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 17:33:48 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 17:33:48 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 17:33:48 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 17:33:48 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 17:33:48 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@64821706 -2024-08-07 17:33:48 - Registering SessionFactory: 7b27f133-cca8-4c24-90a1-8f284c370275 (<unnamed>) -2024-08-07 17:33:48 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 17:33:48 - Instantiated SessionFactory -2024-08-07 17:33:48 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'actionService' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 17:33:48 - Initializing JpaMetamodelMappingContext… -2024-08-07 17:33:48 - Finished initializing JpaMetamodelMappingContext -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - Statistics initialized [enabled=false] -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 17:33:48 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 17:33:48 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 17:33:48 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:33:48 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - Looking up named query BillAction.findByAction_Event -2024-08-07 17:33:48 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:33:48 - Did not find named query BillAction.findByAction_Event -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - Looking up named query BillAction.findByAction_Id -2024-08-07 17:33:48 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:33:48 - Did not find named query BillAction.findByAction_Id -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 17:33:48 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:33:48 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 17:33:48 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:33:48 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 17:33:48 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:33:48 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 17:33:48 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 17:33:48 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:33:48 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 17:33:48 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:33:48 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 17:33:48 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 17:33:48 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 17:33:48 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 17:33:48 - Looking up named query MemberAction.findByAction -2024-08-07 17:33:48 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:33:48 - Did not find named query MemberAction.findByAction -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:33:48 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 17:33:48 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:33:48 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(745599425988083)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(745599425988083)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(745599425988083)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(745599425988083)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(745599425988083).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:33:48 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:33:48 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 17:33:48 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:33:48 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:33:48 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - Looking up named query Event.findByToken -2024-08-07 17:33:48 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:33:48 - Did not find named query Event.findByToken -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 17:33:48 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 17:33:48 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:33:48 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - Looking up named query Action.findByIdAndEvent -2024-08-07 17:33:48 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:33:48 - Did not find named query Action.findByIdAndEvent -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:33:48 - Did not find named query Action.findLastByEvent.count -2024-08-07 17:33:48 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:33:48 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 17:33:48 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:33:48 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:33:48 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 17:33:48 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 17:33:48 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 17:33:48 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'eventService' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 17:33:48 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 17:33:48 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 17:33:48 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 17:33:48 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 17:33:48 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 17:33:48 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 17:33:48 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:33:48 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 17:33:48 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 17:33:48 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 17:33:48 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'actionController' -2024-08-07 17:33:48 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 17:33:48 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'eventController' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'authService' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 17:33:48 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 17:33:48 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 17:33:48 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 17:33:48 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 17:33:48 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:33:48 - Loaded expression factory via original TCCL -2024-08-07 17:33:48 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 17:33:48 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 17:33:48 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:33:48 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 17:33:48 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:33:48 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:33:48 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:33:48 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:33:48 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:33:48 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:33:48 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:33:48 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:33:48 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:33:48 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:33:48 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'error' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 17:33:48 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 17:33:48 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 17:33:48 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 17:33:48 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 17:33:48 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:33:48 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:33:48 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 17:33:48 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:33:48 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:33:48 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 17:33:48 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:33:48 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:33:48 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:33:48 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 17:33:48 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 17:33:48 - - s.h.p.EventController: - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) -2024-08-07 17:33:48 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 17:33:48 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 17:33:48 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 17:33:48 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:33:48 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 17:33:48 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:33:48 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:33:48 - 'beanNameHandlerMapping' {} -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 17:33:48 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:33:48 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 17:33:48 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 17:33:48 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:33:48 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:33:48 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 17:33:48 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:33:48 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 17:33:48 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 17:33:48 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 17:33:48 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:33:48 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:33:48 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:33:48 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 17:33:48 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:33:48 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 17:33:48 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 17:33:48 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 17:33:48 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 17:33:48 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 17:33:48 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 17:33:48 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 17:33:48 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:33:48 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 17:33:48 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 17:33:48 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 17:33:48 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 17:33:48 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 82 -2024-08-07 17:33:48 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 17:33:48 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:48 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:48 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:48 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:48 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:48 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:48 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:48 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 84 -2024-08-07 17:33:48 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:48 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:48 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:48 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:33:48 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:33:48 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:48 - [javax.management.remote.rmi.RMIConnectionImpl@14bc0bf3: connectionId=rmi://127.0.0.1 3] closing. -2024-08-07 17:33:48 - [javax.management.remote.rmi.RMIConnectionImpl@14bc0bf3: connectionId=rmi://127.0.0.1 3] closed. -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 17:33:48 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 17:33:48 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:33:48 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 17:33:48 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:33:48 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 17:33:48 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 17:33:48 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 17:33:48 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 17:33:48 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 17:33:48 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 17:33:48 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 17:33:48 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 17:33:48 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 17:33:48 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 17:33:48 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 17:33:48 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 17:33:48 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 17:33:48 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:33:48 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 17:33:48 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 17:33:48 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 17:33:48 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 17:33:48 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 17:33:48 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 17:33:48 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 17:33:48 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 17:33:48 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 17:33:48 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 17:33:48 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 17:33:48 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:33:48 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:33:48 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 17:33:48 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 17:33:48 - Using SLF4J as the default logging framework -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 17:33:48 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 17:33:48 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 17:33:48 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 17:33:48 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 17:33:48 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 17:33:48 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 17:33:48 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 17:33:48 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 17:33:48 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 17:33:48 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 17:33:48 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 17:33:48 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 17:33:48 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 17:33:48 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 17:33:48 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 17:33:48 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 17:33:48 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 17:33:48 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 17:33:48 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:33:48 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:33:48 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 17:33:48 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 17:33:48 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 17:33:48 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:33:48 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:33:48 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 17:33:48 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 17:33:48 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 17:33:48 - Registering beans for JMX exposure on startup -2024-08-07 17:33:48 - Auto-detecting user-defined JMX MBeans -2024-08-07 17:33:48 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 17:33:48 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 17:33:48 - Starting beans in phase -2147483647 -2024-08-07 17:33:48 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 17:33:48 - Starting beans in phase 2147481599 -2024-08-07 17:33:48 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 17:33:48 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 17:33:48 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 17:33:48 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 17:33:48 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 17:33:48 - Successfully started bean 'webServerStartStop' -2024-08-07 17:33:48 - Starting beans in phase 2147482623 -2024-08-07 17:33:48 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 17:33:48 - Starting beans in phase 2147483647 -2024-08-07 17:33:48 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 17:33:48 - Started HaengdongApplication in 2.156 seconds (process running for 2.349) -2024-08-07 17:33:48 - Application availability state LivenessState changed to CORRECT -2024-08-07 17:33:48 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 17:33:49 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 82 -2024-08-07 17:33:49 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 84 -2024-08-07 17:33:49 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:33:49 - RMI TCP Connection(1)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - [javax.management.remote.rmi.RMIConnectionImpl@eab64ac: connectionId=rmi://127.0.0.1 4] closing. -2024-08-07 17:33:49 - [javax.management.remote.rmi.RMIConnectionImpl@eab64ac: connectionId=rmi://127.0.0.1 4] closed. -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:49464] -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:49465] -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 84 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 84 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - [javax.management.remote.rmi.RMIConnectionImpl@70e3b75e: connectionId=rmi://127.0.0.1 5] closing. -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - [javax.management.remote.rmi.RMIConnectionImpl@70e3b75e: connectionId=rmi://127.0.0.1 5] closed. -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 84 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - [javax.management.remote.rmi.RMIConnectionImpl@77d0be13: connectionId=rmi://127.0.0.1 6] closing. -2024-08-07 17:33:49 - [javax.management.remote.rmi.RMIConnectionImpl@77d0be13: connectionId=rmi://127.0.0.1 6] closed. -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - [javax.management.remote.rmi.RMIConnectionImpl@6c13ebc6: connectionId=rmi://127.0.0.1 7] closing. -2024-08-07 17:33:49 - [javax.management.remote.rmi.RMIConnectionImpl@6c13ebc6: connectionId=rmi://127.0.0.1 7] closed. -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 84 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - [javax.management.remote.rmi.RMIConnectionImpl@1b3d4afb: connectionId=rmi://127.0.0.1 8] closing. -2024-08-07 17:33:49 - [javax.management.remote.rmi.RMIConnectionImpl@1b3d4afb: connectionId=rmi://127.0.0.1 8] closed. -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 82 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 82 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 84 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 82 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 84 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 82 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 82 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - [javax.management.remote.rmi.RMIConnectionImpl@50982668: connectionId=rmi://127.0.0.1 9] closing. -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - [javax.management.remote.rmi.RMIConnectionImpl@50982668: connectionId=rmi://127.0.0.1 9] closed. -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - [javax.management.remote.rmi.RMIConnectionImpl@1191a0a: connectionId=rmi://127.0.0.1 10] closing. -2024-08-07 17:33:49 - [javax.management.remote.rmi.RMIConnectionImpl@1191a0a: connectionId=rmi://127.0.0.1 10] closed. -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 84 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 84 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:49 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 17:33:49 - Fetching JDBC Connection from DataSource -2024-08-07 17:33:49 - Fetching JDBC Connection from DataSource -2024-08-07 17:33:49 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 17:33:49 - Initializing Servlet 'dispatcherServlet' -2024-08-07 17:33:49 - Detected StandardServletMultipartResolver -2024-08-07 17:33:49 - Detected AcceptHeaderLocaleResolver -2024-08-07 17:33:49 - Detected FixedThemeResolver -2024-08-07 17:33:49 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@4a907e5a -2024-08-07 17:33:49 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@136dc728 -2024-08-07 17:33:49 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 17:33:49 - Completed initialization in 1 ms -2024-08-07 17:33:49 - RMI TCP Connection(3)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - [javax.management.remote.rmi.RMIConnectionImpl@1d6dec76: connectionId=rmi://127.0.0.1 11] closing. -2024-08-07 17:33:49 - [javax.management.remote.rmi.RMIConnectionImpl@1d6dec76: connectionId=rmi://127.0.0.1 11] closed. -2024-08-07 17:33:49 - RMI TCP Connection(2)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:49 - [javax.management.remote.rmi.RMIConnectionImpl@67f0b08f: connectionId=rmi://127.0.0.1 12] closing. -2024-08-07 17:33:49 - [javax.management.remote.rmi.RMIConnectionImpl@67f0b08f: connectionId=rmi://127.0.0.1 12] closed. -2024-08-07 17:33:52 - RMI TCP Connection(2)-127.0.0.1: (port 49462) connection closed -2024-08-07 17:33:52 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=49464,localport=49462] -2024-08-07 17:33:52 - RMI TCP Connection(1)-127.0.0.1: (port 49462) connection closed -2024-08-07 17:33:52 - RMI TCP Connection(3)-127.0.0.1: (port 49462) connection closed -2024-08-07 17:33:52 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=49463,localport=49462] -2024-08-07 17:33:52 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=49465,localport=49462] -2024-08-07 17:33:52 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:49466] -2024-08-07 17:33:52 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=49465,localport=49462] -2024-08-07 17:33:52 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=49464,localport=49462] -2024-08-07 17:33:52 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=49463,localport=49462] -2024-08-07 17:33:52 - RMI TCP Connection(4)-127.0.0.1: (port 49462) op = 80 -2024-08-07 17:33:52 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:52 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:52 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:52 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:52 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-07 17:33:55 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1296184868596726786/conf/jaspic-providers.xml] -2024-08-07 17:33:55 - POST "/api/events", parameters={} -2024-08-07 17:33:55 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:33:55 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:33:55 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=asdfas, password=1234]] -2024-08-07 17:33:55 - Found thread-bound EntityManager [SessionImpl(1338870947<open>)] for JPA transaction -2024-08-07 17:33:55 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 17:33:55 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:33:55 - begin -2024-08-07 17:33:55 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@19dcf8bc] -2024-08-07 17:33:55 - Found thread-bound EntityManager [SessionImpl(1338870947<open>)] for JPA transaction -2024-08-07 17:33:55 - Participating in existing transaction -2024-08-07 17:33:55 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 17:33:55 - Executing identity-insert immediately -2024-08-07 17:33:55 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 17:33:55 - Initializer list is empty -2024-08-07 17:33:55 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@78a6c09d -2024-08-07 17:33:55 - Extracted JDBC value [0] - [1] -2024-08-07 17:33:55 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@5e0cbbcc -2024-08-07 17:33:55 - Initiating transaction commit -2024-08-07 17:33:55 - Committing JPA transaction on EntityManager [SessionImpl(1338870947<open>)] -2024-08-07 17:33:55 - committing -2024-08-07 17:33:55 - Processing flush-time cascades -2024-08-07 17:33:55 - Dirty checking collections -2024-08-07 17:33:55 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 17:33:55 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 17:33:55 - Listing entities: -2024-08-07 17:33:55 - server.haengdong.domain.event.Event{password=1234, name=asdfas, id=1, token=f7d5b1e5-9aba-4835-bb4c-718e1f4bbd3c} -2024-08-07 17:33:55 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:33:55 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#handleException(Exception) -2024-08-07 17:33:55 - localhost:3000: invalid cookie domain char '58' -java.lang.IllegalArgumentException: localhost:3000: invalid cookie domain char '58' - at org.springframework.http.ResponseCookie$Rfc6265Utils.validateDomain(ResponseCookie.java:357) - at org.springframework.http.ResponseCookie.<init>(ResponseCookie.java:72) - at org.springframework.http.ResponseCookie$DefaultResponseCookieBuilder.build(ResponseCookie.java:472) - at server.haengdong.presentation.EventController.createResponseCookie(EventController.java:101) - at server.haengdong.presentation.EventController.saveEvent(EventController.java:41) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:33:55 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:33:55 - Writing [ErrorResponse[code=S_001, message=서버 내부에서 에러가 발생했습니다.]] -2024-08-07 17:33:55 - Resolved [java.lang.IllegalArgumentException: localhost:3000: invalid cookie domain char '58'] -2024-08-07 17:33:55 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:33:55 - Completed 500 INTERNAL_SERVER_ERROR -2024-08-07 17:34:02 - POST "/api/events", parameters={} -2024-08-07 17:34:02 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:34:02 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:34:02 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=1234]] -2024-08-07 17:34:02 - Found thread-bound EntityManager [SessionImpl(255889821<open>)] for JPA transaction -2024-08-07 17:34:02 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 17:34:02 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:34:02 - begin -2024-08-07 17:34:02 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@4a421e11] -2024-08-07 17:34:02 - Found thread-bound EntityManager [SessionImpl(255889821<open>)] for JPA transaction -2024-08-07 17:34:02 - Participating in existing transaction -2024-08-07 17:34:02 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 17:34:02 - Executing identity-insert immediately -2024-08-07 17:34:02 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 17:34:02 - Initializer list is empty -2024-08-07 17:34:02 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@537df1d1 -2024-08-07 17:34:02 - Extracted JDBC value [0] - [2] -2024-08-07 17:34:02 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@42ba1fcb -2024-08-07 17:34:02 - Initiating transaction commit -2024-08-07 17:34:02 - Committing JPA transaction on EntityManager [SessionImpl(255889821<open>)] -2024-08-07 17:34:02 - committing -2024-08-07 17:34:02 - Processing flush-time cascades -2024-08-07 17:34:02 - Dirty checking collections -2024-08-07 17:34:02 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 17:34:02 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 17:34:02 - Listing entities: -2024-08-07 17:34:02 - server.haengdong.domain.event.Event{password=1234, name=1234, id=2, token=91d1dcad-3d72-4154-adcf-cfa72792c0bb} -2024-08-07 17:34:02 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:34:02 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#handleException(Exception) -2024-08-07 17:34:02 - localhost:3000: invalid cookie domain char '58' -java.lang.IllegalArgumentException: localhost:3000: invalid cookie domain char '58' - at org.springframework.http.ResponseCookie$Rfc6265Utils.validateDomain(ResponseCookie.java:357) - at org.springframework.http.ResponseCookie.<init>(ResponseCookie.java:72) - at org.springframework.http.ResponseCookie$DefaultResponseCookieBuilder.build(ResponseCookie.java:472) - at server.haengdong.presentation.EventController.createResponseCookie(EventController.java:101) - at server.haengdong.presentation.EventController.saveEvent(EventController.java:41) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:34:02 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:34:02 - Writing [ErrorResponse[code=S_001, message=서버 내부에서 에러가 발생했습니다.]] -2024-08-07 17:34:02 - Resolved [java.lang.IllegalArgumentException: localhost:3000: invalid cookie domain char '58'] -2024-08-07 17:34:02 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:34:02 - Completed 500 INTERNAL_SERVER_ERROR -2024-08-07 17:34:17 - RMI TCP Connection(4)-127.0.0.1: (port 49462) connection closed -2024-08-07 17:34:17 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=49466,localport=49462] -2024-08-07 17:34:17 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=49466,localport=49462] -2024-08-07 17:34:17 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:34:17 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:34:47 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:34:47 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:35:17 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:35:17 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:35:47 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:35:47 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:36:12 - POST "/api/events", parameters={} -2024-08-07 17:36:12 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:36:12 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:12 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=asdfas, password=1234]] -2024-08-07 17:36:12 - Found thread-bound EntityManager [SessionImpl(2124531789<open>)] for JPA transaction -2024-08-07 17:36:12 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 17:36:12 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:36:12 - begin -2024-08-07 17:36:12 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@3ba359fd] -2024-08-07 17:36:12 - Found thread-bound EntityManager [SessionImpl(2124531789<open>)] for JPA transaction -2024-08-07 17:36:12 - Participating in existing transaction -2024-08-07 17:36:12 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 17:36:12 - Executing identity-insert immediately -2024-08-07 17:36:12 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 17:36:12 - Initializer list is empty -2024-08-07 17:36:12 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@1f07ea9b -2024-08-07 17:36:12 - Extracted JDBC value [0] - [3] -2024-08-07 17:36:12 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@a809b40 -2024-08-07 17:36:12 - Initiating transaction commit -2024-08-07 17:36:12 - Committing JPA transaction on EntityManager [SessionImpl(2124531789<open>)] -2024-08-07 17:36:12 - committing -2024-08-07 17:36:12 - Processing flush-time cascades -2024-08-07 17:36:12 - Dirty checking collections -2024-08-07 17:36:12 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 17:36:12 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 17:36:12 - Listing entities: -2024-08-07 17:36:12 - server.haengdong.domain.event.Event{password=1234, name=asdfas, id=3, token=30b12aed-48f0-498d-8bd4-4a078ca0b590} -2024-08-07 17:36:12 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:36:12 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#handleException(Exception) -2024-08-07 17:36:12 - localhost:3000: invalid cookie domain char '58' -java.lang.IllegalArgumentException: localhost:3000: invalid cookie domain char '58' - at org.springframework.http.ResponseCookie$Rfc6265Utils.validateDomain(ResponseCookie.java:357) - at org.springframework.http.ResponseCookie.<init>(ResponseCookie.java:72) - at org.springframework.http.ResponseCookie$DefaultResponseCookieBuilder.build(ResponseCookie.java:472) - at server.haengdong.presentation.EventController.createResponseCookie(EventController.java:101) - at server.haengdong.presentation.EventController.saveEvent(EventController.java:41) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:36:12 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:36:12 - Writing [ErrorResponse[code=S_001, message=서버 내부에서 에러가 발생했습니다.]] -2024-08-07 17:36:12 - Resolved [java.lang.IllegalArgumentException: localhost:3000: invalid cookie domain char '58'] -2024-08-07 17:36:12 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:12 - Completed 500 INTERNAL_SERVER_ERROR -2024-08-07 17:36:17 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:36:17 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:36:20 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 17:36:20 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b, started on Wed Aug 07 17:33:46 KST 2024 -2024-08-07 17:36:20 - Stopping beans in phase 2147483647 -2024-08-07 17:36:20 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 17:36:20 - Stopping beans in phase 2147482623 -2024-08-07 17:36:20 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 17:36:20 - Stopping beans in phase 2147481599 -2024-08-07 17:36:20 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 17:36:20 - Stopping beans in phase -2147483647 -2024-08-07 17:36:20 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 17:36:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 17:36:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 17:36:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 17:36:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 17:36:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 17:36:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 17:36:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 17:36:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 17:36:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 17:36:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 17:36:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 17:36:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 17:36:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 17:36:20 - Unregistering JMX-exposed beans on shutdown -2024-08-07 17:36:20 - Unregistering JMX-exposed beans -2024-08-07 17:36:20 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 17:36:20 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 17:36:20 - HHH000031: Closing -2024-08-07 17:36:20 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@264b4a6f] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@20a7ce0] -2024-08-07 17:36:20 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 17:36:20 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 17:36:20 - HikariPool-1 - Shutdown initiated... -2024-08-07 17:36:20 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:36:20 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:36:20 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:36:20 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:36:20 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:36:20 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:36:20 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:36:20 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:36:20 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:36:20 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:36:20 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:36:20 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 17:36:20 - HikariPool-1 - Shutdown completed. -2024-08-07 17:36:20 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 17:36:21 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 17:36:21 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 17:36:21 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:36:21 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:36:21 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:36:21 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:36:21 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:36:21 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:36:22 - Loaded expression factory via original TCCL -2024-08-07 17:36:22 - Starting HaengdongApplication using Java 17.0.12 with PID 64403 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 17:36:22 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 17:36:22 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 17:36:22 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 17:36:22 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 17:36:22 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:36:22 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:36:22 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:36:22 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:36:22 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:36:22 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 17:36:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 17:36:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 17:36:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 17:36:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 17:36:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 17:36:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 17:36:22 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 17:36:22 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 17:36:22 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 17:36:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 17:36:22 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 17:36:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 17:36:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 17:36:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 17:36:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 17:36:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 17:36:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 17:36:22 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 17:36:22 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 17:36:22 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 17:36:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 17:36:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 17:36:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 17:36:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 17:36:22 - Finished Spring Data repository scanning in 19 ms. Found 4 JPA repository interfaces. -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 17:36:22 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 17:36:22 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 17:36:22 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 17:36:22 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 17:36:22 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 17:36:22 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 17:36:22 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 17:36:22 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 17:36:22 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@b14b60a] -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 17:36:22 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 17:36:22 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 17:36:22 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 17:36:22 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 17:36:22 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 17:36:22 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 17:36:22 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 17:36:22 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 17:36:22 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:36:22 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:36:22 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:36:22 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 17:36:22 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 17:36:22 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 17:36:22 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 17:36:22 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 17:36:22 - Tomcat initialized with port 8080 (http) -2024-08-07 17:36:22 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@25ce435] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@25ce435] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.mapper.MapperListener@7cd5fcf4] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.mapper.MapperListener@7cd5fcf4] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 17:36:22 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 17:36:22 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@25ce435] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@25ce435] to [STARTING] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@25ce435] to [STARTED] -2024-08-07 17:36:22 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 17:36:22 - Starting service [Tomcat] -2024-08-07 17:36:22 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 17:36:22 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 17:36:22 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.webresources.StandardRoot@36510e73] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.webresources.StandardRoot@36510e73] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.webresources.StandardRoot@36510e73] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.webresources.DirResourceSet@4b28a7bf] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.webresources.DirResourceSet@4b28a7bf] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.webresources.DirResourceSet@4b28a7bf] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.webresources.DirResourceSet@4b28a7bf] to [STARTING] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.webresources.DirResourceSet@4b28a7bf] to [STARTED] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.webresources.StandardRoot@36510e73] to [STARTING] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.webresources.StandardRoot@36510e73] to [STARTED] -2024-08-07 17:36:22 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:36:22 - Starting this Loader -2024-08-07 17:36:22 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:36:22 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:36:22 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 17:36:22 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4f213a2] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4f213a2] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4f213a2] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4f213a2] to [STARTING] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4f213a2] to [STARTED] -2024-08-07 17:36:22 - Initializing Spring embedded WebApplicationContext -2024-08-07 17:36:22 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 17:36:22 - Root WebApplicationContext: initialization completed in 646 ms -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 17:36:22 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 17:36:22 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 17:36:22 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 17:36:22 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:36:22 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 17:36:22 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 17:36:22 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 17:36:22 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 17:36:22 - HikariPool-1 - configuration: -2024-08-07 17:36:22 - allowPoolSuspension.............false -2024-08-07 17:36:22 - autoCommit......................true -2024-08-07 17:36:22 - catalog.........................none -2024-08-07 17:36:22 - connectionInitSql...............none -2024-08-07 17:36:22 - connectionTestQuery.............none -2024-08-07 17:36:22 - connectionTimeout...............30000 -2024-08-07 17:36:22 - dataSource......................none -2024-08-07 17:36:22 - dataSourceClassName.............none -2024-08-07 17:36:22 - dataSourceJNDI..................none -2024-08-07 17:36:22 - dataSourceProperties............{password=<masked>} -2024-08-07 17:36:22 - driverClassName................."org.h2.Driver" -2024-08-07 17:36:22 - exceptionOverrideClassName......none -2024-08-07 17:36:22 - healthCheckProperties...........{} -2024-08-07 17:36:22 - healthCheckRegistry.............none -2024-08-07 17:36:22 - idleTimeout.....................600000 -2024-08-07 17:36:22 - initializationFailTimeout.......1 -2024-08-07 17:36:22 - isolateInternalQueries..........false -2024-08-07 17:36:22 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 17:36:22 - keepaliveTime...................0 -2024-08-07 17:36:22 - leakDetectionThreshold..........0 -2024-08-07 17:36:22 - maxLifetime.....................1800000 -2024-08-07 17:36:22 - maximumPoolSize.................10 -2024-08-07 17:36:22 - metricRegistry..................none -2024-08-07 17:36:22 - metricsTrackerFactory...........none -2024-08-07 17:36:22 - minimumIdle.....................10 -2024-08-07 17:36:22 - password........................<masked> -2024-08-07 17:36:22 - poolName........................"HikariPool-1" -2024-08-07 17:36:22 - readOnly........................false -2024-08-07 17:36:22 - registerMbeans..................false -2024-08-07 17:36:22 - scheduledExecutor...............none -2024-08-07 17:36:22 - schema..........................none -2024-08-07 17:36:22 - threadFactory...................internal -2024-08-07 17:36:22 - transactionIsolation............default -2024-08-07 17:36:22 - username........................"sa" -2024-08-07 17:36:22 - validationTimeout...............5000 -2024-08-07 17:36:22 - HikariPool-1 - Starting... -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:49731] -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 84 -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:22 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:36:22 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:22 - [javax.management.remote.rmi.RMIConnectionImpl@568c0a99: connectionId=rmi://127.0.0.1 1] closing. -2024-08-07 17:36:22 - [javax.management.remote.rmi.RMIConnectionImpl@568c0a99: connectionId=rmi://127.0.0.1 1] closed. -2024-08-07 17:36:22 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 17:36:22 - HikariPool-1 - Start completed. -2024-08-07 17:36:22 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 17:36:22 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 17:36:22 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:36:22 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 17:36:22 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:36:22 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 17:36:22 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 17:36:22 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 17:36:22 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 17:36:22 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 17:36:22 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@68f776ee] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@68f776ee] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@68f776ee] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@68f776ee] to [STARTING] -2024-08-07 17:36:22 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@68f776ee] to [STARTED] -2024-08-07 17:36:22 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:36:22 - Filter 'requestContextFilter' configured for use -2024-08-07 17:36:22 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 17:36:22 - Filter 'characterEncodingFilter' configured for use -2024-08-07 17:36:22 - Filter 'formContentFilter' configured for use -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:36:22 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:36:22 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:36:22 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 17:36:22 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.mapper.MapperListener@7cd5fcf4] to [STARTING_PREP] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.mapper.MapperListener@7cd5fcf4] to [STARTING] -2024-08-07 17:36:22 - Registered host [localhost] -2024-08-07 17:36:22 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 17:36:22 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 17:36:22 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 17:36:22 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 17:36:22 - Setting state for [org.apache.catalina.mapper.MapperListener@7cd5fcf4] to [STARTED] -2024-08-07 17:36:22 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 17:36:22 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 17:36:22 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 17:36:22 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:36:22 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 17:36:22 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 17:36:22 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 17:36:22 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 17:36:22 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 17:36:22 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:36:22 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 17:36:22 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 17:36:22 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 17:36:22 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 17:36:22 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 17:36:22 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 17:36:22 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 17:36:22 - HHH000206: 'hibernate.properties' not found -2024-08-07 17:36:22 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 17:36:22 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 17:36:22 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 17:36:22 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 17:36:22 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 17:36:22 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 17:36:22 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 17:36:22 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 17:36:22 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 17:36:22 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 17:36:22 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 17:36:22 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 17:36:22 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 17:36:22 - HHH000026: Second-level cache disabled -2024-08-07 17:36:22 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 17:36:22 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 17:36:22 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@57a982f9 -2024-08-07 17:36:22 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@57a982f9 -2024-08-07 17:36:22 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@57a982f9 -2024-08-07 17:36:22 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@19d3f6ad -2024-08-07 17:36:22 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@19d3f6ad -2024-08-07 17:36:22 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@1b69fc07 -2024-08-07 17:36:22 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@1b69fc07 -2024-08-07 17:36:22 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@19e801b5 -2024-08-07 17:36:22 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@19e801b5 -2024-08-07 17:36:22 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-07 17:36:22 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-07 17:36:22 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-07 17:36:22 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-07 17:36:22 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-07 17:36:22 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-07 17:36:22 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-07 17:36:22 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-07 17:36:22 - Adding type registration image -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-07 17:36:22 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-07 17:36:22 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-07 17:36:22 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 17:36:22 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-07 17:36:22 - Adding type registration short -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 17:36:22 - Adding type registration short -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 17:36:22 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 17:36:22 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 17:36:22 - Adding type registration int -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 17:36:22 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 17:36:22 - Adding type registration long -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 17:36:22 - Adding type registration long -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 17:36:22 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 17:36:22 - Adding type registration float -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 17:36:22 - Adding type registration float -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 17:36:22 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 17:36:22 - Adding type registration double -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 17:36:22 - Adding type registration double -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 17:36:22 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 17:36:22 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 17:36:22 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 17:36:22 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 17:36:22 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 17:36:22 - Adding type registration character -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 17:36:22 - Adding type registration char -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 17:36:22 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 17:36:22 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 17:36:22 - Adding type registration string -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 17:36:22 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 17:36:22 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 17:36:22 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 17:36:22 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 17:36:22 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 17:36:22 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 17:36:22 - Adding type registration text -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 17:36:22 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 17:36:22 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 17:36:22 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 17:36:22 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 17:36:22 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 17:36:22 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 17:36:22 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 17:36:22 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 17:36:22 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 17:36:22 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 17:36:22 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 17:36:22 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 17:36:22 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 17:36:22 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 17:36:22 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 17:36:22 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 17:36:22 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 17:36:22 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 17:36:22 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 17:36:22 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 17:36:22 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 17:36:22 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 17:36:22 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 17:36:22 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 17:36:22 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 17:36:22 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 17:36:22 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 17:36:22 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 17:36:22 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 17:36:22 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 17:36:22 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 17:36:22 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 17:36:22 - Adding type registration date -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 17:36:22 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 17:36:22 - Adding type registration time -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 17:36:22 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 17:36:22 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 17:36:22 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 17:36:22 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 17:36:22 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 17:36:22 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 17:36:22 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 17:36:22 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 17:36:22 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 17:36:22 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 17:36:22 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 17:36:22 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 17:36:22 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 17:36:22 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 17:36:22 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 17:36:22 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 17:36:22 - Adding type registration class -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 17:36:22 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 17:36:22 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 17:36:22 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 17:36:22 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 17:36:22 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 17:36:22 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 17:36:22 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 17:36:22 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 17:36:22 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 17:36:22 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 17:36:22 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 17:36:22 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 17:36:22 - Adding type registration url -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 17:36:22 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 17:36:22 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 17:36:22 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 17:36:22 - Adding type registration object -> org.hibernate.type.JavaObjectType@5896b9f5 -2024-08-07 17:36:22 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@5896b9f5 -2024-08-07 17:36:22 - Adding type registration null -> org.hibernate.type.NullType@727956bb -2024-08-07 17:36:22 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@6ffbf0ac -2024-08-07 17:36:22 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@ad5cffa -2024-08-07 17:36:22 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@237aa0c7 -2024-08-07 17:36:22 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@1b8ee69d -2024-08-07 17:36:22 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@2b400bd0 -2024-08-07 17:36:22 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@fceab5d -2024-08-07 17:36:22 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@79445efb -2024-08-07 17:36:22 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@1592e540 -2024-08-07 17:36:22 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@7eefaca0] into BootstrapContext; was [null] -2024-08-07 17:36:22 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@7eefaca0) [was null] -2024-08-07 17:36:22 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@3dec79f8] into BootstrapContext; was [null] -2024-08-07 17:36:22 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@5bf7f15f] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@14b26e90] -2024-08-07 17:36:22 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 17:36:22 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 17:36:22 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 17:36:22 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 17:36:23 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-07 17:36:23 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 17:36:23 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 17:36:23 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@7eefaca0] -2024-08-07 17:36:23 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@7eefaca0] -2024-08-07 17:36:23 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 17:36:23 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 17:36:23 - JDBC version : 4.2 -2024-08-07 17:36:23 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 17:36:23 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 17:36:23 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 17:36:23 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 17:36:23 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 17:36:23 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 17:36:23 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 17:36:23 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 17:36:23 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 17:36:23 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 17:36:23 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 17:36:23 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-07 17:36:23 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 17:36:23 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@42cf5a6f] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@7b2f8152] -2024-08-07 17:36:23 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 17:36:23 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 17:36:23 - Import with entity name Action -2024-08-07 17:36:23 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 17:36:23 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:36:23 - Binding column: AnnotatedColumn() -2024-08-07 17:36:23 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:36:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:36:23 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:36:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 17:36:23 - building BasicValue for id -2024-08-07 17:36:23 - Skipping column re-registration: action.id -2024-08-07 17:36:23 - Building property id -2024-08-07 17:36:23 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:36:23 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 17:36:23 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 17:36:23 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:36:23 - Binding column: AnnotatedColumn() -2024-08-07 17:36:23 - Building property event -2024-08-07 17:36:23 - Binding column: AnnotatedColumn() -2024-08-07 17:36:23 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 17:36:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 17:36:23 - building BasicValue for sequence -2024-08-07 17:36:23 - Skipping column re-registration: action.sequence -2024-08-07 17:36:23 - Building property sequence -2024-08-07 17:36:23 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:36:23 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 17:36:23 - Import with entity name BillAction -2024-08-07 17:36:23 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 17:36:23 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:36:23 - Binding column: AnnotatedColumn() -2024-08-07 17:36:23 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:36:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:36:23 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:36:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 17:36:23 - building BasicValue for id -2024-08-07 17:36:23 - Skipping column re-registration: bill_action.id -2024-08-07 17:36:23 - Building property id -2024-08-07 17:36:23 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:36:23 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:36:23 - Binding column: AnnotatedColumn() -2024-08-07 17:36:23 - Building property action -2024-08-07 17:36:23 - Binding column: AnnotatedColumn() -2024-08-07 17:36:23 - MetadataSourceProcessor property price with lazy=false -2024-08-07 17:36:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 17:36:23 - building BasicValue for price -2024-08-07 17:36:23 - Skipping column re-registration: bill_action.price -2024-08-07 17:36:23 - Building property price -2024-08-07 17:36:23 - Binding column: AnnotatedColumn() -2024-08-07 17:36:23 - MetadataSourceProcessor property title with lazy=false -2024-08-07 17:36:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 17:36:23 - building BasicValue for title -2024-08-07 17:36:23 - Skipping column re-registration: bill_action.title -2024-08-07 17:36:23 - Building property title -2024-08-07 17:36:23 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:36:23 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 17:36:23 - Import with entity name MemberAction -2024-08-07 17:36:23 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 17:36:23 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:36:23 - Binding column: AnnotatedColumn() -2024-08-07 17:36:23 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:36:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:36:23 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:36:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 17:36:23 - building BasicValue for id -2024-08-07 17:36:23 - Skipping column re-registration: member_action.id -2024-08-07 17:36:23 - Building property id -2024-08-07 17:36:23 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:36:23 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:36:23 - Binding column: AnnotatedColumn() -2024-08-07 17:36:23 - Building property action -2024-08-07 17:36:23 - Binding column: AnnotatedColumn() -2024-08-07 17:36:23 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 17:36:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 17:36:23 - building BasicValue for memberGroupId -2024-08-07 17:36:23 - Skipping column re-registration: member_action.member_group_id -2024-08-07 17:36:23 - Building property memberGroupId -2024-08-07 17:36:23 - Binding column: AnnotatedColumn() -2024-08-07 17:36:23 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 17:36:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 17:36:23 - building BasicValue for memberName -2024-08-07 17:36:23 - Skipping column re-registration: member_action.member_name -2024-08-07 17:36:23 - Building property memberName -2024-08-07 17:36:23 - Binding column: AnnotatedColumn() -2024-08-07 17:36:23 - MetadataSourceProcessor property status with lazy=false -2024-08-07 17:36:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 17:36:23 - building BasicValue for status -2024-08-07 17:36:23 - Skipping column re-registration: member_action.status -2024-08-07 17:36:23 - Building property status -2024-08-07 17:36:23 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:36:23 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 17:36:23 - Import with entity name Event -2024-08-07 17:36:23 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 17:36:23 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:36:23 - Binding column: AnnotatedColumn() -2024-08-07 17:36:23 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:36:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:36:23 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:36:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 17:36:23 - building BasicValue for id -2024-08-07 17:36:23 - Skipping column re-registration: event.id -2024-08-07 17:36:23 - Building property id -2024-08-07 17:36:23 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:36:23 - Binding column: AnnotatedColumn() -2024-08-07 17:36:23 - MetadataSourceProcessor property name with lazy=false -2024-08-07 17:36:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 17:36:23 - building BasicValue for name -2024-08-07 17:36:23 - Skipping column re-registration: event.name -2024-08-07 17:36:23 - Building property name -2024-08-07 17:36:23 - Binding column: AnnotatedColumn() -2024-08-07 17:36:23 - MetadataSourceProcessor property password with lazy=false -2024-08-07 17:36:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 17:36:23 - building BasicValue for password -2024-08-07 17:36:23 - Skipping column re-registration: event.password -2024-08-07 17:36:23 - Building property password -2024-08-07 17:36:23 - Binding column: AnnotatedColumn() -2024-08-07 17:36:23 - MetadataSourceProcessor property token with lazy=false -2024-08-07 17:36:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 17:36:23 - building BasicValue for token -2024-08-07 17:36:23 - Skipping column re-registration: event.token -2024-08-07 17:36:23 - Building property token -2024-08-07 17:36:23 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 17:36:23 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 17:36:23 - Import with entity name EventStep -2024-08-07 17:36:23 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 17:36:23 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:36:23 - Binding column: AnnotatedColumn() -2024-08-07 17:36:23 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:36:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:36:23 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:36:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 17:36:23 - building BasicValue for id -2024-08-07 17:36:23 - Skipping column re-registration: event_step.id -2024-08-07 17:36:23 - Building property id -2024-08-07 17:36:23 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:36:23 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:36:23 - Binding column: AnnotatedColumn() -2024-08-07 17:36:23 - Building property event -2024-08-07 17:36:23 - Binding column: AnnotatedColumn() -2024-08-07 17:36:23 - MetadataSourceProcessor property name with lazy=false -2024-08-07 17:36:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 17:36:23 - building BasicValue for name -2024-08-07 17:36:23 - Skipping column re-registration: event_step.name -2024-08-07 17:36:23 - Building property name -2024-08-07 17:36:23 - Binding column: AnnotatedColumn() -2024-08-07 17:36:23 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 17:36:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 17:36:23 - building BasicValue for sequence -2024-08-07 17:36:23 - Skipping column re-registration: event_step.sequence -2024-08-07 17:36:23 - Building property sequence -2024-08-07 17:36:23 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 17:36:23 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:36:23 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 17:36:23 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:36:23 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 17:36:23 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 17:36:23 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:36:23 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 17:36:23 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 17:36:23 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 17:36:23 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:36:23 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 17:36:23 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 17:36:23 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 17:36:23 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:36:23 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 17:36:23 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 17:36:23 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 17:36:23 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 17:36:23 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 17:36:23 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 17:36:23 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 17:36:23 - Building session factory -2024-08-07 17:36:23 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 17:36:23 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 17:36:23 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:36:23 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@4d71ec5b, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@20e3b165, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.9315050691981112239, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=64403, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.9315050691981112239, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@34d3bfca, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 17:36:23 - Session factory constructed with filter configurations : {} -2024-08-07 17:36:23 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:36:23 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:36:23 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:36:23 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:36:23 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:36:23 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:36:23 - Loaded expression factory via original TCCL -2024-08-07 17:36:23 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:36:23 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:36:23 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:36:23 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:36:23 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:36:23 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:36:23 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:36:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:36:23 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:36:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:36:23 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:36:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:36:23 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:36:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:36:23 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:36:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:36:23 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:36:23 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 17:36:23 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@7fdabb3b] under count; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@17d0d3d7] under every; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@39fc17be] under any; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6e22d6bf] under sinh; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@32121140] under cosh; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@96c840a] under tanh; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5c81ddab] under pi; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@24ee6faa] under log; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 17:36:23 - Registering alternate key : length -> character_length -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@fdf029a] under position; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@1231f25c] under overlay; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@7fb9a83c] under trim; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@7c8a91e2] under cast; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@c7443f] under collate; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@e2344da] under extract; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@21d48c40] under ifnull; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@2fc0ad21] under pad; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@7901a5ab] under str; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@263e512e] under format; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@288b8663] under timestampadd; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@2fccd98f] under timestampdiff; prior registration was null -2024-08-07 17:36:23 - Registering alternate key : dateadd -> timestampadd -2024-08-07 17:36:23 - Registering alternate key : datediff -> timestampdiff -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@575fe6da] under current_date; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@149238fe] under current_time; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@a0bdbe2] under current_timestamp; prior registration was null -2024-08-07 17:36:23 - Registering alternate key : current date -> current_date -2024-08-07 17:36:23 - Registering alternate key : current time -> current_time -2024-08-07 17:36:23 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@261099e1] under local_date; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@ed1d2cf] under local_time; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@b814e23] under local_datetime; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5f81507a] under offset_datetime; prior registration was null -2024-08-07 17:36:23 - Registering alternate key : local date -> local_date -2024-08-07 17:36:23 - Registering alternate key : local time -> local_time -2024-08-07 17:36:23 - Registering alternate key : local datetime -> local_datetime -2024-08-07 17:36:23 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7d7c05fa] under instant; prior registration was null -2024-08-07 17:36:23 - Registering alternate key : current_instant -> instant -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@34d3409d] under sql; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@16732340] under count; prior registration was org.hibernate.dialect.function.CountFunction@7fdabb3b -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@5eb9bf7d] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5c81ddab -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@64f613da] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 17:36:23 - Registering alternate key : day -> day_of_month -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@ed1d2cf -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@b814e23 -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@6fe337a5] under trunc; prior registration was null -2024-08-07 17:36:23 - Registering alternate key : truncate -> trunc -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7d60bd5a] under date_trunc; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 17:36:23 - Registering alternate key : chr -> char -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@43312512] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@fdf029a -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@13f7c165] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 17:36:23 - Registering alternate key : every -> bool_and -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 17:36:23 - Registering alternate key : any -> bool_or -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@655f92a1] under format; prior registration was org.hibernate.dialect.function.FormatFunction@263e512e -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@156eeff1] under listagg; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@5b643d6e] under mode; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@34f8ce89] under percentile_cont; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@22ed2886] under percentile_disc; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@73230721] under rank; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@10bcbbce] under dense_rank; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@27234b7c] under percent_rank; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@125a8ab6] under cume_dist; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@2bc0603f] under array; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@4ed19540] under array_list; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@69f24965] under array_agg; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@6e00d737] under array_position; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@25fcdcc6] under array_positions; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@69926b6e] under array_positions_list; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7ea8224b] under array_length; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@11896124] under array_concat; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@20462820] under array_prepend; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@4c0ab04f] under array_append; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@3f78a5ed] under array_contains; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@630e5010] under array_contains_nullable; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@1a73f3d1] under array_overlaps; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@257d3968] under array_overlaps_nullable; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@48f2d51d] under array_get; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@5c0d3715] under array_set; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@12478b4e] under array_remove; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@774189d0] under array_remove_index; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@22c4354d] under array_slice; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@4c599679] under array_replace; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@15fd3088] under array_trim; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@4e481512] under array_fill; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@1ba98508] under array_fill_list; prior registration was null -2024-08-07 17:36:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@1477d4e6] under array_to_string; prior registration was null -2024-08-07 17:36:23 - abs(NUMERIC arg) -2024-08-07 17:36:23 - Double acos(NUMERIC arg) -2024-08-07 17:36:23 - Boolean any(BOOLEAN predicate) -2024-08-07 17:36:23 - array( ... ) -2024-08-07 17:36:23 - array_agg(arg) -2024-08-07 17:36:23 - array_append( ... ) -2024-08-07 17:36:23 - array_concat( ... ) -2024-08-07 17:36:23 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 17:36:23 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 17:36:23 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 17:36:23 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 17:36:23 - array_get(ARRAY array, INTEGER index) -2024-08-07 17:36:23 - Integer array_length(ARRAY array) -2024-08-07 17:36:23 - array_list( ... ) -2024-08-07 17:36:23 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 17:36:23 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 17:36:23 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 17:36:23 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 17:36:23 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 17:36:23 - array_prepend( ... ) -2024-08-07 17:36:23 - array_remove( ... ) -2024-08-07 17:36:23 - array_remove_index( ... ) -2024-08-07 17:36:23 - array_replace( ... ) -2024-08-07 17:36:23 - array_set( ... ) -2024-08-07 17:36:23 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 17:36:23 - String array_to_string( ... ) -2024-08-07 17:36:23 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 17:36:23 - Integer ascii(STRING arg) -2024-08-07 17:36:23 - Double asin(NUMERIC arg) -2024-08-07 17:36:23 - Double atan(NUMERIC arg) -2024-08-07 17:36:23 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 17:36:23 - avg(NUMERIC arg) -2024-08-07 17:36:23 - bit_and(arg) -2024-08-07 17:36:23 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 17:36:23 - bit_or(arg) -2024-08-07 17:36:23 - bitand(arg0, arg1) -2024-08-07 17:36:23 - bitnot(arg) -2024-08-07 17:36:23 - bitor(arg0, arg1) -2024-08-07 17:36:23 - bitxor(arg0, arg1) -2024-08-07 17:36:23 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 17:36:23 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 17:36:23 - cast(arg as Type) -2024-08-07 17:36:23 - ceiling(NUMERIC arg) -2024-08-07 17:36:23 - Character char(INTEGER arg) -2024-08-07 17:36:23 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 17:36:23 - Character chr(INTEGER arg) -2024-08-07 17:36:23 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 17:36:23 - String collate(STRING string as COLLATION collation) -2024-08-07 17:36:23 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 17:36:23 - Double cos(NUMERIC arg) -2024-08-07 17:36:23 - Double cosh(NUMERIC arg) -2024-08-07 17:36:23 - Double cot(NUMERIC arg) -2024-08-07 17:36:23 - Long count([distinct ]{arg|*}) -2024-08-07 17:36:23 - Double cume_dist([arg0[, ...]]) -2024-08-07 17:36:23 - Date curdate() -2024-08-07 17:36:23 - Date current date -2024-08-07 17:36:23 - Time current time -2024-08-07 17:36:23 - Timestamp current timestamp -2024-08-07 17:36:23 - Date current_date -2024-08-07 17:36:23 - Instant current_instant -2024-08-07 17:36:23 - Time current_time -2024-08-07 17:36:23 - Timestamp current_timestamp -2024-08-07 17:36:23 - Time curtime() -2024-08-07 17:36:23 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 17:36:23 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 17:36:23 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 17:36:23 - Integer day(DATE arg) -2024-08-07 17:36:23 - Integer day_of_month(DATE arg) -2024-08-07 17:36:23 - Integer day_of_week(DATE arg) -2024-08-07 17:36:23 - Integer day_of_year(DATE arg) -2024-08-07 17:36:23 - String dayname(DATE arg) -2024-08-07 17:36:23 - Double degrees(NUMERIC arg) -2024-08-07 17:36:23 - Long dense_rank([arg0[, ...]]) -2024-08-07 17:36:23 - Boolean every(BOOLEAN predicate) -2024-08-07 17:36:23 - Double exp(NUMERIC arg) -2024-08-07 17:36:23 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 17:36:23 - first_valueANY value -2024-08-07 17:36:23 - floor(NUMERIC arg) -2024-08-07 17:36:23 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 17:36:23 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 17:36:23 - Integer hour(TIME arg) -2024-08-07 17:36:23 - ifnull(arg0, arg1) -2024-08-07 17:36:23 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 17:36:23 - Instant instant -2024-08-07 17:36:23 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 17:36:23 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 17:36:23 - last_valueANY value -2024-08-07 17:36:23 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 17:36:23 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 17:36:23 - String left(STRING string, INTEGER length) -2024-08-07 17:36:23 - Integer length(STRING_OR_CLOB arg) -2024-08-07 17:36:23 - String listagg(STRING arg0, STRING arg1) -2024-08-07 17:36:23 - Double ln(NUMERIC arg) -2024-08-07 17:36:23 - LocalDate local date -2024-08-07 17:36:23 - LocalDateTime local datetime -2024-08-07 17:36:23 - LocalTime local time -2024-08-07 17:36:23 - LocalDate local_date -2024-08-07 17:36:23 - LocalDateTime local_datetime -2024-08-07 17:36:23 - LocalTime local_time -2024-08-07 17:36:23 - Time localtime -2024-08-07 17:36:23 - Timestamp localtimestamp -2024-08-07 17:36:23 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 17:36:23 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 17:36:23 - Double log10(NUMERIC arg) -2024-08-07 17:36:23 - String lower(STRING string) -2024-08-07 17:36:23 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 17:36:23 - String ltrim(STRING string) -2024-08-07 17:36:23 - max(COMPARABLE arg) -2024-08-07 17:36:23 - Double median(NUMERIC arg) -2024-08-07 17:36:23 - Integer microsecond(TIME arg) -2024-08-07 17:36:23 - min(COMPARABLE arg) -2024-08-07 17:36:23 - Integer minute(TIME arg) -2024-08-07 17:36:23 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 17:36:23 - mode() -2024-08-07 17:36:23 - Integer month(DATE arg) -2024-08-07 17:36:23 - String monthname(DATE arg) -2024-08-07 17:36:23 - Timestamp now() -2024-08-07 17:36:23 - nth_valueANY value, INTEGER nth -2024-08-07 17:36:23 - nullif(arg0, arg1) -2024-08-07 17:36:23 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 17:36:23 - OffsetDateTime offset datetime -2024-08-07 17:36:23 - OffsetDateTime offset_datetime -2024-08-07 17:36:23 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 17:36:23 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 17:36:23 - Double percent_rank([arg0[, ...]]) -2024-08-07 17:36:23 - percentile_cont(NUMERIC arg) -2024-08-07 17:36:23 - percentile_disc(NUMERIC arg) -2024-08-07 17:36:23 - Double pi -2024-08-07 17:36:23 - Integer position(STRING pattern in STRING string) -2024-08-07 17:36:23 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 17:36:23 - Integer quarter(DATE arg) -2024-08-07 17:36:23 - Double radians(NUMERIC arg) -2024-08-07 17:36:23 - Double rand([INTEGER seed]) -2024-08-07 17:36:23 - Long rank([arg0[, ...]]) -2024-08-07 17:36:23 - String repeat(STRING string, INTEGER times) -2024-08-07 17:36:23 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 17:36:23 - String right(STRING string, INTEGER length) -2024-08-07 17:36:23 - round(NUMERIC number[, INTEGER places]) -2024-08-07 17:36:23 - Long row_number() -2024-08-07 17:36:23 - Long rownum() -2024-08-07 17:36:23 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 17:36:23 - String rtrim(STRING string) -2024-08-07 17:36:23 - Integer second(TIME arg) -2024-08-07 17:36:23 - Integer sign(NUMERIC arg) -2024-08-07 17:36:23 - Double sin(NUMERIC arg) -2024-08-07 17:36:23 - Double sinh(NUMERIC arg) -2024-08-07 17:36:23 - String soundex(arg) -2024-08-07 17:36:23 - String space(INTEGER arg) -2024-08-07 17:36:23 - Object sql -2024-08-07 17:36:23 - Double sqrt(NUMERIC arg) -2024-08-07 17:36:23 - Double stddev_pop(NUMERIC arg) -2024-08-07 17:36:23 - Double stddev_samp(NUMERIC arg) -2024-08-07 17:36:23 - String str(arg) -2024-08-07 17:36:23 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 17:36:23 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 17:36:23 - sum(arg) -2024-08-07 17:36:23 - Timestamp sysdate -2024-08-07 17:36:23 - Double tan(NUMERIC arg) -2024-08-07 17:36:23 - Double tanh(NUMERIC arg) -2024-08-07 17:36:23 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 17:36:23 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 17:36:23 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 17:36:23 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 17:36:23 - trunc( ... ) -2024-08-07 17:36:23 - truncate( ... ) -2024-08-07 17:36:23 - String upper(STRING string) -2024-08-07 17:36:23 - Double var_pop(NUMERIC arg) -2024-08-07 17:36:23 - Double var_samp(NUMERIC arg) -2024-08-07 17:36:23 - Integer week(DATE arg) -2024-08-07 17:36:23 - Integer year(DATE arg) -2024-08-07 17:36:23 - Starting QueryInterpretationCache(2048) -2024-08-07 17:36:23 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 17:36:23 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 17:36:23 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:36:23 - Configured EntityCopyObserver strategy: disallow -2024-08-07 17:36:23 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:36:23 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:36:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 82 -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 82 -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 82 -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 84 -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 82 -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 82 -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:23 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:23 - [javax.management.remote.rmi.RMIConnectionImpl@f7b602c: connectionId=rmi://127.0.0.1 2] closing. -2024-08-07 17:36:23 - [javax.management.remote.rmi.RMIConnectionImpl@f7b602c: connectionId=rmi://127.0.0.1 2] closed. -2024-08-07 17:36:23 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 17:36:23 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:36:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:36:23 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 17:36:23 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:36:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:36:23 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 17:36:23 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:36:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:36:23 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 17:36:23 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:36:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:36:23 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 17:36:23 - Starting post-init callbacks -2024-08-07 17:36:23 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 17:36:23 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 17:36:23 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 17:36:23 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 17:36:23 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 17:36:23 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 17:36:23 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 17:36:23 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 17:36:23 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 17:36:23 - Created new SQL alias : ba1_0 -2024-08-07 17:36:23 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:36:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2cf97875] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:36:23 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 17:36:23 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 17:36:23 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 17:36:23 - Version select: select id from bill_action where id=? -2024-08-07 17:36:23 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 17:36:23 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 17:36:23 - Delete (0): delete from bill_action where id=? -2024-08-07 17:36:23 - Created new SQL alias : ma1_0 -2024-08-07 17:36:23 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 17:36:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@565983f3] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 17:36:23 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 17:36:23 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 17:36:23 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 17:36:23 - Version select: select id from member_action where id=? -2024-08-07 17:36:23 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 17:36:23 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 17:36:23 - Delete (0): delete from member_action where id=? -2024-08-07 17:36:23 - Created new SQL alias : e1_0 -2024-08-07 17:36:23 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:36:23 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 17:36:23 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:36:23 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 17:36:23 - Version select: select id from event where id=? -2024-08-07 17:36:23 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 17:36:23 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 17:36:23 - Delete (0): delete from event where id=? -2024-08-07 17:36:23 - Created new SQL alias : a1_0 -2024-08-07 17:36:23 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 17:36:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@182469d0] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 17:36:23 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 17:36:23 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 17:36:23 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 17:36:23 - Version select: select id from action where id=? -2024-08-07 17:36:23 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 17:36:23 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 17:36:23 - Delete (0): delete from action where id=? -2024-08-07 17:36:23 - Created new SQL alias : es1_0 -2024-08-07 17:36:23 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 17:36:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@c6653e] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 17:36:23 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 17:36:23 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 17:36:23 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 17:36:23 - Version select: select id from event_step where id=? -2024-08-07 17:36:23 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 17:36:23 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 17:36:23 - Delete (0): delete from event_step where id=? -2024-08-07 17:36:23 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 17:36:23 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@42cf5a6f] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@7bbc11ed] -2024-08-07 17:36:23 - Checking 0 named HQL queries -2024-08-07 17:36:23 - Checking 0 named SQL queries -2024-08-07 17:36:23 - - drop table if exists action cascade -2024-08-07 17:36:23 - - drop table if exists bill_action cascade -2024-08-07 17:36:23 - - drop table if exists event cascade -2024-08-07 17:36:23 - - drop table if exists event_step cascade -2024-08-07 17:36:23 - - drop table if exists member_action cascade -2024-08-07 17:36:23 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 17:36:23 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 17:36:23 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 17:36:23 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 17:36:23 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 17:36:23 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 17:36:23 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 17:36:23 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 17:36:23 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 17:36:23 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@27ada0e8 -2024-08-07 17:36:23 - Registering SessionFactory: 068e9fe1-0876-4a10-86ca-b846f838e3f4 (<unnamed>) -2024-08-07 17:36:23 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 17:36:23 - Instantiated SessionFactory -2024-08-07 17:36:23 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'actionService' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 17:36:23 - Initializing JpaMetamodelMappingContext… -2024-08-07 17:36:23 - Finished initializing JpaMetamodelMappingContext -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - Statistics initialized [enabled=false] -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 17:36:23 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 17:36:23 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 17:36:23 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:36:23 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - Looking up named query BillAction.findByAction_Event -2024-08-07 17:36:23 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:36:23 - Did not find named query BillAction.findByAction_Event -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - Looking up named query BillAction.findByAction_Id -2024-08-07 17:36:23 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:36:23 - Did not find named query BillAction.findByAction_Id -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 17:36:23 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:36:23 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 17:36:23 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:36:23 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 17:36:23 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:36:23 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 17:36:23 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 17:36:23 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:36:23 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 17:36:23 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:36:23 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 17:36:23 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 17:36:23 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 17:36:23 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 17:36:23 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:36:23 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 17:36:23 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:36:23 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(745754804277791)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(745754804277791)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(745754804277791)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(745754804277791)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(745754804277791).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:36:23 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:36:23 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 17:36:23 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:36:23 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:36:23 - Looking up named query MemberAction.findByAction -2024-08-07 17:36:23 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:36:23 - Did not find named query MemberAction.findByAction -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - Looking up named query Event.findByToken -2024-08-07 17:36:23 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:36:23 - Did not find named query Event.findByToken -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 17:36:23 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 17:36:23 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:36:23 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:36:23 - Did not find named query Action.findLastByEvent.count -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 17:36:23 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:36:23 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:36:23 - Looking up named query Action.findByIdAndEvent -2024-08-07 17:36:23 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:36:23 - Did not find named query Action.findByIdAndEvent -2024-08-07 17:36:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:36:23 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 17:36:23 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 17:36:23 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 17:36:23 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'eventService' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 17:36:23 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 17:36:23 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 17:36:23 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 17:36:23 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 17:36:23 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 17:36:23 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 17:36:23 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:36:23 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 17:36:23 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 17:36:23 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 17:36:23 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'actionController' -2024-08-07 17:36:23 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 17:36:23 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'eventController' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'authService' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 17:36:23 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 17:36:23 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 17:36:23 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 17:36:23 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 17:36:23 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:36:23 - Loaded expression factory via original TCCL -2024-08-07 17:36:23 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 17:36:23 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 17:36:23 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:36:23 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 17:36:23 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:36:23 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:36:23 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:36:23 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:36:23 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:36:23 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:36:23 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:36:23 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:36:23 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:36:23 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:36:23 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'error' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 17:36:23 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 17:36:23 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 17:36:23 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 17:36:23 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 17:36:23 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:36:23 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:36:23 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 17:36:23 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:36:23 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:36:23 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 17:36:23 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:36:23 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:36:23 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:36:23 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 17:36:23 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 17:36:23 - - s.h.p.EventController: - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) -2024-08-07 17:36:23 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 17:36:23 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 17:36:23 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 17:36:23 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:36:23 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 17:36:23 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:36:23 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:36:23 - 'beanNameHandlerMapping' {} -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 17:36:23 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:36:23 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 17:36:23 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 17:36:23 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:36:23 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:36:23 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 82 -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 82 -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 82 -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 84 -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 82 -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 82 -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:23 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 82 -2024-08-07 17:36:23 - RMI TCP Connection(1)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:23 - [javax.management.remote.rmi.RMIConnectionImpl@38393d19: connectionId=rmi://127.0.0.1 3] closing. -2024-08-07 17:36:23 - [javax.management.remote.rmi.RMIConnectionImpl@38393d19: connectionId=rmi://127.0.0.1 3] closed. -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 17:36:23 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:36:23 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 17:36:23 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 17:36:23 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 17:36:23 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:36:23 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:36:23 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:36:23 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 17:36:23 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:36:23 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 17:36:23 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 17:36:23 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 17:36:23 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 17:36:23 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 17:36:23 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 17:36:23 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 17:36:23 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:36:23 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 17:36:23 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 17:36:23 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 17:36:23 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 17:36:23 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 17:36:23 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:36:23 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 17:36:23 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:36:23 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 17:36:23 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 17:36:23 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 17:36:23 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 17:36:23 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 17:36:23 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 17:36:23 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 17:36:23 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 17:36:23 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 17:36:23 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 17:36:23 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 17:36:23 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 17:36:23 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 17:36:23 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:36:23 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 17:36:23 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 17:36:23 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 17:36:23 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 17:36:23 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 17:36:23 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 17:36:23 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 17:36:23 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 17:36:23 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 17:36:23 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 17:36:23 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 17:36:23 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:36:23 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:36:23 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 17:36:23 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 17:36:23 - Using SLF4J as the default logging framework -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 17:36:23 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 17:36:23 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 17:36:23 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 17:36:23 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 17:36:23 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 17:36:23 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 17:36:23 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 17:36:23 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 17:36:23 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 17:36:23 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 17:36:23 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 17:36:23 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 17:36:23 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 17:36:23 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 17:36:23 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 17:36:23 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 17:36:23 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 17:36:23 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 17:36:23 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:36:23 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:36:23 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 17:36:23 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 17:36:23 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 17:36:23 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:36:23 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:36:23 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 17:36:23 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 17:36:23 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 17:36:24 - Registering beans for JMX exposure on startup -2024-08-07 17:36:24 - Auto-detecting user-defined JMX MBeans -2024-08-07 17:36:24 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 17:36:24 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 17:36:24 - Starting beans in phase -2147483647 -2024-08-07 17:36:24 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 17:36:24 - Starting beans in phase 2147481599 -2024-08-07 17:36:24 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 17:36:24 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 17:36:24 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 17:36:24 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 17:36:24 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 17:36:24 - Successfully started bean 'webServerStartStop' -2024-08-07 17:36:24 - Starting beans in phase 2147482623 -2024-08-07 17:36:24 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 17:36:24 - Starting beans in phase 2147483647 -2024-08-07 17:36:24 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 17:36:24 - Started HaengdongApplication in 2.219 seconds (process running for 2.415) -2024-08-07 17:36:24 - Application availability state LivenessState changed to CORRECT -2024-08-07 17:36:24 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 17:36:24 - RMI TCP Connection(1)-127.0.0.1: (port 49730) connection closed -2024-08-07 17:36:24 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=49731,localport=49730] -2024-08-07 17:36:24 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:49732] -2024-08-07 17:36:24 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=49731,localport=49730] -2024-08-07 17:36:24 - RMI TCP Connection(2)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:49733] -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: (port 49730) op = 84 -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:36:24 - RMI TCP Connection(3)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - [javax.management.remote.rmi.RMIConnectionImpl@26698712: connectionId=rmi://127.0.0.1 4] closing. -2024-08-07 17:36:24 - [javax.management.remote.rmi.RMIConnectionImpl@26698712: connectionId=rmi://127.0.0.1 4] closed. -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:49735] -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: accepted socket from [127.0.0.1:49734] -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 84 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 84 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - [javax.management.remote.rmi.RMIConnectionImpl@ae3bbff: connectionId=rmi://127.0.0.1 5] closing. -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - [javax.management.remote.rmi.RMIConnectionImpl@ae3bbff: connectionId=rmi://127.0.0.1 5] closed. -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 84 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - [javax.management.remote.rmi.RMIConnectionImpl@36f12fdc: connectionId=rmi://127.0.0.1 6] closing. -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - [javax.management.remote.rmi.RMIConnectionImpl@36f12fdc: connectionId=rmi://127.0.0.1 6] closed. -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - [javax.management.remote.rmi.RMIConnectionImpl@5c1cddc3: connectionId=rmi://127.0.0.1 7] closing. -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - [javax.management.remote.rmi.RMIConnectionImpl@5c1cddc3: connectionId=rmi://127.0.0.1 7] closed. -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 84 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - [javax.management.remote.rmi.RMIConnectionImpl@5d90cc70: connectionId=rmi://127.0.0.1 8] closing. -2024-08-07 17:36:24 - [javax.management.remote.rmi.RMIConnectionImpl@5d90cc70: connectionId=rmi://127.0.0.1 8] closed. -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 82 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 84 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 84 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - [javax.management.remote.rmi.RMIConnectionImpl@2e68eaea: connectionId=rmi://127.0.0.1 9] closing. -2024-08-07 17:36:24 - [javax.management.remote.rmi.RMIConnectionImpl@2e68eaea: connectionId=rmi://127.0.0.1 9] closed. -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - [javax.management.remote.rmi.RMIConnectionImpl@141e8e8: connectionId=rmi://127.0.0.1 10] closing. -2024-08-07 17:36:24 - [javax.management.remote.rmi.RMIConnectionImpl@141e8e8: connectionId=rmi://127.0.0.1 10] closed. -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 84 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 84 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - Fetching JDBC Connection from DataSource -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:36:24 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 17:36:24 - Fetching JDBC Connection from DataSource -2024-08-07 17:36:24 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 17:36:24 - Initializing Servlet 'dispatcherServlet' -2024-08-07 17:36:24 - Detected StandardServletMultipartResolver -2024-08-07 17:36:24 - Detected AcceptHeaderLocaleResolver -2024-08-07 17:36:24 - Detected FixedThemeResolver -2024-08-07 17:36:24 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@1ec22804 -2024-08-07 17:36:24 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@5858054c -2024-08-07 17:36:24 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 17:36:24 - Completed initialization in 2 ms -2024-08-07 17:36:24 - RMI TCP Connection(5)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - [javax.management.remote.rmi.RMIConnectionImpl@282890f1: connectionId=rmi://127.0.0.1 11] closing. -2024-08-07 17:36:24 - [javax.management.remote.rmi.RMIConnectionImpl@282890f1: connectionId=rmi://127.0.0.1 11] closed. -2024-08-07 17:36:24 - RMI TCP Connection(4)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:36:24 - [javax.management.remote.rmi.RMIConnectionImpl@3edae1c: connectionId=rmi://127.0.0.1 12] closing. -2024-08-07 17:36:24 - [javax.management.remote.rmi.RMIConnectionImpl@3edae1c: connectionId=rmi://127.0.0.1 12] closed. -2024-08-07 17:36:27 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.9315050691981112239/conf/jaspic-providers.xml] -2024-08-07 17:36:27 - POST "/api/events", parameters={} -2024-08-07 17:36:27 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:36:27 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:27 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=1234]] -2024-08-07 17:36:27 - Found thread-bound EntityManager [SessionImpl(1681305896<open>)] for JPA transaction -2024-08-07 17:36:27 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 17:36:27 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:36:27 - begin -2024-08-07 17:36:27 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@4af41a09] -2024-08-07 17:36:27 - Found thread-bound EntityManager [SessionImpl(1681305896<open>)] for JPA transaction -2024-08-07 17:36:27 - Participating in existing transaction -2024-08-07 17:36:27 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 17:36:27 - Executing identity-insert immediately -2024-08-07 17:36:27 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 17:36:27 - Initializer list is empty -2024-08-07 17:36:27 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@10a100ca -2024-08-07 17:36:27 - Extracted JDBC value [0] - [1] -2024-08-07 17:36:27 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@3d5ed5c9 -2024-08-07 17:36:27 - Initiating transaction commit -2024-08-07 17:36:27 - Committing JPA transaction on EntityManager [SessionImpl(1681305896<open>)] -2024-08-07 17:36:27 - committing -2024-08-07 17:36:27 - Processing flush-time cascades -2024-08-07 17:36:27 - Dirty checking collections -2024-08-07 17:36:27 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 17:36:27 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 17:36:27 - Listing entities: -2024-08-07 17:36:27 - server.haengdong.domain.event.Event{password=1234, name=1234, id=1, token=86f77d41-28aa-4cf7-aaac-6c82acd5be27} -2024-08-07 17:36:27 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:36:27 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:36:27 - Writing [EventResponse[eventId=86f77d41-28aa-4cf7-aaac-6c82acd5be27]] -2024-08-07 17:36:27 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:27 - Completed 200 OK -2024-08-07 17:36:39 - POST "/api/events", parameters={} -2024-08-07 17:36:39 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:36:39 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:39 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=asdfa, password=1234]] -2024-08-07 17:36:39 - Found thread-bound EntityManager [SessionImpl(1894406735<open>)] for JPA transaction -2024-08-07 17:36:39 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 17:36:39 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:36:39 - begin -2024-08-07 17:36:39 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@35e8da36] -2024-08-07 17:36:39 - Found thread-bound EntityManager [SessionImpl(1894406735<open>)] for JPA transaction -2024-08-07 17:36:39 - Participating in existing transaction -2024-08-07 17:36:39 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 17:36:39 - Executing identity-insert immediately -2024-08-07 17:36:39 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 17:36:39 - Initializer list is empty -2024-08-07 17:36:39 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@2fd7d406 -2024-08-07 17:36:39 - Extracted JDBC value [0] - [2] -2024-08-07 17:36:39 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@296f1b1f -2024-08-07 17:36:39 - Initiating transaction commit -2024-08-07 17:36:39 - Committing JPA transaction on EntityManager [SessionImpl(1894406735<open>)] -2024-08-07 17:36:39 - committing -2024-08-07 17:36:39 - Processing flush-time cascades -2024-08-07 17:36:39 - Dirty checking collections -2024-08-07 17:36:39 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 17:36:39 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 17:36:39 - Listing entities: -2024-08-07 17:36:39 - server.haengdong.domain.event.Event{password=1234, name=asdfa, id=2, token=6120383b-eb75-4d38-ba06-94a480099ddb} -2024-08-07 17:36:39 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:36:39 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:36:39 - Writing [EventResponse[eventId=6120383b-eb75-4d38-ba06-94a480099ddb]] -2024-08-07 17:36:39 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:39 - Completed 200 OK -2024-08-07 17:36:39 - OPTIONS "/api/events/86f77d41-28aa-4cf7-aaac-6c82acd5be27", parameters={} -2024-08-07 17:36:39 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:36:39 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:39 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:39 - Completed 200 OK -2024-08-07 17:36:39 - OPTIONS "/api/events/86f77d41-28aa-4cf7-aaac-6c82acd5be27/actions", parameters={} -2024-08-07 17:36:39 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:36:39 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:39 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:39 - Completed 200 OK -2024-08-07 17:36:39 - GET "/api/events/86f77d41-28aa-4cf7-aaac-6c82acd5be27", parameters={} -2024-08-07 17:36:39 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:36:39 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:39 - GET "/api/events/86f77d41-28aa-4cf7-aaac-6c82acd5be27/actions", parameters={} -2024-08-07 17:36:39 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:36:39 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:39 - Found thread-bound EntityManager [SessionImpl(482283405<open>)] for JPA transaction -2024-08-07 17:36:39 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:36:39 - Found thread-bound EntityManager [SessionImpl(1608416608<open>)] for JPA transaction -2024-08-07 17:36:39 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:36:39 - Setting JDBC Connection [HikariProxyConnection@1541534275 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:36:39 - Setting JDBC Connection [HikariProxyConnection@1999220623 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:36:39 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:36:39 - begin -2024-08-07 17:36:39 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:36:39 - begin -2024-08-07 17:36:39 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@1e56fa1d] -2024-08-07 17:36:39 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@3eb45e7d] -2024-08-07 17:36:39 - Created new SQL alias : e1_0 -2024-08-07 17:36:39 - Created new SQL alias : e1_0 -2024-08-07 17:36:39 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745754822458041))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:36:39 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745754822458041))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:36:39 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@7263ab8f -2024-08-07 17:36:39 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@6570c1a8 -2024-08-07 17:36:39 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745754822458041).token) -2024-08-07 17:36:39 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745754822458041).token) -2024-08-07 17:36:39 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745754822458041)] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745754822458041).token] - -2024-08-07 17:36:39 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745754822458041)] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745754822458041).token] - -2024-08-07 17:36:39 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745754822458041)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:36:39 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745754822458041)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:36:39 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:36:39 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:36:39 - Initializer list: - server.haengdong.domain.event.Event(745754822458041) -> EntityResultInitializer(server.haengdong.domain.event.Event(745754822458041))@1618215233 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:36:39 - Initializer list: - server.haengdong.domain.event.Event(745754822458041) -> EntityResultInitializer(server.haengdong.domain.event.Event(745754822458041))@1278870289 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:36:39 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:36:39 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:36:39 - Extracted JDBC value [0] - [1] -2024-08-07 17:36:39 - Extracted JDBC value [0] - [1] -2024-08-07 17:36:39 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745754822458041)): 1 -2024-08-07 17:36:39 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745754822458041)): 1 -2024-08-07 17:36:39 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745754822458041)#1] : 77244513 -2024-08-07 17:36:39 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745754822458041)#1] : 272547238 -2024-08-07 17:36:39 - Extracted JDBC value [1] - [1234] -2024-08-07 17:36:39 - Extracted JDBC value [1] - [1234] -2024-08-07 17:36:39 - Extracted JDBC value [2] - [1234] -2024-08-07 17:36:39 - Extracted JDBC value [2] - [1234] -2024-08-07 17:36:39 - Extracted JDBC value [3] - [86f77d41-28aa-4cf7-aaac-6c82acd5be27] -2024-08-07 17:36:39 - Extracted JDBC value [3] - [86f77d41-28aa-4cf7-aaac-6c82acd5be27] -2024-08-07 17:36:39 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745754822458041)#1 -2024-08-07 17:36:39 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745754822458041)#1 -2024-08-07 17:36:39 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@1269b9f6 -2024-08-07 17:36:39 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@2dcf312 -2024-08-07 17:36:39 - Initiating transaction commit -2024-08-07 17:36:39 - Committing JPA transaction on EntityManager [SessionImpl(482283405<open>)] -2024-08-07 17:36:39 - committing -2024-08-07 17:36:39 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1999220623 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:36:39 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:36:39 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:36:39 - Writing [EventDetailResponse[eventName=1234]] -2024-08-07 17:36:39 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:39 - Completed 200 OK -2024-08-07 17:36:39 - Created new SQL alias : ba1_0 -2024-08-07 17:36:39 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(745754664060541))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:36:39 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@25cd8e9b] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:36:39 - Created new SQL alias : a1_0 -2024-08-07 17:36:39 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@8b6db03] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:36:39 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@25cd8e9b] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:36:39 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@175fbd0e -2024-08-07 17:36:39 - Created new SQL alias : e1_0 -2024-08-07 17:36:39 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@5f8f64a5 -2024-08-07 17:36:39 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708).event(745754664090125) : event) -2024-08-07 17:36:39 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(745754664060541)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(745754664060541).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(745754664060541).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(745754664060541).title] - -2024-08-07 17:36:39 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(745754664060541)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708).event(745754664090125)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:36:39 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:36:39 - Initializer list: - server.haengdong.domain.action.BillAction(745754664060541).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(745754664060541).action.event)@1610234387 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@73077527) - server.haengdong.domain.action.BillAction(745754664060541).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(745754664060541).action)@1735294933 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@1525740076) - server.haengdong.domain.action.BillAction(745754664060541) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(745754664060541))@1414820291 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - -2024-08-07 17:36:39 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:36:39 - Created new SQL alias : ma1_0 -2024-08-07 17:36:39 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction(m))] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 17:36:39 - Created new SQL alias : a1_0 -2024-08-07 17:36:39 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@47bc7835] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 17:36:39 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7d470b17] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 17:36:39 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@356195f8] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 17:36:39 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@356195f8] for NavigablePath [server.haengdong.domain.action.MemberAction(m).action(745754804277791).event] overrode previous registration : org.hibernate.sql.ast.tree.from.LazyTableGroup@7d470b17 -2024-08-07 17:36:39 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 17:36:39 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 17:36:39 - Determining mapping-model type for SqmPath : SqmEntityValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action(745754804277791).event) -2024-08-07 17:36:39 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction(m)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.MemberAction(m).action(745754804277791)] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction(m).status] - -2024-08-07 17:36:39 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction(m)) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction(m).action(745754804277791)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.MemberAction(m).action(745754804277791).event) { - } - join LazyTableGroup (e2 : server.haengdong.domain.action.MemberAction(m).action(745754804277791).event) { - } - } - } - } - } - } - } - -2024-08-07 17:36:39 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:36:39 - Initializer list: - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@1424134194 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(745754804277791) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745754804277791))@1218764310 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1909677231) - server.haengdong.domain.action.MemberAction(m).action(745754804277791).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745754804277791).event)@567196034 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@73077527) - -2024-08-07 17:36:39 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:36:39 - Initiating transaction commit -2024-08-07 17:36:39 - Committing JPA transaction on EntityManager [SessionImpl(1608416608<open>)] -2024-08-07 17:36:39 - committing -2024-08-07 17:36:39 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1541534275 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:36:39 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:36:39 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:36:39 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:36:39 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:39 - Completed 200 OK -2024-08-07 17:36:39 - RMI TCP Connection(3)-127.0.0.1: (port 49730) connection closed -2024-08-07 17:36:39 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=49733,localport=49730] -2024-08-07 17:36:39 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=49733,localport=49730] -2024-08-07 17:36:40 - OPTIONS "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb", parameters={} -2024-08-07 17:36:40 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:36:40 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:40 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:40 - Completed 200 OK -2024-08-07 17:36:40 - OPTIONS "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb/actions", parameters={} -2024-08-07 17:36:40 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:36:40 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:40 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:40 - Completed 200 OK -2024-08-07 17:36:40 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb", parameters={} -2024-08-07 17:36:40 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:36:40 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:40 - Found thread-bound EntityManager [SessionImpl(1858476702<open>)] for JPA transaction -2024-08-07 17:36:40 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:36:40 - Setting JDBC Connection [HikariProxyConnection@1794741150 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:36:40 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:36:40 - begin -2024-08-07 17:36:40 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@2ffb10a5] -2024-08-07 17:36:40 - Created new SQL alias : e1_0 -2024-08-07 17:36:40 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745754822458041))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:36:40 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@40d25b3c -2024-08-07 17:36:40 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745754822458041).token) -2024-08-07 17:36:40 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745754822458041)] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745754822458041).token] - -2024-08-07 17:36:40 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745754822458041)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:36:40 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:36:40 - Initializer list: - server.haengdong.domain.event.Event(745754822458041) -> EntityResultInitializer(server.haengdong.domain.event.Event(745754822458041))@1339355114 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:36:40 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:36:40 - Extracted JDBC value [0] - [2] -2024-08-07 17:36:40 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745754822458041)): 2 -2024-08-07 17:36:40 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745754822458041)#2] : 593052857 -2024-08-07 17:36:40 - Extracted JDBC value [1] - [asdfa] -2024-08-07 17:36:40 - Extracted JDBC value [2] - [1234] -2024-08-07 17:36:40 - Extracted JDBC value [3] - [6120383b-eb75-4d38-ba06-94a480099ddb] -2024-08-07 17:36:40 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745754822458041)#2 -2024-08-07 17:36:40 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@4b9a5487 -2024-08-07 17:36:40 - Initiating transaction commit -2024-08-07 17:36:40 - Committing JPA transaction on EntityManager [SessionImpl(1858476702<open>)] -2024-08-07 17:36:40 - committing -2024-08-07 17:36:40 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1794741150 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:36:40 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:36:40 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:36:40 - Writing [EventDetailResponse[eventName=asdfa]] -2024-08-07 17:36:40 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb/actions", parameters={} -2024-08-07 17:36:40 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:40 - Completed 200 OK -2024-08-07 17:36:40 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:36:40 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:40 - Found thread-bound EntityManager [SessionImpl(1262752297<open>)] for JPA transaction -2024-08-07 17:36:40 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:36:40 - Setting JDBC Connection [HikariProxyConnection@1333497753 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:36:40 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:36:40 - begin -2024-08-07 17:36:40 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@3bb9947b] -2024-08-07 17:36:40 - Created new SQL alias : e1_0 -2024-08-07 17:36:40 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745754822458041))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:36:40 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@28add3d2 -2024-08-07 17:36:40 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745754822458041).token) -2024-08-07 17:36:40 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745754822458041)] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745754822458041).token] - -2024-08-07 17:36:40 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745754822458041)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:36:40 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:36:40 - Initializer list: - server.haengdong.domain.event.Event(745754822458041) -> EntityResultInitializer(server.haengdong.domain.event.Event(745754822458041))@1977410239 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:36:40 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:36:40 - Extracted JDBC value [0] - [2] -2024-08-07 17:36:40 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745754822458041)): 2 -2024-08-07 17:36:40 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745754822458041)#2] : 1627400043 -2024-08-07 17:36:40 - Extracted JDBC value [1] - [asdfa] -2024-08-07 17:36:40 - Extracted JDBC value [2] - [1234] -2024-08-07 17:36:40 - Extracted JDBC value [3] - [6120383b-eb75-4d38-ba06-94a480099ddb] -2024-08-07 17:36:40 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745754822458041)#2 -2024-08-07 17:36:40 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@735be8ee -2024-08-07 17:36:40 - Created new SQL alias : ba1_0 -2024-08-07 17:36:40 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(745754664060541))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:36:40 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@454e62d4] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:36:40 - Created new SQL alias : a1_0 -2024-08-07 17:36:40 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@69fefe0b] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:36:40 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@454e62d4] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:36:40 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@175fbd0e -2024-08-07 17:36:40 - Created new SQL alias : e1_0 -2024-08-07 17:36:40 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@c699f24 -2024-08-07 17:36:40 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708).event(745754664090125) : event) -2024-08-07 17:36:40 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(745754664060541)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(745754664060541).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(745754664060541).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(745754664060541).title] - -2024-08-07 17:36:40 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(745754664060541)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708).event(745754664090125)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:36:40 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:36:40 - Initializer list: - server.haengdong.domain.action.BillAction(745754664060541).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(745754664060541).action.event)@623177034 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@73077527) - server.haengdong.domain.action.BillAction(745754664060541).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(745754664060541).action)@332030968 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@1525740076) - server.haengdong.domain.action.BillAction(745754664060541) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(745754664060541))@224053548 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - -2024-08-07 17:36:40 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:36:40 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:36:40 - Initializer list: - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@127331687 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(745754804277791) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745754804277791))@807997329 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1909677231) - server.haengdong.domain.action.MemberAction(m).action(745754804277791).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745754804277791).event)@220783388 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@73077527) - -2024-08-07 17:36:40 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:36:40 - Initiating transaction commit -2024-08-07 17:36:40 - Committing JPA transaction on EntityManager [SessionImpl(1262752297<open>)] -2024-08-07 17:36:40 - committing -2024-08-07 17:36:40 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1333497753 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:36:40 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:36:40 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:36:40 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:36:40 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:40 - Completed 200 OK -2024-08-07 17:36:42 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:36:42 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:36:42 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:36:42 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:36:45 - OPTIONS "/api/events/86f77d41-28aa-4cf7-aaac-6c82acd5be27/member-actions", parameters={} -2024-08-07 17:36:45 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:36:45 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:45 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:36:45 - Completed 200 OK -2024-08-07 17:36:45 - POST "/api/events/86f77d41-28aa-4cf7-aaac-6c82acd5be27/member-actions", parameters={} -2024-08-07 17:36:45 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:36:45 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 17:36:45 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:36:45 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 17:36:45 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 17:36:45 - Completed 401 UNAUTHORIZED -2024-08-07 17:36:52 - RMI TCP Connection(2)-127.0.0.1: (port 49730) connection closed -2024-08-07 17:36:52 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=49732,localport=49730] -2024-08-07 17:36:52 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=49732,localport=49730] -2024-08-07 17:36:52 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:36:52 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:36:54 - RMI TCP Connection(5)-127.0.0.1: (port 49730) connection closed -2024-08-07 17:36:54 - RMI TCP Connection(4)-127.0.0.1: (port 49730) connection closed -2024-08-07 17:36:54 - RMI TCP Connection(5)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=49734,localport=49730] -2024-08-07 17:36:54 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=49735,localport=49730] -2024-08-07 17:36:54 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=49735,localport=49730] -2024-08-07 17:36:54 - RMI TCP Connection(5)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=49734,localport=49730] -2024-08-07 17:37:15 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb", parameters={} -2024-08-07 17:37:15 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb/actions", parameters={} -2024-08-07 17:37:15 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:37:15 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:37:15 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:37:15 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:37:15 - Found thread-bound EntityManager [SessionImpl(1949004835<open>)] for JPA transaction -2024-08-07 17:37:15 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:37:15 - Found thread-bound EntityManager [SessionImpl(572153742<open>)] for JPA transaction -2024-08-07 17:37:15 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:37:15 - Setting JDBC Connection [HikariProxyConnection@523686777 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:37:15 - Setting JDBC Connection [HikariProxyConnection@1064924142 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:37:15 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:37:15 - begin -2024-08-07 17:37:15 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@22a4a238] -2024-08-07 17:37:15 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:37:15 - begin -2024-08-07 17:37:15 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@25dfac91] -2024-08-07 17:37:15 - Created new SQL alias : e1_0 -2024-08-07 17:37:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745754822458041))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:37:15 - Created new SQL alias : e1_0 -2024-08-07 17:37:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745754822458041))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:37:15 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@356dac67 -2024-08-07 17:37:15 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745754822458041).token) -2024-08-07 17:37:15 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@2095e4ba -2024-08-07 17:37:15 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745754822458041).token) -2024-08-07 17:37:15 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745754822458041)] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745754822458041).token] - -2024-08-07 17:37:15 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745754822458041)] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745754822458041).token] - -2024-08-07 17:37:15 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745754822458041)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:37:15 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745754822458041)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:37:15 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:37:15 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:37:15 - Initializer list: - server.haengdong.domain.event.Event(745754822458041) -> EntityResultInitializer(server.haengdong.domain.event.Event(745754822458041))@911957854 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:37:15 - Initializer list: - server.haengdong.domain.event.Event(745754822458041) -> EntityResultInitializer(server.haengdong.domain.event.Event(745754822458041))@145991751 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:37:15 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:37:15 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:37:15 - Extracted JDBC value [0] - [2] -2024-08-07 17:37:15 - Extracted JDBC value [0] - [2] -2024-08-07 17:37:15 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745754822458041)): 2 -2024-08-07 17:37:15 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745754822458041)): 2 -2024-08-07 17:37:15 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745754822458041)#2] : 219567510 -2024-08-07 17:37:15 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745754822458041)#2] : 1015689479 -2024-08-07 17:37:15 - Extracted JDBC value [1] - [asdfa] -2024-08-07 17:37:15 - Extracted JDBC value [1] - [asdfa] -2024-08-07 17:37:15 - Extracted JDBC value [2] - [1234] -2024-08-07 17:37:15 - Extracted JDBC value [3] - [6120383b-eb75-4d38-ba06-94a480099ddb] -2024-08-07 17:37:15 - Extracted JDBC value [2] - [1234] -2024-08-07 17:37:15 - Extracted JDBC value [3] - [6120383b-eb75-4d38-ba06-94a480099ddb] -2024-08-07 17:37:15 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745754822458041)#2 -2024-08-07 17:37:15 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745754822458041)#2 -2024-08-07 17:37:15 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@296e4741 -2024-08-07 17:37:15 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@615b4ac5 -2024-08-07 17:37:15 - Initiating transaction commit -2024-08-07 17:37:15 - Committing JPA transaction on EntityManager [SessionImpl(1949004835<open>)] -2024-08-07 17:37:15 - committing -2024-08-07 17:37:15 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@523686777 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:37:15 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:37:15 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:37:15 - Created new SQL alias : ba1_0 -2024-08-07 17:37:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(745754664060541))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:37:15 - Writing [EventDetailResponse[eventName=asdfa]] -2024-08-07 17:37:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@32f80054] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:37:15 - Created new SQL alias : a1_0 -2024-08-07 17:37:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@94e79ac] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:37:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@32f80054] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:37:15 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@175fbd0e -2024-08-07 17:37:15 - Created new SQL alias : e1_0 -2024-08-07 17:37:15 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@614d237b -2024-08-07 17:37:15 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708).event(745754664090125) : event) -2024-08-07 17:37:15 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:37:15 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(745754664060541)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(745754664060541).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(745754664060541).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(745754664060541).title] - -2024-08-07 17:37:15 - Completed 200 OK -2024-08-07 17:37:15 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(745754664060541)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708).event(745754664090125)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:37:15 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:37:15 - Initializer list: - server.haengdong.domain.action.BillAction(745754664060541).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(745754664060541).action.event)@1727972017 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@73077527) - server.haengdong.domain.action.BillAction(745754664060541).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(745754664060541).action)@343311514 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@1525740076) - server.haengdong.domain.action.BillAction(745754664060541) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(745754664060541))@1854868641 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - -2024-08-07 17:37:15 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:37:15 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:37:15 - Initializer list: - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@1496936866 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(745754804277791) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745754804277791))@1329955872 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1909677231) - server.haengdong.domain.action.MemberAction(m).action(745754804277791).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745754804277791).event)@540937684 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@73077527) - -2024-08-07 17:37:15 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:37:15 - Initiating transaction commit -2024-08-07 17:37:15 - Committing JPA transaction on EntityManager [SessionImpl(572153742<open>)] -2024-08-07 17:37:15 - committing -2024-08-07 17:37:15 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1064924142 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:37:15 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:37:15 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:37:15 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:37:15 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:37:15 - Completed 200 OK -2024-08-07 17:37:17 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:37:17 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:37:17 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:37:17 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:37:20 - OPTIONS "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb/member-actions", parameters={} -2024-08-07 17:37:20 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:37:20 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:37:20 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:37:20 - Completed 200 OK -2024-08-07 17:37:20 - POST "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb/member-actions", parameters={} -2024-08-07 17:37:20 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:37:20 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 17:37:20 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:37:20 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 17:37:20 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 17:37:20 - Completed 401 UNAUTHORIZED -2024-08-07 17:37:22 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:37:22 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:37:22 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:37:22 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:37:41 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb", parameters={} -2024-08-07 17:37:41 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb/actions", parameters={} -2024-08-07 17:37:41 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:37:41 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:37:41 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:37:41 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:37:41 - Found thread-bound EntityManager [SessionImpl(353832276<open>)] for JPA transaction -2024-08-07 17:37:41 - Found thread-bound EntityManager [SessionImpl(1537988261<open>)] for JPA transaction -2024-08-07 17:37:41 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:37:41 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:37:41 - Setting JDBC Connection [HikariProxyConnection@838307004 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:37:41 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:37:41 - begin -2024-08-07 17:37:41 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@78d51437] -2024-08-07 17:37:41 - Setting JDBC Connection [HikariProxyConnection@2098546119 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:37:41 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:37:41 - begin -2024-08-07 17:37:41 - HikariPool-1 - Connection not added, stats (total=10, active=2, idle=8, waiting=0) -2024-08-07 17:37:41 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@12d3c259] -2024-08-07 17:37:41 - Created new SQL alias : e1_0 -2024-08-07 17:37:41 - Created new SQL alias : e1_0 -2024-08-07 17:37:41 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745754822458041))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:37:41 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745754822458041))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:37:41 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@7a1ddca0 -2024-08-07 17:37:41 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@17c82058 -2024-08-07 17:37:41 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745754822458041).token) -2024-08-07 17:37:41 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745754822458041).token) -2024-08-07 17:37:41 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745754822458041)] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745754822458041).token] - -2024-08-07 17:37:41 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745754822458041)] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745754822458041).token] - -2024-08-07 17:37:41 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745754822458041)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:37:41 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745754822458041)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:37:41 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:37:41 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:37:41 - Initializer list: - server.haengdong.domain.event.Event(745754822458041) -> EntityResultInitializer(server.haengdong.domain.event.Event(745754822458041))@175518946 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:37:41 - Initializer list: - server.haengdong.domain.event.Event(745754822458041) -> EntityResultInitializer(server.haengdong.domain.event.Event(745754822458041))@1233937328 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:37:41 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:37:41 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:37:41 - Extracted JDBC value [0] - [2] -2024-08-07 17:37:41 - Extracted JDBC value [0] - [2] -2024-08-07 17:37:41 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745754822458041)): 2 -2024-08-07 17:37:41 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745754822458041)): 2 -2024-08-07 17:37:41 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745754822458041)#2] : 1826001960 -2024-08-07 17:37:41 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745754822458041)#2] : 720283844 -2024-08-07 17:37:41 - Extracted JDBC value [1] - [asdfa] -2024-08-07 17:37:41 - Extracted JDBC value [1] - [asdfa] -2024-08-07 17:37:41 - Extracted JDBC value [2] - [1234] -2024-08-07 17:37:41 - Extracted JDBC value [2] - [1234] -2024-08-07 17:37:41 - Extracted JDBC value [3] - [6120383b-eb75-4d38-ba06-94a480099ddb] -2024-08-07 17:37:41 - Extracted JDBC value [3] - [6120383b-eb75-4d38-ba06-94a480099ddb] -2024-08-07 17:37:41 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745754822458041)#2 -2024-08-07 17:37:41 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745754822458041)#2 -2024-08-07 17:37:41 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@57bc7c74 -2024-08-07 17:37:41 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@d5dfca -2024-08-07 17:37:41 - Initiating transaction commit -2024-08-07 17:37:41 - Committing JPA transaction on EntityManager [SessionImpl(1537988261<open>)] -2024-08-07 17:37:41 - committing -2024-08-07 17:37:41 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@2098546119 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:37:41 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:37:41 - Created new SQL alias : ba1_0 -2024-08-07 17:37:41 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:37:41 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(745754664060541))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:37:41 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@60be560e] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:37:41 - Writing [EventDetailResponse[eventName=asdfa]] -2024-08-07 17:37:41 - Created new SQL alias : a1_0 -2024-08-07 17:37:41 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5455c9b1] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:37:41 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@60be560e] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:37:41 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@175fbd0e -2024-08-07 17:37:41 - Created new SQL alias : e1_0 -2024-08-07 17:37:41 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@1966f3c2 -2024-08-07 17:37:41 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708).event(745754664090125) : event) -2024-08-07 17:37:41 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(745754664060541)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(745754664060541).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(745754664060541).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(745754664060541).title] - -2024-08-07 17:37:41 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:37:41 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(745754664060541)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708).event(745754664090125)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:37:41 - Completed 200 OK -2024-08-07 17:37:41 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:37:41 - Initializer list: - server.haengdong.domain.action.BillAction(745754664060541).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(745754664060541).action.event)@1303552856 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@73077527) - server.haengdong.domain.action.BillAction(745754664060541).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(745754664060541).action)@1605276358 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@1525740076) - server.haengdong.domain.action.BillAction(745754664060541) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(745754664060541))@625791171 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - -2024-08-07 17:37:41 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:37:41 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:37:41 - Initializer list: - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@839402809 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(745754804277791) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745754804277791))@1904296307 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1909677231) - server.haengdong.domain.action.MemberAction(m).action(745754804277791).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745754804277791).event)@1753743588 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@73077527) - -2024-08-07 17:37:41 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:37:41 - Initiating transaction commit -2024-08-07 17:37:41 - Committing JPA transaction on EntityManager [SessionImpl(353832276<open>)] -2024-08-07 17:37:41 - committing -2024-08-07 17:37:41 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@838307004 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:37:41 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:37:41 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:37:41 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:37:41 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:37:41 - Completed 200 OK -2024-08-07 17:37:42 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:37:42 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:37:42 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:37:42 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:37:45 - POST "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb/member-actions", parameters={} -2024-08-07 17:37:45 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:37:45 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 17:37:45 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:37:45 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 17:37:45 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 17:37:45 - Completed 401 UNAUTHORIZED -2024-08-07 17:37:47 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:37:47 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:37:52 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:37:52 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:38:14 - RMI TCP Connection(6)-127.0.0.1: accepted socket from [127.0.0.1:49750] -2024-08-07 17:38:14 - RMI TCP Connection(6)-127.0.0.1: (port 49730) op = 80 -2024-08-07 17:38:14 - RMI TCP Connection(6)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:38:14 - RMI TCP Connection(6)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:38:14 - RMI TCP Connection(6)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:38:14 - RMI TCP Connection(6)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:38:14 - RMI TCP Connection(6)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 17:38:22 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:38:22 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:38:29 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb", parameters={} -2024-08-07 17:38:29 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb/actions", parameters={} -2024-08-07 17:38:29 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:38:29 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:38:29 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:38:29 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:38:29 - Found thread-bound EntityManager [SessionImpl(1414791525<open>)] for JPA transaction -2024-08-07 17:38:29 - Found thread-bound EntityManager [SessionImpl(934316729<open>)] for JPA transaction -2024-08-07 17:38:29 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:38:29 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:38:29 - Setting JDBC Connection [HikariProxyConnection@95571731 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:38:29 - Setting JDBC Connection [HikariProxyConnection@2110439248 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:38:29 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:38:29 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:38:29 - begin -2024-08-07 17:38:29 - begin -2024-08-07 17:38:29 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@6dfaf36b] -2024-08-07 17:38:29 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@156163b] -2024-08-07 17:38:29 - Created new SQL alias : e1_0 -2024-08-07 17:38:29 - Created new SQL alias : e1_0 -2024-08-07 17:38:29 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745754822458041))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:38:29 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745754822458041))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:38:29 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@2464307c -2024-08-07 17:38:29 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@3cc81f77 -2024-08-07 17:38:29 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745754822458041).token) -2024-08-07 17:38:29 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745754822458041).token) -2024-08-07 17:38:29 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745754822458041)] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745754822458041).token] - -2024-08-07 17:38:29 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745754822458041)] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745754822458041).token] - -2024-08-07 17:38:29 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745754822458041)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:38:29 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745754822458041)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:38:29 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:38:29 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:38:29 - Initializer list: - server.haengdong.domain.event.Event(745754822458041) -> EntityResultInitializer(server.haengdong.domain.event.Event(745754822458041))@251437202 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:38:29 - Initializer list: - server.haengdong.domain.event.Event(745754822458041) -> EntityResultInitializer(server.haengdong.domain.event.Event(745754822458041))@1709554525 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:38:29 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:38:29 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:38:29 - Extracted JDBC value [0] - [2] -2024-08-07 17:38:29 - Extracted JDBC value [0] - [2] -2024-08-07 17:38:29 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745754822458041)): 2 -2024-08-07 17:38:29 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745754822458041)): 2 -2024-08-07 17:38:29 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745754822458041)#2] : 1714329157 -2024-08-07 17:38:29 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745754822458041)#2] : 1661122392 -2024-08-07 17:38:29 - Extracted JDBC value [1] - [asdfa] -2024-08-07 17:38:29 - Extracted JDBC value [1] - [asdfa] -2024-08-07 17:38:29 - Extracted JDBC value [2] - [1234] -2024-08-07 17:38:29 - Extracted JDBC value [2] - [1234] -2024-08-07 17:38:29 - Extracted JDBC value [3] - [6120383b-eb75-4d38-ba06-94a480099ddb] -2024-08-07 17:38:29 - Extracted JDBC value [3] - [6120383b-eb75-4d38-ba06-94a480099ddb] -2024-08-07 17:38:29 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745754822458041)#2 -2024-08-07 17:38:29 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745754822458041)#2 -2024-08-07 17:38:29 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@2ed9f68e -2024-08-07 17:38:29 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@811739a -2024-08-07 17:38:29 - Initiating transaction commit -2024-08-07 17:38:29 - Committing JPA transaction on EntityManager [SessionImpl(1414791525<open>)] -2024-08-07 17:38:29 - committing -2024-08-07 17:38:29 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@95571731 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:38:29 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:38:29 - Created new SQL alias : ba1_0 -2024-08-07 17:38:29 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(745754664060541))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:38:29 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:38:29 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@32bfef8a] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:38:29 - Created new SQL alias : a1_0 -2024-08-07 17:38:29 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@3131c7e4] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:38:29 - Writing [EventDetailResponse[eventName=asdfa]] -2024-08-07 17:38:29 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@32bfef8a] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:38:29 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@175fbd0e -2024-08-07 17:38:29 - Created new SQL alias : e1_0 -2024-08-07 17:38:29 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@7747d5e7 -2024-08-07 17:38:29 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708).event(745754664090125) : event) -2024-08-07 17:38:29 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(745754664060541)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(745754664060541).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(745754664060541).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(745754664060541).title] - -2024-08-07 17:38:29 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(745754664060541)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708).event(745754664090125)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:38:29 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:38:29 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:38:29 - Completed 200 OK -2024-08-07 17:38:29 - Initializer list: - server.haengdong.domain.action.BillAction(745754664060541).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(745754664060541).action.event)@904764305 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@73077527) - server.haengdong.domain.action.BillAction(745754664060541).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(745754664060541).action)@2028200217 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@1525740076) - server.haengdong.domain.action.BillAction(745754664060541) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(745754664060541))@1196562182 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - -2024-08-07 17:38:29 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:38:29 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:38:29 - Initializer list: - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@125716031 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(745754804277791) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745754804277791))@1346608113 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1909677231) - server.haengdong.domain.action.MemberAction(m).action(745754804277791).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745754804277791).event)@1020808180 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@73077527) - -2024-08-07 17:38:29 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:38:29 - Initiating transaction commit -2024-08-07 17:38:29 - Committing JPA transaction on EntityManager [SessionImpl(934316729<open>)] -2024-08-07 17:38:29 - committing -2024-08-07 17:38:29 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@2110439248 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:38:29 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:38:29 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:38:29 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:38:29 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:38:29 - Completed 200 OK -2024-08-07 17:38:29 - RMI TCP Connection(6)-127.0.0.1: (port 49730) connection closed -2024-08-07 17:38:29 - RMI TCP Connection(6)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=49750,localport=49730] -2024-08-07 17:38:29 - RMI TCP Connection(6)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=49750,localport=49730] -2024-08-07 17:38:32 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:38:32 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:38:32 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:38:32 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:38:33 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb", parameters={} -2024-08-07 17:38:33 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb/actions", parameters={} -2024-08-07 17:38:33 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:38:33 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:38:33 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:38:33 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:38:33 - Found thread-bound EntityManager [SessionImpl(613918771<open>)] for JPA transaction -2024-08-07 17:38:33 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:38:33 - Setting JDBC Connection [HikariProxyConnection@212865893 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:38:33 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:38:33 - begin -2024-08-07 17:38:33 - Found thread-bound EntityManager [SessionImpl(599037178<open>)] for JPA transaction -2024-08-07 17:38:33 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:38:33 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@195b8db5] -2024-08-07 17:38:33 - Setting JDBC Connection [HikariProxyConnection@185594794 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:38:33 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:38:33 - begin -2024-08-07 17:38:33 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@71a5631] -2024-08-07 17:38:33 - Created new SQL alias : e1_0 -2024-08-07 17:38:33 - Created new SQL alias : e1_0 -2024-08-07 17:38:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745754822458041))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:38:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745754822458041))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:38:33 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@71d6a3a3 -2024-08-07 17:38:33 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@57c18268 -2024-08-07 17:38:33 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745754822458041).token) -2024-08-07 17:38:33 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745754822458041).token) -2024-08-07 17:38:33 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745754822458041)] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745754822458041).token] - -2024-08-07 17:38:33 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745754822458041)] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745754822458041).token] - -2024-08-07 17:38:33 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745754822458041)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:38:33 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745754822458041)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:38:33 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:38:33 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:38:33 - Initializer list: - server.haengdong.domain.event.Event(745754822458041) -> EntityResultInitializer(server.haengdong.domain.event.Event(745754822458041))@1909298516 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:38:33 - Initializer list: - server.haengdong.domain.event.Event(745754822458041) -> EntityResultInitializer(server.haengdong.domain.event.Event(745754822458041))@558713280 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:38:33 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:38:33 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:38:33 - Extracted JDBC value [0] - [2] -2024-08-07 17:38:33 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745754822458041)): 2 -2024-08-07 17:38:33 - Extracted JDBC value [0] - [2] -2024-08-07 17:38:33 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745754822458041)): 2 -2024-08-07 17:38:33 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745754822458041)#2] : 1874790701 -2024-08-07 17:38:33 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745754822458041)#2] : 1371210005 -2024-08-07 17:38:33 - Extracted JDBC value [1] - [asdfa] -2024-08-07 17:38:33 - Extracted JDBC value [1] - [asdfa] -2024-08-07 17:38:33 - Extracted JDBC value [2] - [1234] -2024-08-07 17:38:33 - Extracted JDBC value [2] - [1234] -2024-08-07 17:38:33 - Extracted JDBC value [3] - [6120383b-eb75-4d38-ba06-94a480099ddb] -2024-08-07 17:38:33 - Extracted JDBC value [3] - [6120383b-eb75-4d38-ba06-94a480099ddb] -2024-08-07 17:38:33 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745754822458041)#2 -2024-08-07 17:38:33 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@1a7341ab -2024-08-07 17:38:33 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745754822458041)#2 -2024-08-07 17:38:33 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@72c556bb -2024-08-07 17:38:33 - Initiating transaction commit -2024-08-07 17:38:33 - Committing JPA transaction on EntityManager [SessionImpl(613918771<open>)] -2024-08-07 17:38:33 - committing -2024-08-07 17:38:33 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@212865893 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:38:33 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:38:33 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:38:33 - Writing [EventDetailResponse[eventName=asdfa]] -2024-08-07 17:38:33 - Created new SQL alias : ba1_0 -2024-08-07 17:38:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(745754664060541))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:38:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@bae792b] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:38:33 - Created new SQL alias : a1_0 -2024-08-07 17:38:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5386866b] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:38:33 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:38:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@bae792b] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:38:33 - Completed 200 OK -2024-08-07 17:38:33 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@175fbd0e -2024-08-07 17:38:33 - Created new SQL alias : e1_0 -2024-08-07 17:38:33 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@7cd1f197 -2024-08-07 17:38:33 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708).event(745754664090125) : event) -2024-08-07 17:38:33 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(745754664060541)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(745754664060541).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(745754664060541).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(745754664060541).title] - -2024-08-07 17:38:33 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(745754664060541)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708).event(745754664090125)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:38:33 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:38:33 - Initializer list: - server.haengdong.domain.action.BillAction(745754664060541).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(745754664060541).action.event)@1139515699 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@73077527) - server.haengdong.domain.action.BillAction(745754664060541).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(745754664060541).action)@1005907780 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@1525740076) - server.haengdong.domain.action.BillAction(745754664060541) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(745754664060541))@1546027919 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - -2024-08-07 17:38:33 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:38:33 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:38:33 - Initializer list: - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@215038470 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(745754804277791) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745754804277791))@720681599 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1909677231) - server.haengdong.domain.action.MemberAction(m).action(745754804277791).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745754804277791).event)@40328014 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@73077527) - -2024-08-07 17:38:33 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:38:33 - Initiating transaction commit -2024-08-07 17:38:33 - Committing JPA transaction on EntityManager [SessionImpl(599037178<open>)] -2024-08-07 17:38:33 - committing -2024-08-07 17:38:33 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@185594794 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:38:33 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:38:33 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:38:33 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:38:33 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:38:33 - Completed 200 OK -2024-08-07 17:38:37 - POST "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb/member-actions", parameters={} -2024-08-07 17:38:37 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:38:37 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 17:38:37 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:38:37 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 17:38:37 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 17:38:37 - Completed 401 UNAUTHORIZED -2024-08-07 17:38:37 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:38:37 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:38:41 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb", parameters={} -2024-08-07 17:38:41 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:38:41 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:38:41 - Found thread-bound EntityManager [SessionImpl(1775444997<open>)] for JPA transaction -2024-08-07 17:38:41 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:38:41 - Setting JDBC Connection [HikariProxyConnection@751941467 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:38:41 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:38:41 - begin -2024-08-07 17:38:41 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@15b81553] -2024-08-07 17:38:41 - Created new SQL alias : e1_0 -2024-08-07 17:38:41 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745754822458041))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:38:41 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@1d37bd39 -2024-08-07 17:38:41 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745754822458041).token) -2024-08-07 17:38:41 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745754822458041)] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745754822458041).token] - -2024-08-07 17:38:41 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745754822458041)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:38:41 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:38:41 - Initializer list: - server.haengdong.domain.event.Event(745754822458041) -> EntityResultInitializer(server.haengdong.domain.event.Event(745754822458041))@431611477 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:38:41 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:38:41 - Extracted JDBC value [0] - [2] -2024-08-07 17:38:41 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745754822458041)): 2 -2024-08-07 17:38:41 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745754822458041)#2] : 1219522651 -2024-08-07 17:38:41 - Extracted JDBC value [1] - [asdfa] -2024-08-07 17:38:41 - Extracted JDBC value [2] - [1234] -2024-08-07 17:38:41 - Extracted JDBC value [3] - [6120383b-eb75-4d38-ba06-94a480099ddb] -2024-08-07 17:38:41 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745754822458041)#2 -2024-08-07 17:38:41 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@1f2c546e -2024-08-07 17:38:41 - Initiating transaction commit -2024-08-07 17:38:41 - Committing JPA transaction on EntityManager [SessionImpl(1775444997<open>)] -2024-08-07 17:38:41 - committing -2024-08-07 17:38:41 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@751941467 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:38:41 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:38:41 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:38:41 - Writing [EventDetailResponse[eventName=asdfa]] -2024-08-07 17:38:41 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:38:41 - Completed 200 OK -2024-08-07 17:38:41 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb/actions", parameters={} -2024-08-07 17:38:41 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:38:41 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:38:41 - Found thread-bound EntityManager [SessionImpl(1531166618<open>)] for JPA transaction -2024-08-07 17:38:41 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:38:41 - Setting JDBC Connection [HikariProxyConnection@852903111 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:38:41 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:38:41 - begin -2024-08-07 17:38:41 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@2b710076] -2024-08-07 17:38:41 - Created new SQL alias : e1_0 -2024-08-07 17:38:41 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745754822458041))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:38:41 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@376df777 -2024-08-07 17:38:41 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745754822458041).token) -2024-08-07 17:38:41 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745754822458041)] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745754822458041).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745754822458041).token] - -2024-08-07 17:38:41 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745754822458041)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:38:41 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:38:41 - Initializer list: - server.haengdong.domain.event.Event(745754822458041) -> EntityResultInitializer(server.haengdong.domain.event.Event(745754822458041))@1387622156 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:38:41 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:38:41 - Extracted JDBC value [0] - [2] -2024-08-07 17:38:41 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745754822458041)): 2 -2024-08-07 17:38:41 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745754822458041)#2] : 240900136 -2024-08-07 17:38:41 - Extracted JDBC value [1] - [asdfa] -2024-08-07 17:38:41 - Extracted JDBC value [2] - [1234] -2024-08-07 17:38:41 - Extracted JDBC value [3] - [6120383b-eb75-4d38-ba06-94a480099ddb] -2024-08-07 17:38:41 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745754822458041)#2 -2024-08-07 17:38:41 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@77ef1be0 -2024-08-07 17:38:41 - Created new SQL alias : ba1_0 -2024-08-07 17:38:41 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(745754664060541))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:38:41 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@9ffa3e9] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:38:41 - Created new SQL alias : a1_0 -2024-08-07 17:38:41 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6c0892d] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:38:41 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@9ffa3e9] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:38:41 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@175fbd0e -2024-08-07 17:38:41 - Created new SQL alias : e1_0 -2024-08-07 17:38:41 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@22e2b183 -2024-08-07 17:38:41 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708).event(745754664090125) : event) -2024-08-07 17:38:41 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(745754664060541)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(745754664060541).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(745754664060541).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(745754664060541).title] - -2024-08-07 17:38:41 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(745754664060541)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(745754664060541).action(745754664082708).event(745754664090125)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:38:41 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:38:41 - Initializer list: - server.haengdong.domain.action.BillAction(745754664060541).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(745754664060541).action.event)@1166797889 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@73077527) - server.haengdong.domain.action.BillAction(745754664060541).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(745754664060541).action)@832565234 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@1525740076) - server.haengdong.domain.action.BillAction(745754664060541) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(745754664060541))@856985869 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - -2024-08-07 17:38:41 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:38:41 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:38:41 - Initializer list: - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@475877232 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(745754804277791) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745754804277791))@198584591 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1909677231) - server.haengdong.domain.action.MemberAction(m).action(745754804277791).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745754804277791).event)@1164457629 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@73077527) - -2024-08-07 17:38:41 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:38:41 - Initiating transaction commit -2024-08-07 17:38:41 - Committing JPA transaction on EntityManager [SessionImpl(1531166618<open>)] -2024-08-07 17:38:41 - committing -2024-08-07 17:38:41 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@852903111 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:38:41 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:38:41 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:38:41 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:38:41 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:38:41 - Completed 200 OK -2024-08-07 17:38:42 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:38:42 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:38:42 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:38:42 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:38:43 - POST "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb/member-actions", parameters={} -2024-08-07 17:38:43 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:38:43 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 17:38:43 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:38:43 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 17:38:43 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 17:38:43 - Completed 401 UNAUTHORIZED -2024-08-07 17:38:47 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:38:47 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:38:52 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:38:52 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:39:12 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 17:39:12 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Wed Aug 07 17:36:22 KST 2024 -2024-08-07 17:39:12 - Stopping beans in phase 2147483647 -2024-08-07 17:39:12 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 17:39:12 - Stopping beans in phase 2147482623 -2024-08-07 17:39:12 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 17:39:12 - Stopping beans in phase 2147481599 -2024-08-07 17:39:12 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 17:39:12 - Stopping beans in phase -2147483647 -2024-08-07 17:39:12 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 17:39:12 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 17:39:12 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 17:39:12 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 17:39:12 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 17:39:12 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 17:39:12 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 17:39:12 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 17:39:12 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 17:39:12 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 17:39:12 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 17:39:12 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 17:39:12 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 17:39:12 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 17:39:12 - Unregistering JMX-exposed beans on shutdown -2024-08-07 17:39:12 - Unregistering JMX-exposed beans -2024-08-07 17:39:12 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 17:39:12 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 17:39:12 - HHH000031: Closing -2024-08-07 17:39:12 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@7060793f] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@7bbc11ed] -2024-08-07 17:39:12 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 17:39:12 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 17:39:12 - HikariPool-1 - Shutdown initiated... -2024-08-07 17:39:12 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:39:12 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:39:12 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:39:12 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:39:12 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:39:12 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:39:12 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:39:12 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:39:12 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:39:12 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:39:12 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 17:39:12 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 17:39:12 - HikariPool-1 - Shutdown completed. -2024-08-07 17:39:12 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 17:39:14 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 17:39:14 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 17:39:14 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:39:14 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:39:14 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:39:14 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:39:14 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:39:14 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:39:14 - Loaded expression factory via original TCCL -2024-08-07 17:39:14 - Starting HaengdongApplication using Java 17.0.12 with PID 64658 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 17:39:14 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 17:39:14 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 17:39:14 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 17:39:14 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 17:39:14 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:39:14 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:39:14 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:39:14 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:39:14 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:39:14 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 17:39:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 17:39:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 17:39:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 17:39:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 17:39:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 17:39:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 17:39:14 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 17:39:14 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 17:39:14 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 17:39:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 17:39:14 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 17:39:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 17:39:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 17:39:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 17:39:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 17:39:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 17:39:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 17:39:14 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 17:39:14 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 17:39:14 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 17:39:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 17:39:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 17:39:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 17:39:14 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 17:39:14 - Finished Spring Data repository scanning in 15 ms. Found 4 JPA repository interfaces. -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 17:39:14 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 17:39:14 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 17:39:14 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 17:39:14 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 17:39:14 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 17:39:14 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 17:39:14 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 17:39:14 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 17:39:14 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@491cafec] -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 17:39:14 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 17:39:14 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 17:39:14 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 17:39:14 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 17:39:14 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 17:39:14 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 17:39:14 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 17:39:14 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 17:39:14 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:39:14 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:39:14 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 17:39:14 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 17:39:14 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 17:39:14 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 17:39:14 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:39:14 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:39:14 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:39:14 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 17:39:14 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 17:39:14 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 17:39:14 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 17:39:14 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 17:39:14 - Tomcat initialized with port 8080 (http) -2024-08-07 17:39:14 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@9690008] to [INITIALIZING] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@9690008] to [INITIALIZED] -2024-08-07 17:39:14 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 17:39:14 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 17:39:14 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.mapper.MapperListener@1a2e563e] to [INITIALIZING] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.mapper.MapperListener@1a2e563e] to [INITIALIZED] -2024-08-07 17:39:14 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 17:39:14 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 17:39:14 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 17:39:14 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 17:39:14 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 17:39:14 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 17:39:14 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@9690008] to [STARTING_PREP] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@9690008] to [STARTING] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@9690008] to [STARTED] -2024-08-07 17:39:14 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 17:39:14 - Starting service [Tomcat] -2024-08-07 17:39:14 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 17:39:14 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 17:39:14 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 17:39:14 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:39:14 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:39:14 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:39:14 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:39:14 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:39:14 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 17:39:14 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 17:39:14 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 17:39:14 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 17:39:14 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 17:39:14 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.webresources.StandardRoot@26c7b1c6] to [INITIALIZING] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.webresources.StandardRoot@26c7b1c6] to [INITIALIZED] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.webresources.StandardRoot@26c7b1c6] to [STARTING_PREP] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.webresources.DirResourceSet@70f148dc] to [INITIALIZING] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.webresources.DirResourceSet@70f148dc] to [INITIALIZED] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.webresources.DirResourceSet@70f148dc] to [STARTING_PREP] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.webresources.DirResourceSet@70f148dc] to [STARTING] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.webresources.DirResourceSet@70f148dc] to [STARTED] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.webresources.StandardRoot@26c7b1c6] to [STARTING] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.webresources.StandardRoot@26c7b1c6] to [STARTED] -2024-08-07 17:39:14 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:39:14 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:39:14 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:39:14 - Starting this Loader -2024-08-07 17:39:14 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:39:14 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:39:14 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:39:14 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:39:14 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:39:14 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:39:14 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:39:14 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:39:14 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:39:14 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:39:14 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:39:14 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:39:14 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:39:14 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:39:14 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:39:14 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:39:14 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:39:14 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 17:39:14 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4662752a] to [INITIALIZING] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4662752a] to [INITIALIZED] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4662752a] to [STARTING_PREP] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4662752a] to [STARTING] -2024-08-07 17:39:14 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4662752a] to [STARTED] -2024-08-07 17:39:14 - Initializing Spring embedded WebApplicationContext -2024-08-07 17:39:14 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 17:39:14 - Root WebApplicationContext: initialization completed in 605 ms -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:39:14 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 17:39:14 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 17:39:14 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 17:39:14 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:39:14 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 17:39:14 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:39:14 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 17:39:14 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:39:14 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:39:14 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:39:14 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:39:14 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 17:39:14 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 17:39:14 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 17:39:14 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 17:39:14 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:39:14 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 17:39:14 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 17:39:14 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 17:39:14 - HikariPool-1 - configuration: -2024-08-07 17:39:14 - allowPoolSuspension.............false -2024-08-07 17:39:14 - autoCommit......................true -2024-08-07 17:39:14 - catalog.........................none -2024-08-07 17:39:14 - connectionInitSql...............none -2024-08-07 17:39:14 - connectionTestQuery.............none -2024-08-07 17:39:14 - connectionTimeout...............30000 -2024-08-07 17:39:14 - dataSource......................none -2024-08-07 17:39:14 - dataSourceClassName.............none -2024-08-07 17:39:14 - dataSourceJNDI..................none -2024-08-07 17:39:14 - dataSourceProperties............{password=<masked>} -2024-08-07 17:39:14 - driverClassName................."org.h2.Driver" -2024-08-07 17:39:14 - exceptionOverrideClassName......none -2024-08-07 17:39:14 - healthCheckProperties...........{} -2024-08-07 17:39:14 - healthCheckRegistry.............none -2024-08-07 17:39:14 - idleTimeout.....................600000 -2024-08-07 17:39:14 - initializationFailTimeout.......1 -2024-08-07 17:39:14 - isolateInternalQueries..........false -2024-08-07 17:39:14 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 17:39:14 - keepaliveTime...................0 -2024-08-07 17:39:14 - leakDetectionThreshold..........0 -2024-08-07 17:39:14 - maxLifetime.....................1800000 -2024-08-07 17:39:14 - maximumPoolSize.................10 -2024-08-07 17:39:14 - metricRegistry..................none -2024-08-07 17:39:14 - metricsTrackerFactory...........none -2024-08-07 17:39:14 - minimumIdle.....................10 -2024-08-07 17:39:14 - password........................<masked> -2024-08-07 17:39:14 - poolName........................"HikariPool-1" -2024-08-07 17:39:14 - readOnly........................false -2024-08-07 17:39:14 - registerMbeans..................false -2024-08-07 17:39:14 - scheduledExecutor...............none -2024-08-07 17:39:14 - schema..........................none -2024-08-07 17:39:14 - threadFactory...................internal -2024-08-07 17:39:14 - transactionIsolation............default -2024-08-07 17:39:14 - username........................"sa" -2024-08-07 17:39:14 - validationTimeout...............5000 -2024-08-07 17:39:14 - HikariPool-1 - Starting... -2024-08-07 17:39:15 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 17:39:15 - HikariPool-1 - Start completed. -2024-08-07 17:39:15 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 17:39:15 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 17:39:15 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:39:15 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 17:39:15 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:39:15 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:39:15 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:39:15 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 17:39:15 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 17:39:15 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 17:39:15 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 17:39:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 17:39:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 17:39:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 17:39:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 17:39:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 17:39:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 17:39:15 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 17:39:15 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 17:39:15 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 17:39:15 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 17:39:15 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 17:39:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 17:39:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 17:39:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 17:39:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 17:39:15 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 17:39:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 17:39:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 17:39:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 17:39:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 17:39:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 17:39:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 17:39:15 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 17:39:15 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 17:39:15 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 17:39:15 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 17:39:15 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 17:39:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 17:39:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 17:39:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 17:39:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 17:39:15 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 17:39:15 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 17:39:15 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 17:39:15 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@580c17a0] to [INITIALIZING] -2024-08-07 17:39:15 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@580c17a0] to [INITIALIZED] -2024-08-07 17:39:15 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@580c17a0] to [STARTING_PREP] -2024-08-07 17:39:15 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@580c17a0] to [STARTING] -2024-08-07 17:39:15 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@580c17a0] to [STARTED] -2024-08-07 17:39:15 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 17:39:15 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 17:39:15 - Filter 'requestContextFilter' configured for use -2024-08-07 17:39:15 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 17:39:15 - Filter 'characterEncodingFilter' configured for use -2024-08-07 17:39:15 - Filter 'formContentFilter' configured for use -2024-08-07 17:39:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 17:39:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 17:39:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:39:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:39:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:39:15 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:39:15 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:39:15 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:39:15 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:39:15 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:39:15 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 17:39:15 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 17:39:15 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 17:39:15 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:39:15 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:39:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 17:39:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 17:39:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 17:39:15 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 17:39:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:39:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:39:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:39:15 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 17:39:15 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 17:39:15 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 17:39:15 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:39:15 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:39:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 17:39:15 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 17:39:15 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 17:39:15 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 17:39:15 - Setting state for [org.apache.catalina.mapper.MapperListener@1a2e563e] to [STARTING_PREP] -2024-08-07 17:39:15 - Setting state for [org.apache.catalina.mapper.MapperListener@1a2e563e] to [STARTING] -2024-08-07 17:39:15 - Registered host [localhost] -2024-08-07 17:39:15 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 17:39:15 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 17:39:15 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 17:39:15 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 17:39:15 - Setting state for [org.apache.catalina.mapper.MapperListener@1a2e563e] to [STARTED] -2024-08-07 17:39:15 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 17:39:15 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 17:39:15 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 17:39:15 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 17:39:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 17:39:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:39:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 17:39:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:49769] -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 84 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:15 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:15 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 17:39:15 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 17:39:15 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:15 - [javax.management.remote.rmi.RMIConnectionImpl@4b4c9715: connectionId=rmi://127.0.0.1 1] closing. -2024-08-07 17:39:15 - [javax.management.remote.rmi.RMIConnectionImpl@4b4c9715: connectionId=rmi://127.0.0.1 1] closed. -2024-08-07 17:39:15 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 17:39:15 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 17:39:15 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 17:39:15 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 17:39:15 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 17:39:15 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 17:39:15 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 17:39:15 - HHH000206: 'hibernate.properties' not found -2024-08-07 17:39:15 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 17:39:15 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 17:39:15 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 17:39:15 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 17:39:15 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 17:39:15 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 17:39:15 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 17:39:15 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 17:39:15 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 17:39:15 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 17:39:15 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 17:39:15 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 17:39:15 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 17:39:15 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 17:39:15 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 17:39:15 - HHH000026: Second-level cache disabled -2024-08-07 17:39:15 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 17:39:15 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 17:39:15 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 17:39:15 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 17:39:15 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 17:39:15 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 17:39:15 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 17:39:15 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 17:39:15 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 17:39:15 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 17:39:15 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 17:39:15 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 17:39:15 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 17:39:15 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 17:39:15 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 17:39:15 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 17:39:15 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 17:39:15 - Adding type registration image -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 17:39:15 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 17:39:15 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 17:39:15 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 17:39:15 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 17:39:15 - Adding type registration short -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 17:39:15 - Adding type registration short -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 17:39:15 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 17:39:15 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 17:39:15 - Adding type registration int -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 17:39:15 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 17:39:15 - Adding type registration long -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 17:39:15 - Adding type registration long -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 17:39:15 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 17:39:15 - Adding type registration float -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 17:39:15 - Adding type registration float -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 17:39:15 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 17:39:15 - Adding type registration double -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 17:39:15 - Adding type registration double -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 17:39:15 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 17:39:15 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 17:39:15 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 17:39:15 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 17:39:15 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 17:39:15 - Adding type registration character -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 17:39:15 - Adding type registration char -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 17:39:15 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 17:39:15 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 17:39:15 - Adding type registration string -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 17:39:15 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 17:39:15 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 17:39:15 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 17:39:15 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 17:39:15 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 17:39:15 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 17:39:15 - Adding type registration text -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 17:39:15 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 17:39:15 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 17:39:15 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 17:39:15 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 17:39:15 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 17:39:15 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 17:39:15 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 17:39:15 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 17:39:15 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 17:39:15 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 17:39:15 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 17:39:15 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 17:39:15 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 17:39:15 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 17:39:15 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 17:39:15 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 17:39:15 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 17:39:15 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 17:39:15 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 17:39:15 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 17:39:15 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 17:39:15 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 17:39:15 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 17:39:15 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 17:39:15 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 17:39:15 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 17:39:15 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 17:39:15 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 17:39:15 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 17:39:15 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 17:39:15 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 17:39:15 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 17:39:15 - Adding type registration date -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 17:39:15 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 17:39:15 - Adding type registration time -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 17:39:15 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 17:39:15 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 17:39:15 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 17:39:15 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 17:39:15 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 17:39:15 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 17:39:15 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 17:39:15 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 17:39:15 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 17:39:15 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 17:39:15 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 17:39:15 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 17:39:15 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 17:39:15 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 17:39:15 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 17:39:15 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 17:39:15 - Adding type registration class -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 17:39:15 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 17:39:15 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 17:39:15 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 17:39:15 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 17:39:15 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 17:39:15 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 17:39:15 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 17:39:15 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 17:39:15 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 17:39:15 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 17:39:15 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-07 17:39:15 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-07 17:39:15 - Adding type registration url -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 17:39:15 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 17:39:15 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-07 17:39:15 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-07 17:39:15 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 17:39:15 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 17:39:15 - Adding type registration object -> org.hibernate.type.JavaObjectType@ad5cffa -2024-08-07 17:39:15 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@ad5cffa -2024-08-07 17:39:15 - Adding type registration null -> org.hibernate.type.NullType@18ac4af6 -2024-08-07 17:39:15 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@117fb9ba -2024-08-07 17:39:15 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@2b1d1a5 -2024-08-07 17:39:15 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@41e7a544 -2024-08-07 17:39:15 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@3b66ac74 -2024-08-07 17:39:15 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@573870cb -2024-08-07 17:39:15 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@5b88af70 -2024-08-07 17:39:15 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@2739ecc0 -2024-08-07 17:39:15 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@2932e15f -2024-08-07 17:39:15 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@1e194966] into BootstrapContext; was [null] -2024-08-07 17:39:15 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@1e194966) [was null] -2024-08-07 17:39:15 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@34bddf43] into BootstrapContext; was [null] -2024-08-07 17:39:15 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@57839834] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@3355b8ff] -2024-08-07 17:39:15 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 17:39:15 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 17:39:15 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-07 17:39:15 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 17:39:15 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 17:39:15 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@1e194966] -2024-08-07 17:39:15 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@1e194966] -2024-08-07 17:39:15 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 17:39:15 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 17:39:15 - JDBC version : 4.2 -2024-08-07 17:39:15 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 17:39:15 - HikariPool-1 - After adding stats (total=5, active=1, idle=4, waiting=0) -2024-08-07 17:39:15 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 17:39:15 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 17:39:15 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 17:39:15 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 17:39:15 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 17:39:15 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 17:39:15 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 17:39:15 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 17:39:15 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 17:39:15 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 17:39:15 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 17:39:15 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@24f5e9e8] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@50e6ee24] -2024-08-07 17:39:15 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 17:39:15 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 17:39:15 - Import with entity name Action -2024-08-07 17:39:15 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 17:39:15 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:39:15 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 17:39:15 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 17:39:15 - Binding column: AnnotatedColumn() -2024-08-07 17:39:15 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:39:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:39:15 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:39:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 17:39:15 - building BasicValue for id -2024-08-07 17:39:15 - Skipping column re-registration: action.id -2024-08-07 17:39:15 - Building property id -2024-08-07 17:39:15 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:39:15 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:39:15 - Binding column: AnnotatedColumn() -2024-08-07 17:39:15 - Building property event -2024-08-07 17:39:15 - Binding column: AnnotatedColumn() -2024-08-07 17:39:15 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 17:39:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 17:39:15 - building BasicValue for sequence -2024-08-07 17:39:15 - Skipping column re-registration: action.sequence -2024-08-07 17:39:15 - Building property sequence -2024-08-07 17:39:15 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:39:15 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 17:39:15 - Import with entity name BillAction -2024-08-07 17:39:15 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 17:39:15 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:39:15 - Binding column: AnnotatedColumn() -2024-08-07 17:39:15 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:39:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:39:15 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:39:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 17:39:15 - building BasicValue for id -2024-08-07 17:39:15 - Skipping column re-registration: bill_action.id -2024-08-07 17:39:15 - Building property id -2024-08-07 17:39:15 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:39:15 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:39:15 - Binding column: AnnotatedColumn() -2024-08-07 17:39:15 - Building property action -2024-08-07 17:39:15 - Binding column: AnnotatedColumn() -2024-08-07 17:39:15 - MetadataSourceProcessor property price with lazy=false -2024-08-07 17:39:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 17:39:15 - building BasicValue for price -2024-08-07 17:39:15 - Skipping column re-registration: bill_action.price -2024-08-07 17:39:15 - Building property price -2024-08-07 17:39:15 - Binding column: AnnotatedColumn() -2024-08-07 17:39:15 - MetadataSourceProcessor property title with lazy=false -2024-08-07 17:39:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 17:39:15 - building BasicValue for title -2024-08-07 17:39:15 - Skipping column re-registration: bill_action.title -2024-08-07 17:39:15 - Building property title -2024-08-07 17:39:15 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:39:15 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 17:39:15 - Import with entity name MemberAction -2024-08-07 17:39:15 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 17:39:15 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:39:15 - Binding column: AnnotatedColumn() -2024-08-07 17:39:15 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:39:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:39:15 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:39:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 17:39:15 - building BasicValue for id -2024-08-07 17:39:15 - Skipping column re-registration: member_action.id -2024-08-07 17:39:15 - Building property id -2024-08-07 17:39:15 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:39:15 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:39:15 - Binding column: AnnotatedColumn() -2024-08-07 17:39:15 - Building property action -2024-08-07 17:39:15 - Binding column: AnnotatedColumn() -2024-08-07 17:39:15 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 17:39:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 17:39:15 - building BasicValue for memberGroupId -2024-08-07 17:39:15 - Skipping column re-registration: member_action.member_group_id -2024-08-07 17:39:15 - Building property memberGroupId -2024-08-07 17:39:15 - Binding column: AnnotatedColumn() -2024-08-07 17:39:15 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 17:39:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 17:39:15 - building BasicValue for memberName -2024-08-07 17:39:15 - Skipping column re-registration: member_action.member_name -2024-08-07 17:39:15 - Building property memberName -2024-08-07 17:39:15 - Binding column: AnnotatedColumn() -2024-08-07 17:39:15 - MetadataSourceProcessor property status with lazy=false -2024-08-07 17:39:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 17:39:15 - building BasicValue for status -2024-08-07 17:39:15 - Skipping column re-registration: member_action.status -2024-08-07 17:39:15 - Building property status -2024-08-07 17:39:15 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 17:39:15 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 17:39:15 - Import with entity name Event -2024-08-07 17:39:15 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 17:39:15 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:39:15 - Binding column: AnnotatedColumn() -2024-08-07 17:39:15 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:39:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:39:15 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:39:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 17:39:15 - building BasicValue for id -2024-08-07 17:39:15 - Skipping column re-registration: event.id -2024-08-07 17:39:15 - Building property id -2024-08-07 17:39:15 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:39:15 - Binding column: AnnotatedColumn() -2024-08-07 17:39:15 - MetadataSourceProcessor property name with lazy=false -2024-08-07 17:39:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 17:39:15 - building BasicValue for name -2024-08-07 17:39:15 - Skipping column re-registration: event.name -2024-08-07 17:39:15 - Building property name -2024-08-07 17:39:15 - Binding column: AnnotatedColumn() -2024-08-07 17:39:15 - MetadataSourceProcessor property password with lazy=false -2024-08-07 17:39:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 17:39:15 - building BasicValue for password -2024-08-07 17:39:15 - Skipping column re-registration: event.password -2024-08-07 17:39:15 - Building property password -2024-08-07 17:39:15 - Binding column: AnnotatedColumn() -2024-08-07 17:39:15 - MetadataSourceProcessor property token with lazy=false -2024-08-07 17:39:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 17:39:15 - building BasicValue for token -2024-08-07 17:39:15 - Skipping column re-registration: event.token -2024-08-07 17:39:15 - Building property token -2024-08-07 17:39:15 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 17:39:15 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 17:39:15 - Import with entity name EventStep -2024-08-07 17:39:15 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 17:39:15 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 17:39:15 - Binding column: AnnotatedColumn() -2024-08-07 17:39:15 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:39:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:39:15 - MetadataSourceProcessor property id with lazy=false -2024-08-07 17:39:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 17:39:15 - building BasicValue for id -2024-08-07 17:39:15 - Skipping column re-registration: event_step.id -2024-08-07 17:39:15 - Building property id -2024-08-07 17:39:15 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 17:39:15 - Binding column: AnnotatedJoinColumn() -2024-08-07 17:39:15 - Binding column: AnnotatedColumn() -2024-08-07 17:39:15 - Building property event -2024-08-07 17:39:15 - Binding column: AnnotatedColumn() -2024-08-07 17:39:15 - MetadataSourceProcessor property name with lazy=false -2024-08-07 17:39:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 17:39:15 - building BasicValue for name -2024-08-07 17:39:15 - Skipping column re-registration: event_step.name -2024-08-07 17:39:15 - Building property name -2024-08-07 17:39:15 - Binding column: AnnotatedColumn() -2024-08-07 17:39:15 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 17:39:15 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 17:39:15 - building BasicValue for sequence -2024-08-07 17:39:15 - Skipping column re-registration: event_step.sequence -2024-08-07 17:39:15 - Building property sequence -2024-08-07 17:39:15 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 17:39:15 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:39:15 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 17:39:15 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:39:15 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 17:39:15 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 17:39:15 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:39:15 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 17:39:15 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 17:39:15 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 17:39:15 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:39:15 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 17:39:15 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 17:39:15 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 17:39:15 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 17:39:15 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 17:39:15 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 17:39:15 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 17:39:15 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 17:39:15 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 17:39:15 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 17:39:15 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 17:39:15 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 17:39:15 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 17:39:15 - Building session factory -2024-08-07 17:39:15 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:39:15 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@697b48e4, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@137d04d8, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.7752291804353668768, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=64658, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.7752291804353668768, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@25b8f9d2, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 17:39:15 - Session factory constructed with filter configurations : {} -2024-08-07 17:39:15 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:39:15 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:39:15 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:39:15 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:39:15 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:39:15 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:39:15 - Loaded expression factory via original TCCL -2024-08-07 17:39:15 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:39:15 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:39:15 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:39:15 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:39:15 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:39:15 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:39:15 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:39:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:39:15 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:39:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:39:15 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:39:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:39:15 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:39:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:39:15 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:39:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:39:15 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:39:15 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 17:39:15 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@5db66c3] under count; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@4cd1716d] under every; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@3e1c5e0d] under any; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7fe0ca60] under sinh; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@fdf029a] under cosh; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@63896cf7] under tanh; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3f838072] under pi; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@46c9ee28] under log; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 17:39:15 - Registering alternate key : length -> character_length -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@62871522] under position; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@74e175c7] under overlay; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@71135794] under trim; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@2fc0ad21] under cast; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@639cb0c8] under collate; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@7f9d40b3] under extract; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@2ba9ed19] under ifnull; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@641cea11] under pad; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@192ecf8] under str; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@1b30b6f8] under format; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@a0bdbe2] under timestampadd; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@7c4a5ef2] under timestampdiff; prior registration was null -2024-08-07 17:39:15 - Registering alternate key : dateadd -> timestampadd -2024-08-07 17:39:15 - Registering alternate key : datediff -> timestampdiff -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@38e052b2] under current_date; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7fa68ff4] under current_time; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@515fff35] under current_timestamp; prior registration was null -2024-08-07 17:39:15 - Registering alternate key : current date -> current_date -2024-08-07 17:39:15 - Registering alternate key : current time -> current_time -2024-08-07 17:39:15 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5eb9bf7d] under local_date; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@64f613da] under local_time; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2f64f99f] under local_datetime; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16c1d11] under offset_datetime; prior registration was null -2024-08-07 17:39:15 - Registering alternate key : local date -> local_date -2024-08-07 17:39:15 - Registering alternate key : local time -> local_time -2024-08-07 17:39:15 - Registering alternate key : local datetime -> local_datetime -2024-08-07 17:39:15 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@123d0816] under instant; prior registration was null -2024-08-07 17:39:15 - Registering alternate key : current_instant -> instant -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@5543d800] under sql; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@1e033801] under count; prior registration was org.hibernate.dialect.function.CountFunction@5db66c3 -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@1be12e05] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3f838072 -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@66ab088c] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 17:39:15 - Registering alternate key : day -> day_of_month -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@64f613da -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@2f64f99f -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@55d87b73] under trunc; prior registration was null -2024-08-07 17:39:15 - Registering alternate key : truncate -> trunc -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@618e7761] under date_trunc; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 17:39:15 - Registering alternate key : chr -> char -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5b643d6e] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@62871522 -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@34f8ce89] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 17:39:15 - Registering alternate key : every -> bool_and -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 17:39:15 - Registering alternate key : any -> bool_or -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@22ed2886] under format; prior registration was org.hibernate.dialect.function.FormatFunction@1b30b6f8 -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@10bcbbce] under listagg; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@7730da00] under mode; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@52d01430] under percentile_cont; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@3fdede3a] under percentile_disc; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@2bc0603f] under rank; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@4ed19540] under dense_rank; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@533e8807] under percent_rank; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@322eb1a] under cume_dist; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@5c20505f] under array; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@cce92b5] under array_list; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@62525dd3] under array_agg; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@5644f664] under array_position; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@5eff5e4c] under array_positions; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@468646ea] under array_positions_list; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4056cdb2] under array_length; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@67baa05] under array_concat; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@347f8029] under array_prepend; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@3f78a5ed] under array_append; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@48f2d51d] under array_contains; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@151d216e] under array_contains_nullable; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@5c0d3715] under array_overlaps; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@5d67bf4d] under array_overlaps_nullable; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@152d2a58] under array_get; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@13ae87a6] under array_set; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@1701beb3] under array_remove; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@4e7151b3] under array_remove_index; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5ef7ae2f] under array_slice; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@4b552b13] under array_replace; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@524dd373] under array_trim; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@9fd3b61] under array_fill; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@4a34de5e] under array_fill_list; prior registration was null -2024-08-07 17:39:15 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@77648321] under array_to_string; prior registration was null -2024-08-07 17:39:15 - abs(NUMERIC arg) -2024-08-07 17:39:15 - Double acos(NUMERIC arg) -2024-08-07 17:39:15 - Boolean any(BOOLEAN predicate) -2024-08-07 17:39:15 - array( ... ) -2024-08-07 17:39:15 - array_agg(arg) -2024-08-07 17:39:15 - array_append( ... ) -2024-08-07 17:39:15 - array_concat( ... ) -2024-08-07 17:39:15 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 17:39:15 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 17:39:15 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 17:39:15 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 17:39:15 - array_get(ARRAY array, INTEGER index) -2024-08-07 17:39:15 - Integer array_length(ARRAY array) -2024-08-07 17:39:15 - array_list( ... ) -2024-08-07 17:39:15 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 17:39:15 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 17:39:15 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 17:39:15 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 17:39:15 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 17:39:15 - array_prepend( ... ) -2024-08-07 17:39:15 - array_remove( ... ) -2024-08-07 17:39:15 - array_remove_index( ... ) -2024-08-07 17:39:15 - array_replace( ... ) -2024-08-07 17:39:15 - array_set( ... ) -2024-08-07 17:39:15 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 17:39:15 - String array_to_string( ... ) -2024-08-07 17:39:15 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 17:39:15 - Integer ascii(STRING arg) -2024-08-07 17:39:15 - Double asin(NUMERIC arg) -2024-08-07 17:39:15 - Double atan(NUMERIC arg) -2024-08-07 17:39:15 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 17:39:15 - avg(NUMERIC arg) -2024-08-07 17:39:15 - bit_and(arg) -2024-08-07 17:39:15 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 17:39:15 - bit_or(arg) -2024-08-07 17:39:15 - bitand(arg0, arg1) -2024-08-07 17:39:15 - bitnot(arg) -2024-08-07 17:39:15 - bitor(arg0, arg1) -2024-08-07 17:39:15 - bitxor(arg0, arg1) -2024-08-07 17:39:15 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 17:39:15 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 17:39:15 - cast(arg as Type) -2024-08-07 17:39:15 - ceiling(NUMERIC arg) -2024-08-07 17:39:15 - Character char(INTEGER arg) -2024-08-07 17:39:15 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 17:39:15 - Character chr(INTEGER arg) -2024-08-07 17:39:15 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 17:39:15 - String collate(STRING string as COLLATION collation) -2024-08-07 17:39:15 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 17:39:15 - Double cos(NUMERIC arg) -2024-08-07 17:39:15 - Double cosh(NUMERIC arg) -2024-08-07 17:39:15 - Double cot(NUMERIC arg) -2024-08-07 17:39:15 - Long count([distinct ]{arg|*}) -2024-08-07 17:39:15 - Double cume_dist([arg0[, ...]]) -2024-08-07 17:39:15 - Date curdate() -2024-08-07 17:39:15 - Date current date -2024-08-07 17:39:15 - Time current time -2024-08-07 17:39:15 - Timestamp current timestamp -2024-08-07 17:39:15 - Date current_date -2024-08-07 17:39:15 - Instant current_instant -2024-08-07 17:39:15 - Time current_time -2024-08-07 17:39:15 - Timestamp current_timestamp -2024-08-07 17:39:15 - Time curtime() -2024-08-07 17:39:15 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 17:39:15 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 17:39:15 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 17:39:15 - Integer day(DATE arg) -2024-08-07 17:39:15 - Integer day_of_month(DATE arg) -2024-08-07 17:39:15 - Integer day_of_week(DATE arg) -2024-08-07 17:39:15 - Integer day_of_year(DATE arg) -2024-08-07 17:39:15 - String dayname(DATE arg) -2024-08-07 17:39:15 - Double degrees(NUMERIC arg) -2024-08-07 17:39:15 - Long dense_rank([arg0[, ...]]) -2024-08-07 17:39:15 - Boolean every(BOOLEAN predicate) -2024-08-07 17:39:15 - Double exp(NUMERIC arg) -2024-08-07 17:39:15 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 17:39:15 - first_valueANY value -2024-08-07 17:39:15 - floor(NUMERIC arg) -2024-08-07 17:39:15 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 17:39:15 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 17:39:15 - Integer hour(TIME arg) -2024-08-07 17:39:15 - ifnull(arg0, arg1) -2024-08-07 17:39:15 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 17:39:15 - Instant instant -2024-08-07 17:39:15 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 17:39:15 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 17:39:15 - last_valueANY value -2024-08-07 17:39:15 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 17:39:15 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 17:39:15 - String left(STRING string, INTEGER length) -2024-08-07 17:39:15 - Integer length(STRING_OR_CLOB arg) -2024-08-07 17:39:15 - String listagg(STRING arg0, STRING arg1) -2024-08-07 17:39:15 - Double ln(NUMERIC arg) -2024-08-07 17:39:15 - LocalDate local date -2024-08-07 17:39:15 - LocalDateTime local datetime -2024-08-07 17:39:15 - LocalTime local time -2024-08-07 17:39:15 - LocalDate local_date -2024-08-07 17:39:15 - LocalDateTime local_datetime -2024-08-07 17:39:15 - LocalTime local_time -2024-08-07 17:39:15 - Time localtime -2024-08-07 17:39:15 - Timestamp localtimestamp -2024-08-07 17:39:15 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 17:39:15 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 17:39:15 - Double log10(NUMERIC arg) -2024-08-07 17:39:15 - String lower(STRING string) -2024-08-07 17:39:15 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 17:39:15 - String ltrim(STRING string) -2024-08-07 17:39:15 - max(COMPARABLE arg) -2024-08-07 17:39:15 - Double median(NUMERIC arg) -2024-08-07 17:39:15 - Integer microsecond(TIME arg) -2024-08-07 17:39:15 - min(COMPARABLE arg) -2024-08-07 17:39:15 - Integer minute(TIME arg) -2024-08-07 17:39:15 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 17:39:15 - mode() -2024-08-07 17:39:15 - Integer month(DATE arg) -2024-08-07 17:39:15 - String monthname(DATE arg) -2024-08-07 17:39:15 - Timestamp now() -2024-08-07 17:39:15 - nth_valueANY value, INTEGER nth -2024-08-07 17:39:15 - nullif(arg0, arg1) -2024-08-07 17:39:15 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 17:39:15 - OffsetDateTime offset datetime -2024-08-07 17:39:15 - OffsetDateTime offset_datetime -2024-08-07 17:39:15 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 17:39:15 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 17:39:15 - Double percent_rank([arg0[, ...]]) -2024-08-07 17:39:15 - percentile_cont(NUMERIC arg) -2024-08-07 17:39:15 - percentile_disc(NUMERIC arg) -2024-08-07 17:39:15 - Double pi -2024-08-07 17:39:15 - Integer position(STRING pattern in STRING string) -2024-08-07 17:39:15 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 17:39:15 - Integer quarter(DATE arg) -2024-08-07 17:39:15 - Double radians(NUMERIC arg) -2024-08-07 17:39:15 - Double rand([INTEGER seed]) -2024-08-07 17:39:15 - Long rank([arg0[, ...]]) -2024-08-07 17:39:15 - String repeat(STRING string, INTEGER times) -2024-08-07 17:39:15 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 17:39:15 - String right(STRING string, INTEGER length) -2024-08-07 17:39:15 - round(NUMERIC number[, INTEGER places]) -2024-08-07 17:39:15 - Long row_number() -2024-08-07 17:39:15 - Long rownum() -2024-08-07 17:39:15 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 17:39:15 - String rtrim(STRING string) -2024-08-07 17:39:15 - Integer second(TIME arg) -2024-08-07 17:39:15 - Integer sign(NUMERIC arg) -2024-08-07 17:39:15 - Double sin(NUMERIC arg) -2024-08-07 17:39:15 - Double sinh(NUMERIC arg) -2024-08-07 17:39:15 - String soundex(arg) -2024-08-07 17:39:15 - String space(INTEGER arg) -2024-08-07 17:39:15 - Object sql -2024-08-07 17:39:15 - Double sqrt(NUMERIC arg) -2024-08-07 17:39:15 - Double stddev_pop(NUMERIC arg) -2024-08-07 17:39:15 - Double stddev_samp(NUMERIC arg) -2024-08-07 17:39:15 - String str(arg) -2024-08-07 17:39:15 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 17:39:15 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 17:39:15 - sum(arg) -2024-08-07 17:39:15 - Timestamp sysdate -2024-08-07 17:39:15 - Double tan(NUMERIC arg) -2024-08-07 17:39:15 - Double tanh(NUMERIC arg) -2024-08-07 17:39:15 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 17:39:15 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 17:39:15 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 17:39:15 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 17:39:15 - trunc( ... ) -2024-08-07 17:39:15 - truncate( ... ) -2024-08-07 17:39:15 - String upper(STRING string) -2024-08-07 17:39:15 - Double var_pop(NUMERIC arg) -2024-08-07 17:39:15 - Double var_samp(NUMERIC arg) -2024-08-07 17:39:15 - Integer week(DATE arg) -2024-08-07 17:39:15 - Integer year(DATE arg) -2024-08-07 17:39:15 - Starting QueryInterpretationCache(2048) -2024-08-07 17:39:15 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 17:39:15 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 17:39:15 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 17:39:15 - Configured EntityCopyObserver strategy: disallow -2024-08-07 17:39:15 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 17:39:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 17:39:15 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:39:15 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 17:39:15 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 17:39:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 17:39:15 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 17:39:15 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 17:39:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 17:39:15 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 17:39:15 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 17:39:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 17:39:15 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 17:39:15 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 17:39:15 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 17:39:15 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 17:39:15 - Starting post-init callbacks -2024-08-07 17:39:15 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 17:39:15 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 17:39:15 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 17:39:15 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 17:39:15 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 17:39:15 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 17:39:15 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 17:39:15 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 17:39:15 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 17:39:15 - Created new SQL alias : ba1_0 -2024-08-07 17:39:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:39:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7a05cdc8] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:39:15 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 17:39:15 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 17:39:15 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 17:39:15 - Version select: select id from bill_action where id=? -2024-08-07 17:39:15 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 17:39:15 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 17:39:15 - Delete (0): delete from bill_action where id=? -2024-08-07 17:39:15 - Created new SQL alias : ma1_0 -2024-08-07 17:39:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 17:39:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@39c93af6] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 17:39:15 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 17:39:15 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 17:39:15 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 17:39:15 - Version select: select id from member_action where id=? -2024-08-07 17:39:15 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 17:39:15 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 17:39:15 - Delete (0): delete from member_action where id=? -2024-08-07 17:39:15 - Created new SQL alias : e1_0 -2024-08-07 17:39:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:39:15 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 17:39:15 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:39:15 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 17:39:15 - Version select: select id from event where id=? -2024-08-07 17:39:15 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 17:39:15 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 17:39:15 - Delete (0): delete from event where id=? -2024-08-07 17:39:15 - Created new SQL alias : a1_0 -2024-08-07 17:39:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 17:39:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@58e0d1ac] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 17:39:15 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 17:39:15 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 17:39:15 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 17:39:15 - Version select: select id from action where id=? -2024-08-07 17:39:15 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 17:39:15 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 17:39:15 - Delete (0): delete from action where id=? -2024-08-07 17:39:15 - Created new SQL alias : es1_0 -2024-08-07 17:39:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 17:39:15 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5cbebfba] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 17:39:15 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 17:39:15 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 17:39:15 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 17:39:15 - Version select: select id from event_step where id=? -2024-08-07 17:39:15 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 17:39:15 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 17:39:15 - Delete (0): delete from event_step where id=? -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 82 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 84 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:15 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:39:15 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:15 - [javax.management.remote.rmi.RMIConnectionImpl@4926dd30: connectionId=rmi://127.0.0.1 2] closing. -2024-08-07 17:39:15 - [javax.management.remote.rmi.RMIConnectionImpl@4926dd30: connectionId=rmi://127.0.0.1 2] closed. -2024-08-07 17:39:15 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 17:39:15 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@24f5e9e8] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@4ccf1d3e] -2024-08-07 17:39:15 - Checking 0 named HQL queries -2024-08-07 17:39:15 - Checking 0 named SQL queries -2024-08-07 17:39:15 - - drop table if exists action cascade -2024-08-07 17:39:15 - - drop table if exists bill_action cascade -2024-08-07 17:39:15 - - drop table if exists event cascade -2024-08-07 17:39:15 - - drop table if exists event_step cascade -2024-08-07 17:39:15 - - drop table if exists member_action cascade -2024-08-07 17:39:15 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 17:39:15 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 17:39:15 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 17:39:15 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 17:39:15 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 17:39:15 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 17:39:15 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 17:39:15 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 17:39:15 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 17:39:15 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@7f82a71f -2024-08-07 17:39:15 - Registering SessionFactory: 2544b54d-1a47-4bab-93c8-310415997144 (<unnamed>) -2024-08-07 17:39:15 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 17:39:15 - Instantiated SessionFactory -2024-08-07 17:39:15 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'actionService' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 17:39:15 - Initializing JpaMetamodelMappingContext… -2024-08-07 17:39:15 - Finished initializing JpaMetamodelMappingContext -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - Statistics initialized [enabled=false] -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 17:39:15 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 17:39:15 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 17:39:15 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - Looking up named query BillAction.findByAction_Event -2024-08-07 17:39:15 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:39:15 - Did not find named query BillAction.findByAction_Event -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - Looking up named query BillAction.findByAction_Id -2024-08-07 17:39:15 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:39:15 - Did not find named query BillAction.findByAction_Id -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 17:39:15 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:39:15 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 17:39:15 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:39:15 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 17:39:15 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:39:15 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(745927020260625)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(745927020260625)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(745927020260625)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(745927020260625)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(745927020260625).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:39:15 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:39:15 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 17:39:15 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:39:15 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:39:15 - Looking up named query MemberAction.findByAction -2024-08-07 17:39:15 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:39:15 - Did not find named query MemberAction.findByAction -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 17:39:15 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:39:15 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 17:39:15 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:39:15 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:39:15 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 17:39:15 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 17:39:15 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:39:15 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 17:39:15 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:39:15 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 17:39:15 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 17:39:15 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 17:39:15 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 17:39:15 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - Looking up named query Event.findByToken -2024-08-07 17:39:15 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:39:15 - Did not find named query Event.findByToken -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 17:39:15 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 17:39:15 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:39:15 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:39:15 - Did not find named query Action.findLastByEvent.count -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 17:39:15 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 17:39:15 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 17:39:15 - Looking up named query Action.findByIdAndEvent -2024-08-07 17:39:15 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 17:39:15 - Did not find named query Action.findByIdAndEvent -2024-08-07 17:39:15 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 17:39:15 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 17:39:15 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 17:39:15 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 17:39:15 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'eventService' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 17:39:15 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 17:39:15 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 17:39:15 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 17:39:15 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 17:39:15 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 17:39:15 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 17:39:15 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 17:39:15 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 17:39:15 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 17:39:15 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 17:39:15 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 17:39:15 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'actionController' -2024-08-07 17:39:15 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 17:39:15 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'eventController' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'authService' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 17:39:15 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 17:39:15 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 17:39:15 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 17:39:15 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:39:15 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 17:39:15 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 17:39:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 17:39:15 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:39:15 - Loaded expression factory via original TCCL -2024-08-07 17:39:15 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 17:39:15 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 17:39:15 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 17:39:15 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 17:39:15 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 17:39:15 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 17:39:15 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 17:39:15 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 17:39:15 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 17:39:15 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 17:39:15 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 17:39:15 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 17:39:15 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 17:39:15 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 17:39:15 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'error' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:39:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:39:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 17:39:15 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 17:39:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:39:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:39:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 17:39:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 17:39:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 17:39:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 17:39:15 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 17:39:15 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 17:39:15 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 17:39:15 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 17:39:15 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 17:39:15 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:39:15 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:39:15 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 17:39:15 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:39:15 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:39:15 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 17:39:15 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 17:39:15 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:39:15 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:39:15 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:39:16 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 17:39:16 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 17:39:16 - - s.h.p.EventController: - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) -2024-08-07 17:39:16 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 17:39:16 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 17:39:16 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 17:39:16 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:39:16 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 17:39:16 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:39:16 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:39:16 - 'beanNameHandlerMapping' {} -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 17:39:16 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:39:16 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 17:39:16 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 17:39:16 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:39:16 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:39:16 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 17:39:16 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:39:16 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 17:39:16 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 17:39:16 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 17:39:16 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:39:16 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 17:39:16 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 17:39:16 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 17:39:16 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:39:16 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 17:39:16 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 17:39:16 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 17:39:16 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 17:39:16 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 17:39:16 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 17:39:16 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 17:39:16 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:39:16 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 17:39:16 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 17:39:16 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 17:39:16 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 17:39:16 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 82 -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 82 -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 82 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 84 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - [javax.management.remote.rmi.RMIConnectionImpl@6d915112: connectionId=rmi://127.0.0.1 3] closing. -2024-08-07 17:39:16 - [javax.management.remote.rmi.RMIConnectionImpl@6d915112: connectionId=rmi://127.0.0.1 3] closed. -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 17:39:16 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 17:39:16 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:39:16 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 17:39:16 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:39:16 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 17:39:16 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 17:39:16 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 17:39:16 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 17:39:16 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 17:39:16 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 17:39:16 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 17:39:16 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 17:39:16 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 17:39:16 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 17:39:16 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 17:39:16 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 17:39:16 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 17:39:16 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:39:16 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:39:16 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 17:39:16 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 17:39:16 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 17:39:16 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 17:39:16 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 17:39:16 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 17:39:16 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 17:39:16 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 17:39:16 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 17:39:16 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 17:39:16 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 17:39:16 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 17:39:16 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:39:16 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 17:39:16 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 17:39:16 - Using SLF4J as the default logging framework -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 17:39:16 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 17:39:16 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 17:39:16 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 17:39:16 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 17:39:16 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 17:39:16 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 17:39:16 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 17:39:16 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 17:39:16 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 17:39:16 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 17:39:16 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 17:39:16 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 17:39:16 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 17:39:16 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 17:39:16 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 17:39:16 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 17:39:16 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 17:39:16 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 17:39:16 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 17:39:16 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 17:39:16 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:39:16 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 17:39:16 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 17:39:16 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 17:39:16 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 17:39:16 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 17:39:16 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 17:39:16 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 17:39:16 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 17:39:16 - Registering beans for JMX exposure on startup -2024-08-07 17:39:16 - Auto-detecting user-defined JMX MBeans -2024-08-07 17:39:16 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 17:39:16 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 17:39:16 - Starting beans in phase -2147483647 -2024-08-07 17:39:16 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 17:39:16 - Starting beans in phase 2147481599 -2024-08-07 17:39:16 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 17:39:16 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 17:39:16 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 17:39:16 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 17:39:16 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 17:39:16 - Successfully started bean 'webServerStartStop' -2024-08-07 17:39:16 - Starting beans in phase 2147482623 -2024-08-07 17:39:16 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 17:39:16 - Starting beans in phase 2147483647 -2024-08-07 17:39:16 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 17:39:16 - Started HaengdongApplication in 2.172 seconds (process running for 2.344) -2024-08-07 17:39:16 - Application availability state LivenessState changed to CORRECT -2024-08-07 17:39:16 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 82 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 84 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 17:39:16 - RMI TCP Connection(1)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - [javax.management.remote.rmi.RMIConnectionImpl@6dd618e7: connectionId=rmi://127.0.0.1 4] closing. -2024-08-07 17:39:16 - [javax.management.remote.rmi.RMIConnectionImpl@6dd618e7: connectionId=rmi://127.0.0.1 4] closed. -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:49770] -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:49771] -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 84 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 84 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - [javax.management.remote.rmi.RMIConnectionImpl@6c7fe309: connectionId=rmi://127.0.0.1 6] closing. -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - [javax.management.remote.rmi.RMIConnectionImpl@6c7fe309: connectionId=rmi://127.0.0.1 6] closed. -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 84 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - [javax.management.remote.rmi.RMIConnectionImpl@13097715: connectionId=rmi://127.0.0.1 5] closing. -2024-08-07 17:39:16 - [javax.management.remote.rmi.RMIConnectionImpl@13097715: connectionId=rmi://127.0.0.1 5] closed. -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - [javax.management.remote.rmi.RMIConnectionImpl@54e87346: connectionId=rmi://127.0.0.1 7] closing. -2024-08-07 17:39:16 - [javax.management.remote.rmi.RMIConnectionImpl@54e87346: connectionId=rmi://127.0.0.1 7] closed. -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 84 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - [javax.management.remote.rmi.RMIConnectionImpl@51b0cf68: connectionId=rmi://127.0.0.1 8] closing. -2024-08-07 17:39:16 - [javax.management.remote.rmi.RMIConnectionImpl@51b0cf68: connectionId=rmi://127.0.0.1 8] closed. -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 82 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 82 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 84 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 84 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - [javax.management.remote.rmi.RMIConnectionImpl@477e797c: connectionId=rmi://127.0.0.1 9] closing. -2024-08-07 17:39:16 - [javax.management.remote.rmi.RMIConnectionImpl@477e797c: connectionId=rmi://127.0.0.1 9] closed. -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - [javax.management.remote.rmi.RMIConnectionImpl@7ae62961: connectionId=rmi://127.0.0.1 10] closing. -2024-08-07 17:39:16 - [javax.management.remote.rmi.RMIConnectionImpl@7ae62961: connectionId=rmi://127.0.0.1 10] closed. -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 84 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 84 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:16 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 17:39:16 - Fetching JDBC Connection from DataSource -2024-08-07 17:39:16 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 17:39:16 - Initializing Servlet 'dispatcherServlet' -2024-08-07 17:39:16 - Detected StandardServletMultipartResolver -2024-08-07 17:39:16 - Detected AcceptHeaderLocaleResolver -2024-08-07 17:39:16 - Detected FixedThemeResolver -2024-08-07 17:39:16 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@586be63c -2024-08-07 17:39:16 - Fetching JDBC Connection from DataSource -2024-08-07 17:39:16 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@31bbcced -2024-08-07 17:39:16 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 17:39:16 - Completed initialization in 2 ms -2024-08-07 17:39:16 - RMI TCP Connection(2)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - [javax.management.remote.rmi.RMIConnectionImpl@d4beda3: connectionId=rmi://127.0.0.1 11] closing. -2024-08-07 17:39:16 - [javax.management.remote.rmi.RMIConnectionImpl@d4beda3: connectionId=rmi://127.0.0.1 11] closed. -2024-08-07 17:39:16 - RMI TCP Connection(3)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:16 - [javax.management.remote.rmi.RMIConnectionImpl@3afa8107: connectionId=rmi://127.0.0.1 12] closing. -2024-08-07 17:39:16 - [javax.management.remote.rmi.RMIConnectionImpl@3afa8107: connectionId=rmi://127.0.0.1 12] closed. -2024-08-07 17:39:22 - RMI TCP Connection(3)-127.0.0.1: (port 49768) connection closed -2024-08-07 17:39:22 - RMI TCP Connection(2)-127.0.0.1: (port 49768) connection closed -2024-08-07 17:39:22 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=49771,localport=49768] -2024-08-07 17:39:22 - RMI TCP Connection(1)-127.0.0.1: (port 49768) connection closed -2024-08-07 17:39:22 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=49770,localport=49768] -2024-08-07 17:39:22 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:49772] -2024-08-07 17:39:22 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=49769,localport=49768] -2024-08-07 17:39:22 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=49771,localport=49768] -2024-08-07 17:39:22 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=49769,localport=49768] -2024-08-07 17:39:22 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=49770,localport=49768] -2024-08-07 17:39:22 - RMI TCP Connection(4)-127.0.0.1: (port 49768) op = 80 -2024-08-07 17:39:22 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:22 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:22 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:22 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:22 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-07 17:39:23 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.7752291804353668768/conf/jaspic-providers.xml] -2024-08-07 17:39:23 - POST "/api/events", parameters={} -2024-08-07 17:39:23 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:39:23 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:39:23 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=1234, password=1234]] -2024-08-07 17:39:23 - Found thread-bound EntityManager [SessionImpl(1064500961<open>)] for JPA transaction -2024-08-07 17:39:23 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 17:39:23 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:39:23 - begin -2024-08-07 17:39:23 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@a919e4a] -2024-08-07 17:39:23 - Found thread-bound EntityManager [SessionImpl(1064500961<open>)] for JPA transaction -2024-08-07 17:39:23 - Participating in existing transaction -2024-08-07 17:39:23 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 17:39:23 - Executing identity-insert immediately -2024-08-07 17:39:23 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 17:39:23 - Initializer list is empty -2024-08-07 17:39:23 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@b090e8b -2024-08-07 17:39:23 - Extracted JDBC value [0] - [1] -2024-08-07 17:39:23 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@7ac5f384 -2024-08-07 17:39:23 - Initiating transaction commit -2024-08-07 17:39:23 - Committing JPA transaction on EntityManager [SessionImpl(1064500961<open>)] -2024-08-07 17:39:23 - committing -2024-08-07 17:39:23 - Processing flush-time cascades -2024-08-07 17:39:23 - Dirty checking collections -2024-08-07 17:39:23 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 17:39:23 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 17:39:23 - Listing entities: -2024-08-07 17:39:23 - server.haengdong.domain.event.Event{password=1234, name=1234, id=1, token=621ee88b-75b3-48ec-b3a3-9b76f9e1b0de} -2024-08-07 17:39:23 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:39:23 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:39:23 - Writing [EventResponse[eventId=621ee88b-75b3-48ec-b3a3-9b76f9e1b0de]] -2024-08-07 17:39:23 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:39:23 - Completed 200 OK -2024-08-07 17:39:28 - OPTIONS "/api/events/621ee88b-75b3-48ec-b3a3-9b76f9e1b0de", parameters={} -2024-08-07 17:39:28 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:39:28 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:39:28 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:39:28 - Completed 200 OK -2024-08-07 17:39:28 - OPTIONS "/api/events/621ee88b-75b3-48ec-b3a3-9b76f9e1b0de/actions", parameters={} -2024-08-07 17:39:28 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:39:28 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:39:28 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:39:28 - Completed 200 OK -2024-08-07 17:39:28 - GET "/api/events/621ee88b-75b3-48ec-b3a3-9b76f9e1b0de/actions", parameters={} -2024-08-07 17:39:28 - GET "/api/events/621ee88b-75b3-48ec-b3a3-9b76f9e1b0de", parameters={} -2024-08-07 17:39:28 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:39:28 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:39:28 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:39:28 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:39:28 - Found thread-bound EntityManager [SessionImpl(1963642986<open>)] for JPA transaction -2024-08-07 17:39:28 - Found thread-bound EntityManager [SessionImpl(1040458074<open>)] for JPA transaction -2024-08-07 17:39:28 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:39:28 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:39:28 - HikariPool-1 - Connection not added, stats (total=10, active=2, idle=8, waiting=0) -2024-08-07 17:39:28 - Setting JDBC Connection [HikariProxyConnection@1149266293 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:39:28 - Setting JDBC Connection [HikariProxyConnection@2035395924 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:39:28 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:39:28 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:39:28 - begin -2024-08-07 17:39:28 - begin -2024-08-07 17:39:28 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@4854b628] -2024-08-07 17:39:28 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@a8c80ac] -2024-08-07 17:39:29 - Created new SQL alias : e1_0 -2024-08-07 17:39:29 - Created new SQL alias : e1_0 -2024-08-07 17:39:29 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745927059916791))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:39:29 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745927059916791))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:39:29 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@da6b44 -2024-08-07 17:39:29 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@677a1dcf -2024-08-07 17:39:29 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745927059916791).token) -2024-08-07 17:39:29 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745927059916791).token) -2024-08-07 17:39:29 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745927059916791)] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745927059916791).token] - -2024-08-07 17:39:29 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745927059916791)] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745927059916791).token] - -2024-08-07 17:39:29 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745927059916791)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:39:29 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745927059916791)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:39:29 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:39:29 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:39:29 - Initializer list: - server.haengdong.domain.event.Event(745927059916791) -> EntityResultInitializer(server.haengdong.domain.event.Event(745927059916791))@1093394524 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:39:29 - Initializer list: - server.haengdong.domain.event.Event(745927059916791) -> EntityResultInitializer(server.haengdong.domain.event.Event(745927059916791))@1423461816 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:39:29 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:39:29 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:39:29 - Extracted JDBC value [0] - [1] -2024-08-07 17:39:29 - Extracted JDBC value [0] - [1] -2024-08-07 17:39:29 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745927059916791)): 1 -2024-08-07 17:39:29 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745927059916791)): 1 -2024-08-07 17:39:29 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745927059916791)#1] : 1208738744 -2024-08-07 17:39:29 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745927059916791)#1] : 968187407 -2024-08-07 17:39:29 - Extracted JDBC value [1] - [1234] -2024-08-07 17:39:29 - Extracted JDBC value [1] - [1234] -2024-08-07 17:39:29 - Extracted JDBC value [2] - [1234] -2024-08-07 17:39:29 - Extracted JDBC value [2] - [1234] -2024-08-07 17:39:29 - Extracted JDBC value [3] - [621ee88b-75b3-48ec-b3a3-9b76f9e1b0de] -2024-08-07 17:39:29 - Extracted JDBC value [3] - [621ee88b-75b3-48ec-b3a3-9b76f9e1b0de] -2024-08-07 17:39:29 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745927059916791)#1 -2024-08-07 17:39:29 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745927059916791)#1 -2024-08-07 17:39:29 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@384faf76 -2024-08-07 17:39:29 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@4413ce52 -2024-08-07 17:39:29 - Initiating transaction commit -2024-08-07 17:39:29 - Committing JPA transaction on EntityManager [SessionImpl(1040458074<open>)] -2024-08-07 17:39:29 - committing -2024-08-07 17:39:29 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1149266293 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:39:29 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:39:29 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:39:29 - Writing [EventDetailResponse[eventName=1234]] -2024-08-07 17:39:29 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:39:29 - Completed 200 OK -2024-08-07 17:39:29 - Created new SQL alias : ba1_0 -2024-08-07 17:39:29 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(745926901414000))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:39:29 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1900a8dd] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:39:29 - Created new SQL alias : a1_0 -2024-08-07 17:39:29 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@24085492] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:39:29 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1900a8dd] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:39:29 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@60059d88 -2024-08-07 17:39:29 - Created new SQL alias : e1_0 -2024-08-07 17:39:29 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@31b0757b -2024-08-07 17:39:29 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(745926901414000).action(745926901451583).event(745926901462166) : event) -2024-08-07 17:39:29 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(745926901414000)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(745926901414000).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(745926901414000).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(745926901414000).title] - -2024-08-07 17:39:29 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(745926901414000)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(745926901414000).action(745926901451583)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(745926901414000).action(745926901451583).event(745926901462166)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:39:29 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:39:29 - Initializer list: - server.haengdong.domain.action.BillAction(745926901414000).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(745926901414000).action)@1864147730 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@978526730) - server.haengdong.domain.action.BillAction(745926901414000) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(745926901414000))@723362069 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - server.haengdong.domain.action.BillAction(745926901414000).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(745926901414000).action.event)@1930926160 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@2040115475) - -2024-08-07 17:39:29 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:39:29 - Created new SQL alias : ma1_0 -2024-08-07 17:39:29 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction(m))] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 17:39:29 - Created new SQL alias : a1_0 -2024-08-07 17:39:29 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@39d46a26] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 17:39:29 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1b54797d] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 17:39:29 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@39b6c03a] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 17:39:29 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@39b6c03a] for NavigablePath [server.haengdong.domain.action.MemberAction(m).action(745927020260625).event] overrode previous registration : org.hibernate.sql.ast.tree.from.LazyTableGroup@1b54797d -2024-08-07 17:39:29 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 17:39:29 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 17:39:29 - Determining mapping-model type for SqmPath : SqmEntityValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action(745927020260625).event) -2024-08-07 17:39:29 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction(m)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.MemberAction(m).action(745927020260625)] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction(m).status] - -2024-08-07 17:39:29 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction(m)) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction(m).action(745927020260625)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.MemberAction(m).action(745927020260625).event) { - } - join LazyTableGroup (e2 : server.haengdong.domain.action.MemberAction(m).action(745927020260625).event) { - } - } - } - } - } - } - } - -2024-08-07 17:39:29 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:39:29 - Initializer list: - server.haengdong.domain.action.MemberAction(m).action(745927020260625).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745927020260625).event)@453907193 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@2040115475) - server.haengdong.domain.action.MemberAction(m).action(745927020260625) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745927020260625))@2146977249 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1883303220) - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@465633732 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - -2024-08-07 17:39:29 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:39:29 - Initiating transaction commit -2024-08-07 17:39:29 - Committing JPA transaction on EntityManager [SessionImpl(1963642986<open>)] -2024-08-07 17:39:29 - committing -2024-08-07 17:39:29 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@2035395924 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:39:29 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:39:29 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:39:29 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:39:29 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:39:29 - Completed 200 OK -2024-08-07 17:39:33 - OPTIONS "/api/events/621ee88b-75b3-48ec-b3a3-9b76f9e1b0de/member-actions", parameters={} -2024-08-07 17:39:33 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:39:33 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:39:33 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:39:33 - Completed 200 OK -2024-08-07 17:39:33 - POST "/api/events/621ee88b-75b3-48ec-b3a3-9b76f9e1b0de/member-actions", parameters={} -2024-08-07 17:39:33 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:39:33 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 17:39:33 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:39:33 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 17:39:33 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 17:39:33 - Completed 401 UNAUTHORIZED -2024-08-07 17:39:45 - RMI TCP Connection(4)-127.0.0.1: (port 49768) connection closed -2024-08-07 17:39:45 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=49772,localport=49768] -2024-08-07 17:39:45 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=49772,localport=49768] -2024-08-07 17:39:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:39:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:40:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:40:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:40:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:40:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:41:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:41:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:41:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:41:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:42:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:42:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:42:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:42:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:43:00 - GET "/api/events/621ee88b-75b3-48ec-b3a3-9b76f9e1b0de/actions", parameters={} -2024-08-07 17:43:00 - GET "/api/events/621ee88b-75b3-48ec-b3a3-9b76f9e1b0de", parameters={} -2024-08-07 17:43:00 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:43:00 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:43:00 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:00 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:00 - Found thread-bound EntityManager [SessionImpl(1275619581<open>)] for JPA transaction -2024-08-07 17:43:00 - Found thread-bound EntityManager [SessionImpl(1785158707<open>)] for JPA transaction -2024-08-07 17:43:00 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:43:00 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:43:00 - Setting JDBC Connection [HikariProxyConnection@1211626916 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:43:00 - Setting JDBC Connection [HikariProxyConnection@1166040001 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:43:00 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:43:00 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:43:00 - begin -2024-08-07 17:43:00 - begin -2024-08-07 17:43:00 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@5926aa17] -2024-08-07 17:43:00 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@d3562c6] -2024-08-07 17:43:00 - Created new SQL alias : e1_0 -2024-08-07 17:43:00 - Created new SQL alias : e1_0 -2024-08-07 17:43:00 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745927059916791))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:43:00 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745927059916791))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:43:00 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@1ee59553 -2024-08-07 17:43:00 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@3332748a -2024-08-07 17:43:00 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745927059916791).token) -2024-08-07 17:43:00 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745927059916791).token) -2024-08-07 17:43:00 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745927059916791)] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745927059916791).token] - -2024-08-07 17:43:00 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745927059916791)] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745927059916791).token] - -2024-08-07 17:43:00 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745927059916791)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:43:00 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745927059916791)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:43:00 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:43:00 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:43:00 - Initializer list: - server.haengdong.domain.event.Event(745927059916791) -> EntityResultInitializer(server.haengdong.domain.event.Event(745927059916791))@1697690892 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:43:00 - Initializer list: - server.haengdong.domain.event.Event(745927059916791) -> EntityResultInitializer(server.haengdong.domain.event.Event(745927059916791))@1830460809 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:43:00 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:43:00 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:43:00 - Extracted JDBC value [0] - [1] -2024-08-07 17:43:00 - Extracted JDBC value [0] - [1] -2024-08-07 17:43:00 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745927059916791)): 1 -2024-08-07 17:43:00 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745927059916791)): 1 -2024-08-07 17:43:00 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745927059916791)#1] : 1484357260 -2024-08-07 17:43:00 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745927059916791)#1] : 1343991165 -2024-08-07 17:43:00 - Extracted JDBC value [1] - [1234] -2024-08-07 17:43:00 - Extracted JDBC value [1] - [1234] -2024-08-07 17:43:00 - Extracted JDBC value [2] - [1234] -2024-08-07 17:43:00 - Extracted JDBC value [2] - [1234] -2024-08-07 17:43:00 - Extracted JDBC value [3] - [621ee88b-75b3-48ec-b3a3-9b76f9e1b0de] -2024-08-07 17:43:00 - Extracted JDBC value [3] - [621ee88b-75b3-48ec-b3a3-9b76f9e1b0de] -2024-08-07 17:43:00 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745927059916791)#1 -2024-08-07 17:43:00 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745927059916791)#1 -2024-08-07 17:43:00 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@3801285a -2024-08-07 17:43:00 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@69548422 -2024-08-07 17:43:00 - Initiating transaction commit -2024-08-07 17:43:00 - Committing JPA transaction on EntityManager [SessionImpl(1275619581<open>)] -2024-08-07 17:43:00 - committing -2024-08-07 17:43:00 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1211626916 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:43:00 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:43:00 - Created new SQL alias : ba1_0 -2024-08-07 17:43:00 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(745926901414000))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:43:00 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7bfba372] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:43:00 - Created new SQL alias : a1_0 -2024-08-07 17:43:00 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4a8917af] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:43:00 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7bfba372] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:43:00 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:43:00 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@60059d88 -2024-08-07 17:43:00 - Created new SQL alias : e1_0 -2024-08-07 17:43:00 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@abe6f5 -2024-08-07 17:43:00 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(745926901414000).action(745926901451583).event(745926901462166) : event) -2024-08-07 17:43:00 - Writing [EventDetailResponse[eventName=1234]] -2024-08-07 17:43:00 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(745926901414000)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(745926901414000).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(745926901414000).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(745926901414000).title] - -2024-08-07 17:43:00 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(745926901414000)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(745926901414000).action(745926901451583)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(745926901414000).action(745926901451583).event(745926901462166)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:43:00 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:43:00 - Initializer list: - server.haengdong.domain.action.BillAction(745926901414000).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(745926901414000).action)@1417746781 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@978526730) - server.haengdong.domain.action.BillAction(745926901414000) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(745926901414000))@1925693580 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - server.haengdong.domain.action.BillAction(745926901414000).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(745926901414000).action.event)@1894876436 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@2040115475) - -2024-08-07 17:43:00 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:43:00 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:00 - Completed 200 OK -2024-08-07 17:43:00 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:43:00 - Initializer list: - server.haengdong.domain.action.MemberAction(m).action(745927020260625).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745927020260625).event)@154083833 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@2040115475) - server.haengdong.domain.action.MemberAction(m).action(745927020260625) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745927020260625))@1837352201 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1883303220) - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@1495486991 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - -2024-08-07 17:43:00 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:43:00 - Initiating transaction commit -2024-08-07 17:43:00 - Committing JPA transaction on EntityManager [SessionImpl(1785158707<open>)] -2024-08-07 17:43:00 - committing -2024-08-07 17:43:00 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1166040001 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:43:00 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:43:00 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:43:00 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:43:00 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:00 - Completed 200 OK -2024-08-07 17:43:07 - GET "/api/events/621ee88b-75b3-48ec-b3a3-9b76f9e1b0de/actions", parameters={} -2024-08-07 17:43:07 - GET "/api/events/621ee88b-75b3-48ec-b3a3-9b76f9e1b0de", parameters={} -2024-08-07 17:43:07 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:43:07 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:43:07 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:07 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:07 - Found thread-bound EntityManager [SessionImpl(417771154<open>)] for JPA transaction -2024-08-07 17:43:07 - Found thread-bound EntityManager [SessionImpl(1707153968<open>)] for JPA transaction -2024-08-07 17:43:07 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:43:07 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:43:07 - Setting JDBC Connection [HikariProxyConnection@483998038 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:43:07 - Setting JDBC Connection [HikariProxyConnection@1809173404 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:43:07 - HikariPool-1 - Connection not added, stats (total=10, active=2, idle=8, waiting=0) -2024-08-07 17:43:07 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:43:07 - begin -2024-08-07 17:43:07 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@2d93f708] -2024-08-07 17:43:07 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:43:07 - begin -2024-08-07 17:43:07 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@6848d9d4] -2024-08-07 17:43:07 - Created new SQL alias : e1_0 -2024-08-07 17:43:07 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745927059916791))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:43:07 - Created new SQL alias : e1_0 -2024-08-07 17:43:07 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745927059916791))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:43:07 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@40ee6810 -2024-08-07 17:43:07 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@479398d3 -2024-08-07 17:43:07 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745927059916791).token) -2024-08-07 17:43:07 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745927059916791).token) -2024-08-07 17:43:07 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745927059916791)] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745927059916791).token] - -2024-08-07 17:43:07 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745927059916791)] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745927059916791).token] - -2024-08-07 17:43:07 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745927059916791)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:43:07 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745927059916791)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:43:07 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:43:07 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:43:07 - Initializer list: - server.haengdong.domain.event.Event(745927059916791) -> EntityResultInitializer(server.haengdong.domain.event.Event(745927059916791))@1035601595 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:43:07 - Initializer list: - server.haengdong.domain.event.Event(745927059916791) -> EntityResultInitializer(server.haengdong.domain.event.Event(745927059916791))@1670431983 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:43:07 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:43:07 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:43:07 - Extracted JDBC value [0] - [1] -2024-08-07 17:43:07 - Extracted JDBC value [0] - [1] -2024-08-07 17:43:07 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745927059916791)): 1 -2024-08-07 17:43:07 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745927059916791)): 1 -2024-08-07 17:43:07 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745927059916791)#1] : 547945743 -2024-08-07 17:43:07 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745927059916791)#1] : 1885346943 -2024-08-07 17:43:07 - Extracted JDBC value [1] - [1234] -2024-08-07 17:43:07 - Extracted JDBC value [1] - [1234] -2024-08-07 17:43:07 - Extracted JDBC value [2] - [1234] -2024-08-07 17:43:07 - Extracted JDBC value [2] - [1234] -2024-08-07 17:43:07 - Extracted JDBC value [3] - [621ee88b-75b3-48ec-b3a3-9b76f9e1b0de] -2024-08-07 17:43:07 - Extracted JDBC value [3] - [621ee88b-75b3-48ec-b3a3-9b76f9e1b0de] -2024-08-07 17:43:07 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745927059916791)#1 -2024-08-07 17:43:07 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745927059916791)#1 -2024-08-07 17:43:07 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@4d4ab87f -2024-08-07 17:43:07 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@15320920 -2024-08-07 17:43:07 - Initiating transaction commit -2024-08-07 17:43:07 - Committing JPA transaction on EntityManager [SessionImpl(1707153968<open>)] -2024-08-07 17:43:07 - committing -2024-08-07 17:43:07 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1809173404 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:43:07 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:43:07 - Created new SQL alias : ba1_0 -2024-08-07 17:43:07 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(745926901414000))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:43:07 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:43:07 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@3222c4f6] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:43:07 - Created new SQL alias : a1_0 -2024-08-07 17:43:07 - Writing [EventDetailResponse[eventName=1234]] -2024-08-07 17:43:07 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2a330b8d] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:43:07 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@3222c4f6] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:43:07 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@60059d88 -2024-08-07 17:43:07 - Created new SQL alias : e1_0 -2024-08-07 17:43:07 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@99c0fb5 -2024-08-07 17:43:07 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(745926901414000).action(745926901451583).event(745926901462166) : event) -2024-08-07 17:43:07 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(745926901414000)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(745926901414000).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(745926901414000).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(745926901414000).title] - -2024-08-07 17:43:07 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(745926901414000)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(745926901414000).action(745926901451583)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(745926901414000).action(745926901451583).event(745926901462166)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:43:07 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:43:07 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:07 - Initializer list: - server.haengdong.domain.action.BillAction(745926901414000).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(745926901414000).action)@1050505225 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@978526730) - server.haengdong.domain.action.BillAction(745926901414000) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(745926901414000))@448534104 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - server.haengdong.domain.action.BillAction(745926901414000).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(745926901414000).action.event)@685836769 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@2040115475) - -2024-08-07 17:43:07 - Completed 200 OK -2024-08-07 17:43:07 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:43:07 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:43:07 - Initializer list: - server.haengdong.domain.action.MemberAction(m).action(745927020260625).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745927020260625).event)@515475106 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@2040115475) - server.haengdong.domain.action.MemberAction(m).action(745927020260625) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745927020260625))@1052191381 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1883303220) - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@614851622 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - -2024-08-07 17:43:07 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:43:07 - Initiating transaction commit -2024-08-07 17:43:07 - Committing JPA transaction on EntityManager [SessionImpl(417771154<open>)] -2024-08-07 17:43:07 - committing -2024-08-07 17:43:07 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@483998038 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:43:07 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:43:07 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:43:07 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:43:07 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:07 - Completed 200 OK -2024-08-07 17:43:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:43:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:43:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:43:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:43:50 - GET "/api/events/621ee88b-75b3-48ec-b3a3-9b76f9e1b0de", parameters={} -2024-08-07 17:43:50 - GET "/api/events/621ee88b-75b3-48ec-b3a3-9b76f9e1b0de/actions", parameters={} -2024-08-07 17:43:50 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:43:50 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:43:50 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:50 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:50 - Found thread-bound EntityManager [SessionImpl(2121625418<open>)] for JPA transaction -2024-08-07 17:43:50 - Found thread-bound EntityManager [SessionImpl(1263157159<open>)] for JPA transaction -2024-08-07 17:43:50 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:43:50 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:43:50 - Setting JDBC Connection [HikariProxyConnection@1221612072 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:43:50 - Setting JDBC Connection [HikariProxyConnection@2097002961 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:43:50 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:43:50 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:43:50 - begin -2024-08-07 17:43:50 - begin -2024-08-07 17:43:50 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@746e362b] -2024-08-07 17:43:50 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@27c86c1c] -2024-08-07 17:43:50 - Created new SQL alias : e1_0 -2024-08-07 17:43:50 - Created new SQL alias : e1_0 -2024-08-07 17:43:50 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745927059916791))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:43:50 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745927059916791))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:43:50 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@6dc32bdf -2024-08-07 17:43:50 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@71ccd301 -2024-08-07 17:43:50 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745927059916791).token) -2024-08-07 17:43:50 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745927059916791).token) -2024-08-07 17:43:50 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745927059916791)] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745927059916791).token] - -2024-08-07 17:43:50 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745927059916791)] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745927059916791).token] - -2024-08-07 17:43:50 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745927059916791)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:43:50 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745927059916791)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:43:50 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:43:50 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:43:50 - Initializer list: - server.haengdong.domain.event.Event(745927059916791) -> EntityResultInitializer(server.haengdong.domain.event.Event(745927059916791))@2140785673 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:43:50 - Initializer list: - server.haengdong.domain.event.Event(745927059916791) -> EntityResultInitializer(server.haengdong.domain.event.Event(745927059916791))@1353780798 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:43:50 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:43:50 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:43:50 - Extracted JDBC value [0] - [1] -2024-08-07 17:43:50 - Extracted JDBC value [0] - [1] -2024-08-07 17:43:50 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745927059916791)): 1 -2024-08-07 17:43:50 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745927059916791)): 1 -2024-08-07 17:43:50 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745927059916791)#1] : 1761997134 -2024-08-07 17:43:50 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745927059916791)#1] : 1490723773 -2024-08-07 17:43:50 - Extracted JDBC value [1] - [1234] -2024-08-07 17:43:50 - Extracted JDBC value [1] - [1234] -2024-08-07 17:43:50 - Extracted JDBC value [2] - [1234] -2024-08-07 17:43:50 - Extracted JDBC value [2] - [1234] -2024-08-07 17:43:50 - Extracted JDBC value [3] - [621ee88b-75b3-48ec-b3a3-9b76f9e1b0de] -2024-08-07 17:43:50 - Extracted JDBC value [3] - [621ee88b-75b3-48ec-b3a3-9b76f9e1b0de] -2024-08-07 17:43:50 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745927059916791)#1 -2024-08-07 17:43:50 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745927059916791)#1 -2024-08-07 17:43:50 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@428666 -2024-08-07 17:43:50 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@584d91e3 -2024-08-07 17:43:50 - Initiating transaction commit -2024-08-07 17:43:50 - Committing JPA transaction on EntityManager [SessionImpl(1263157159<open>)] -2024-08-07 17:43:50 - committing -2024-08-07 17:43:50 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@2097002961 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:43:50 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:43:50 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:43:50 - Created new SQL alias : ba1_0 -2024-08-07 17:43:50 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(745926901414000))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:43:50 - Writing [EventDetailResponse[eventName=1234]] -2024-08-07 17:43:50 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@32f9762d] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:43:50 - Created new SQL alias : a1_0 -2024-08-07 17:43:50 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@261ca7a2] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:43:50 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@32f9762d] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:43:50 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@60059d88 -2024-08-07 17:43:50 - Created new SQL alias : e1_0 -2024-08-07 17:43:50 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@66ade530 -2024-08-07 17:43:50 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(745926901414000).action(745926901451583).event(745926901462166) : event) -2024-08-07 17:43:50 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:50 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(745926901414000)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(745926901414000).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(745926901414000).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(745926901414000).title] - -2024-08-07 17:43:50 - Completed 200 OK -2024-08-07 17:43:50 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(745926901414000)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(745926901414000).action(745926901451583)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(745926901414000).action(745926901451583).event(745926901462166)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:43:50 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:43:50 - Initializer list: - server.haengdong.domain.action.BillAction(745926901414000).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(745926901414000).action)@267065598 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@978526730) - server.haengdong.domain.action.BillAction(745926901414000) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(745926901414000))@1994018608 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - server.haengdong.domain.action.BillAction(745926901414000).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(745926901414000).action.event)@892917758 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@2040115475) - -2024-08-07 17:43:50 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:43:50 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:43:50 - Initializer list: - server.haengdong.domain.action.MemberAction(m).action(745927020260625).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745927020260625).event)@1667301769 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@2040115475) - server.haengdong.domain.action.MemberAction(m).action(745927020260625) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745927020260625))@278248764 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1883303220) - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@1835627898 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - -2024-08-07 17:43:50 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:43:50 - Initiating transaction commit -2024-08-07 17:43:50 - Committing JPA transaction on EntityManager [SessionImpl(2121625418<open>)] -2024-08-07 17:43:50 - committing -2024-08-07 17:43:50 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1221612072 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:43:50 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:43:50 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:43:50 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:43:50 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:50 - Completed 200 OK -2024-08-07 17:43:56 - POST "/api/events", parameters={} -2024-08-07 17:43:56 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:43:56 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:56 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=12345, password=1234]] -2024-08-07 17:43:56 - Found thread-bound EntityManager [SessionImpl(537024694<open>)] for JPA transaction -2024-08-07 17:43:56 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 17:43:56 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:43:56 - begin -2024-08-07 17:43:56 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@6500d2d2] -2024-08-07 17:43:56 - Found thread-bound EntityManager [SessionImpl(537024694<open>)] for JPA transaction -2024-08-07 17:43:56 - Participating in existing transaction -2024-08-07 17:43:56 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 17:43:56 - Executing identity-insert immediately -2024-08-07 17:43:56 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 17:43:56 - Initializer list is empty -2024-08-07 17:43:56 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@109a2027 -2024-08-07 17:43:56 - Extracted JDBC value [0] - [2] -2024-08-07 17:43:56 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@33db3f9 -2024-08-07 17:43:56 - Initiating transaction commit -2024-08-07 17:43:56 - Committing JPA transaction on EntityManager [SessionImpl(537024694<open>)] -2024-08-07 17:43:56 - committing -2024-08-07 17:43:56 - Processing flush-time cascades -2024-08-07 17:43:56 - Dirty checking collections -2024-08-07 17:43:56 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 17:43:56 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 17:43:56 - Listing entities: -2024-08-07 17:43:56 - server.haengdong.domain.event.Event{password=1234, name=12345, id=2, token=09df03e3-13e8-4620-a5e4-c024ae1946c8} -2024-08-07 17:43:56 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:43:56 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:43:56 - Writing [EventResponse[eventId=09df03e3-13e8-4620-a5e4-c024ae1946c8]] -2024-08-07 17:43:56 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:56 - Completed 200 OK -2024-08-07 17:43:59 - OPTIONS "/api/events/09df03e3-13e8-4620-a5e4-c024ae1946c8/actions", parameters={} -2024-08-07 17:43:59 - OPTIONS "/api/events/09df03e3-13e8-4620-a5e4-c024ae1946c8", parameters={} -2024-08-07 17:43:59 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:43:59 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:43:59 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:59 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:59 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:59 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:59 - Completed 200 OK -2024-08-07 17:43:59 - Completed 200 OK -2024-08-07 17:43:59 - GET "/api/events/09df03e3-13e8-4620-a5e4-c024ae1946c8", parameters={} -2024-08-07 17:43:59 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:43:59 - GET "/api/events/09df03e3-13e8-4620-a5e4-c024ae1946c8/actions", parameters={} -2024-08-07 17:43:59 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:59 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:43:59 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:59 - Found thread-bound EntityManager [SessionImpl(31460367<open>)] for JPA transaction -2024-08-07 17:43:59 - Found thread-bound EntityManager [SessionImpl(1170219918<open>)] for JPA transaction -2024-08-07 17:43:59 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:43:59 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:43:59 - Setting JDBC Connection [HikariProxyConnection@98539755 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:43:59 - Setting JDBC Connection [HikariProxyConnection@2112330763 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:43:59 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:43:59 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:43:59 - begin -2024-08-07 17:43:59 - begin -2024-08-07 17:43:59 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@40dd0634] -2024-08-07 17:43:59 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@701ab68f] -2024-08-07 17:43:59 - Created new SQL alias : e1_0 -2024-08-07 17:43:59 - Created new SQL alias : e1_0 -2024-08-07 17:43:59 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745927059916791))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:43:59 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745927059916791))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:43:59 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@3d22593a -2024-08-07 17:43:59 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@70568e9f -2024-08-07 17:43:59 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745927059916791).token) -2024-08-07 17:43:59 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745927059916791).token) -2024-08-07 17:43:59 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745927059916791)] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745927059916791).token] - -2024-08-07 17:43:59 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745927059916791)] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745927059916791).token] - -2024-08-07 17:43:59 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745927059916791)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:43:59 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745927059916791)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:43:59 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:43:59 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:43:59 - Initializer list: - server.haengdong.domain.event.Event(745927059916791) -> EntityResultInitializer(server.haengdong.domain.event.Event(745927059916791))@552794491 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:43:59 - Initializer list: - server.haengdong.domain.event.Event(745927059916791) -> EntityResultInitializer(server.haengdong.domain.event.Event(745927059916791))@502754037 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:43:59 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:43:59 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:43:59 - Extracted JDBC value [0] - [2] -2024-08-07 17:43:59 - Extracted JDBC value [0] - [2] -2024-08-07 17:43:59 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745927059916791)): 2 -2024-08-07 17:43:59 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(745927059916791)): 2 -2024-08-07 17:43:59 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745927059916791)#2] : 322092804 -2024-08-07 17:43:59 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(745927059916791)#2] : 1172677503 -2024-08-07 17:43:59 - Extracted JDBC value [1] - [12345] -2024-08-07 17:43:59 - Extracted JDBC value [1] - [12345] -2024-08-07 17:43:59 - Extracted JDBC value [2] - [1234] -2024-08-07 17:43:59 - Extracted JDBC value [2] - [1234] -2024-08-07 17:43:59 - Extracted JDBC value [3] - [09df03e3-13e8-4620-a5e4-c024ae1946c8] -2024-08-07 17:43:59 - Extracted JDBC value [3] - [09df03e3-13e8-4620-a5e4-c024ae1946c8] -2024-08-07 17:43:59 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745927059916791)#2 -2024-08-07 17:43:59 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(745927059916791)#2 -2024-08-07 17:43:59 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@6363c9f4 -2024-08-07 17:43:59 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@24bca538 -2024-08-07 17:43:59 - Initiating transaction commit -2024-08-07 17:43:59 - Committing JPA transaction on EntityManager [SessionImpl(31460367<open>)] -2024-08-07 17:43:59 - committing -2024-08-07 17:43:59 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@98539755 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:43:59 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:43:59 - Created new SQL alias : ba1_0 -2024-08-07 17:43:59 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:43:59 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(745926901414000))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 17:43:59 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5fc091a1] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:43:59 - Writing [EventDetailResponse[eventName=12345]] -2024-08-07 17:43:59 - Created new SQL alias : a1_0 -2024-08-07 17:43:59 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2291cfc4] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 17:43:59 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5fc091a1] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 17:43:59 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@60059d88 -2024-08-07 17:43:59 - Created new SQL alias : e1_0 -2024-08-07 17:43:59 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@49a5f2bb -2024-08-07 17:43:59 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(745926901414000).action(745926901451583).event(745926901462166) : event) -2024-08-07 17:43:59 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(745926901414000)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(745926901414000).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(745926901414000).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(745926901414000).title] - -2024-08-07 17:43:59 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:59 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(745926901414000)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(745926901414000).action(745926901451583)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(745926901414000).action(745926901451583).event(745926901462166)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 17:43:59 - Completed 200 OK -2024-08-07 17:43:59 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:43:59 - Initializer list: - server.haengdong.domain.action.BillAction(745926901414000).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(745926901414000).action)@1115997866 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@978526730) - server.haengdong.domain.action.BillAction(745926901414000) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(745926901414000))@420612802 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - server.haengdong.domain.action.BillAction(745926901414000).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(745926901414000).action.event)@902891979 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@2040115475) - -2024-08-07 17:43:59 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 17:43:59 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:43:59 - Initializer list: - server.haengdong.domain.action.MemberAction(m).action(745927020260625).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745927020260625).event)@578575585 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@2040115475) - server.haengdong.domain.action.MemberAction(m).action(745927020260625) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(745927020260625))@526288436 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1883303220) - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@1905847313 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - -2024-08-07 17:43:59 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 17:43:59 - Initiating transaction commit -2024-08-07 17:43:59 - Committing JPA transaction on EntityManager [SessionImpl(1170219918<open>)] -2024-08-07 17:43:59 - committing -2024-08-07 17:43:59 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@2112330763 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:43:59 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:43:59 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:43:59 - Writing [StepsResponse[steps=[]]] -2024-08-07 17:43:59 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:43:59 - Completed 200 OK -2024-08-07 17:44:10 - OPTIONS "/api/events/09df03e3-13e8-4620-a5e4-c024ae1946c8/member-actions", parameters={} -2024-08-07 17:44:10 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:44:10 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:44:10 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:44:10 - Completed 200 OK -2024-08-07 17:44:10 - POST "/api/events/09df03e3-13e8-4620-a5e4-c024ae1946c8/member-actions", parameters={} -2024-08-07 17:44:10 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 17:44:10 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 17:44:10 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:44:10 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 17:44:10 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 17:44:10 - Completed 401 UNAUTHORIZED -2024-08-07 17:44:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:44:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:44:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:44:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:45:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:45:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:45:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:45:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:46:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:46:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:46:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:46:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:47:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:47:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:47:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:47:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:48:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:48:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:48:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:48:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:49:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:49:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:49:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:49:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:50:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:50:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:50:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:50:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:51:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:51:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:51:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:51:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:52:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:52:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:52:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:52:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:53:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:53:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:53:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:53:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:54:05 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb/actions", parameters={} -2024-08-07 17:54:05 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb", parameters={} -2024-08-07 17:54:05 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:54:05 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:54:05 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:54:05 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:54:05 - Found thread-bound EntityManager [SessionImpl(1334877993<open>)] for JPA transaction -2024-08-07 17:54:05 - Found thread-bound EntityManager [SessionImpl(209952747<open>)] for JPA transaction -2024-08-07 17:54:05 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:54:05 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:54:05 - Setting JDBC Connection [HikariProxyConnection@1769267460 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:54:05 - Setting JDBC Connection [HikariProxyConnection@55395180 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:54:05 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:54:05 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:54:05 - begin -2024-08-07 17:54:05 - begin -2024-08-07 17:54:05 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@4cb9d395] -2024-08-07 17:54:05 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@4297d03a] -2024-08-07 17:54:05 - Created new SQL alias : e1_0 -2024-08-07 17:54:05 - Created new SQL alias : e1_0 -2024-08-07 17:54:05 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745927059916791))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:54:05 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745927059916791))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:54:05 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@2c5b11ea -2024-08-07 17:54:05 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@33173b20 -2024-08-07 17:54:05 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745927059916791).token) -2024-08-07 17:54:05 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745927059916791).token) -2024-08-07 17:54:05 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745927059916791)] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745927059916791).token] - -2024-08-07 17:54:05 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745927059916791)] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745927059916791).token] - -2024-08-07 17:54:05 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745927059916791)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:54:05 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745927059916791)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:54:05 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:54:05 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:54:05 - Initializer list: - server.haengdong.domain.event.Event(745927059916791) -> EntityResultInitializer(server.haengdong.domain.event.Event(745927059916791))@694337807 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:54:05 - Initializer list: - server.haengdong.domain.event.Event(745927059916791) -> EntityResultInitializer(server.haengdong.domain.event.Event(745927059916791))@882927953 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:54:05 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:54:05 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:54:05 - Initiating transaction rollback -2024-08-07 17:54:05 - Initiating transaction rollback -2024-08-07 17:54:05 - Rolling back JPA transaction on EntityManager [SessionImpl(1334877993<open>)] -2024-08-07 17:54:05 - Rolling back JPA transaction on EntityManager [SessionImpl(209952747<open>)] -2024-08-07 17:54:05 - rolling back -2024-08-07 17:54:05 - rolling back -2024-08-07 17:54:05 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1769267460 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:54:05 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@55395180 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:54:05 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:54:05 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:54:05 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException) -2024-08-07 17:54:05 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException) -2024-08-07 17:54:05 - 존재하지 않는 행사입니다. -server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다. - at server.haengdong.application.EventService.lambda$getEvent$1(EventService.java:128) - at java.base/java.util.Optional.orElseThrow(Optional.java:403) - at server.haengdong.application.EventService.getEvent(EventService.java:128) - at server.haengdong.application.EventService.findActions(EventService.java:53) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at server.haengdong.application.EventService$$SpringCGLIB$$0.findActions(<generated>) - at server.haengdong.presentation.EventController.findActions(EventController.java:56) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:54:05 - 존재하지 않는 행사입니다. -server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다. - at server.haengdong.application.EventService.lambda$getEvent$1(EventService.java:128) - at java.base/java.util.Optional.orElseThrow(Optional.java:403) - at server.haengdong.application.EventService.getEvent(EventService.java:128) - at server.haengdong.application.EventService.findEvent(EventService.java:47) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at server.haengdong.application.EventService$$SpringCGLIB$$0.findEvent(<generated>) - at server.haengdong.presentation.EventController.findEvent(EventController.java:49) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:54:05 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:54:05 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:54:05 - Writing [ErrorResponse[code=EV_400, message=존재하지 않는 행사입니다.]] -2024-08-07 17:54:05 - Writing [ErrorResponse[code=EV_400, message=존재하지 않는 행사입니다.]] -2024-08-07 17:54:05 - Resolved [server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다.] -2024-08-07 17:54:05 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:54:05 - Resolved [server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다.] -2024-08-07 17:54:05 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:54:05 - Completed 400 BAD_REQUEST -2024-08-07 17:54:05 - Completed 400 BAD_REQUEST -2024-08-07 17:54:15 - RMI Scheduler(0): 79f2b9bb6743f7a7:-19764d72:1912baf6179:-7fff -2024-08-07 17:54:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:54:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:54:21 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb", parameters={} -2024-08-07 17:54:21 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb/actions", parameters={} -2024-08-07 17:54:21 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:54:21 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:54:21 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:54:21 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:54:21 - Found thread-bound EntityManager [SessionImpl(1277160262<open>)] for JPA transaction -2024-08-07 17:54:21 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:54:21 - Found thread-bound EntityManager [SessionImpl(1714649215<open>)] for JPA transaction -2024-08-07 17:54:21 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:54:21 - Setting JDBC Connection [HikariProxyConnection@1210082845 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:54:21 - Setting JDBC Connection [HikariProxyConnection@435797105 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:54:21 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:54:21 - begin -2024-08-07 17:54:21 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:54:21 - begin -2024-08-07 17:54:21 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@d22e17d] -2024-08-07 17:54:21 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@fa6dc20] -2024-08-07 17:54:21 - Created new SQL alias : e1_0 -2024-08-07 17:54:21 - Created new SQL alias : e1_0 -2024-08-07 17:54:21 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745927059916791))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:54:21 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745927059916791))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:54:21 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@9a386bd -2024-08-07 17:54:21 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@f9336d1 -2024-08-07 17:54:21 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745927059916791).token) -2024-08-07 17:54:21 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745927059916791).token) -2024-08-07 17:54:21 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745927059916791)] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745927059916791).token] - -2024-08-07 17:54:21 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745927059916791)] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745927059916791).token] - -2024-08-07 17:54:21 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745927059916791)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:54:21 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745927059916791)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:54:21 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:54:21 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:54:21 - Initializer list: - server.haengdong.domain.event.Event(745927059916791) -> EntityResultInitializer(server.haengdong.domain.event.Event(745927059916791))@1829576242 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:54:21 - Initializer list: - server.haengdong.domain.event.Event(745927059916791) -> EntityResultInitializer(server.haengdong.domain.event.Event(745927059916791))@421419094 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:54:21 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:54:21 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:54:21 - Initiating transaction rollback -2024-08-07 17:54:21 - Initiating transaction rollback -2024-08-07 17:54:21 - Rolling back JPA transaction on EntityManager [SessionImpl(1277160262<open>)] -2024-08-07 17:54:21 - rolling back -2024-08-07 17:54:21 - Rolling back JPA transaction on EntityManager [SessionImpl(1714649215<open>)] -2024-08-07 17:54:21 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1210082845 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:54:21 - rolling back -2024-08-07 17:54:21 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:54:21 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@435797105 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:54:21 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:54:21 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException) -2024-08-07 17:54:21 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException) -2024-08-07 17:54:21 - 존재하지 않는 행사입니다. -server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다. - at server.haengdong.application.EventService.lambda$getEvent$1(EventService.java:128) - at java.base/java.util.Optional.orElseThrow(Optional.java:403) - at server.haengdong.application.EventService.getEvent(EventService.java:128) - at server.haengdong.application.EventService.findEvent(EventService.java:47) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at server.haengdong.application.EventService$$SpringCGLIB$$0.findEvent(<generated>) - at server.haengdong.presentation.EventController.findEvent(EventController.java:49) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:54:21 - 존재하지 않는 행사입니다. -server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다. - at server.haengdong.application.EventService.lambda$getEvent$1(EventService.java:128) - at java.base/java.util.Optional.orElseThrow(Optional.java:403) - at server.haengdong.application.EventService.getEvent(EventService.java:128) - at server.haengdong.application.EventService.findActions(EventService.java:53) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at server.haengdong.application.EventService$$SpringCGLIB$$0.findActions(<generated>) - at server.haengdong.presentation.EventController.findActions(EventController.java:56) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:54:21 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:54:21 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:54:21 - Writing [ErrorResponse[code=EV_400, message=존재하지 않는 행사입니다.]] -2024-08-07 17:54:21 - Writing [ErrorResponse[code=EV_400, message=존재하지 않는 행사입니다.]] -2024-08-07 17:54:21 - Resolved [server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다.] -2024-08-07 17:54:21 - Resolved [server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다.] -2024-08-07 17:54:21 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:54:21 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:54:21 - Completed 400 BAD_REQUEST -2024-08-07 17:54:21 - Completed 400 BAD_REQUEST -2024-08-07 17:54:27 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb", parameters={} -2024-08-07 17:54:27 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:54:27 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:54:27 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb/actions", parameters={} -2024-08-07 17:54:27 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:54:27 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:54:27 - Found thread-bound EntityManager [SessionImpl(1705353450<open>)] for JPA transaction -2024-08-07 17:54:27 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:54:27 - Setting JDBC Connection [HikariProxyConnection@1029467227 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:54:27 - Found thread-bound EntityManager [SessionImpl(2045741230<open>)] for JPA transaction -2024-08-07 17:54:27 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:54:27 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:54:27 - begin -2024-08-07 17:54:27 - Setting JDBC Connection [HikariProxyConnection@1327565798 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:54:27 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:54:27 - begin -2024-08-07 17:54:27 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@3b102e6b] -2024-08-07 17:54:27 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@1d730486] -2024-08-07 17:54:27 - Created new SQL alias : e1_0 -2024-08-07 17:54:27 - Created new SQL alias : e1_0 -2024-08-07 17:54:27 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745927059916791))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:54:27 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745927059916791))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:54:27 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@514b3892 -2024-08-07 17:54:27 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@7ac4d954 -2024-08-07 17:54:27 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745927059916791).token) -2024-08-07 17:54:27 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745927059916791).token) -2024-08-07 17:54:27 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745927059916791)] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745927059916791).token] - -2024-08-07 17:54:27 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745927059916791)] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745927059916791).token] - -2024-08-07 17:54:27 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745927059916791)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:54:27 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745927059916791)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:54:27 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:54:27 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:54:27 - Initializer list: - server.haengdong.domain.event.Event(745927059916791) -> EntityResultInitializer(server.haengdong.domain.event.Event(745927059916791))@1452740648 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:54:27 - Initializer list: - server.haengdong.domain.event.Event(745927059916791) -> EntityResultInitializer(server.haengdong.domain.event.Event(745927059916791))@370105973 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:54:27 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:54:27 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:54:27 - Initiating transaction rollback -2024-08-07 17:54:27 - Initiating transaction rollback -2024-08-07 17:54:27 - Rolling back JPA transaction on EntityManager [SessionImpl(2045741230<open>)] -2024-08-07 17:54:27 - Rolling back JPA transaction on EntityManager [SessionImpl(1705353450<open>)] -2024-08-07 17:54:27 - rolling back -2024-08-07 17:54:27 - rolling back -2024-08-07 17:54:27 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1029467227 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:54:27 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:54:27 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1327565798 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:54:27 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:54:27 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException) -2024-08-07 17:54:27 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException) -2024-08-07 17:54:27 - 존재하지 않는 행사입니다. -server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다. - at server.haengdong.application.EventService.lambda$getEvent$1(EventService.java:128) - at java.base/java.util.Optional.orElseThrow(Optional.java:403) - at server.haengdong.application.EventService.getEvent(EventService.java:128) - at server.haengdong.application.EventService.findActions(EventService.java:53) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at server.haengdong.application.EventService$$SpringCGLIB$$0.findActions(<generated>) - at server.haengdong.presentation.EventController.findActions(EventController.java:56) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:54:27 - 존재하지 않는 행사입니다. -server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다. - at server.haengdong.application.EventService.lambda$getEvent$1(EventService.java:128) - at java.base/java.util.Optional.orElseThrow(Optional.java:403) - at server.haengdong.application.EventService.getEvent(EventService.java:128) - at server.haengdong.application.EventService.findEvent(EventService.java:47) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at server.haengdong.application.EventService$$SpringCGLIB$$0.findEvent(<generated>) - at server.haengdong.presentation.EventController.findEvent(EventController.java:49) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:54:27 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:54:27 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:54:27 - Writing [ErrorResponse[code=EV_400, message=존재하지 않는 행사입니다.]] -2024-08-07 17:54:27 - Writing [ErrorResponse[code=EV_400, message=존재하지 않는 행사입니다.]] -2024-08-07 17:54:27 - Resolved [server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다.] -2024-08-07 17:54:27 - Resolved [server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다.] -2024-08-07 17:54:27 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:54:27 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:54:27 - Completed 400 BAD_REQUEST -2024-08-07 17:54:27 - Completed 400 BAD_REQUEST -2024-08-07 17:54:39 - POST "/api/events", parameters={} -2024-08-07 17:54:39 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 17:54:39 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:54:39 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=asdf, password=null]] -2024-08-07 17:54:39 - ValidationMessages not found. -2024-08-07 17:54:39 - ContributorValidationMessages not found. -2024-08-07 17:54:39 - org.hibernate.validator.ValidationMessages found. -2024-08-07 17:54:39 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#handleMethodArgumentNotValidException(MethodArgumentNotValidException) -2024-08-07 17:54:39 - Validation failed for argument [0] in public org.springframework.http.ResponseEntity<server.haengdong.presentation.response.EventResponse> server.haengdong.presentation.EventController.saveEvent(server.haengdong.presentation.request.EventSaveRequest): [Field error in object 'eventSaveRequest' on field 'password': rejected value [null]; codes [NotBlank.eventSaveRequest.password,NotBlank.password,NotBlank.java.lang.String,NotBlank]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [eventSaveRequest.password,password]; arguments []; default message [password]]; default message [공백일 수 없습니다]] -org.springframework.web.bind.MethodArgumentNotValidException: Validation failed for argument [0] in public org.springframework.http.ResponseEntity<server.haengdong.presentation.response.EventResponse> server.haengdong.presentation.EventController.saveEvent(server.haengdong.presentation.request.EventSaveRequest): [Field error in object 'eventSaveRequest' on field 'password': rejected value [null]; codes [NotBlank.eventSaveRequest.password,NotBlank.password,NotBlank.java.lang.String,NotBlank]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [eventSaveRequest.password,password]; arguments []; default message [password]]; default message [공백일 수 없습니다]] - at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.resolveArgument(RequestResponseBodyMethodProcessor.java:144) - at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) - at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:224) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:178) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:54:39 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:54:39 - Writing [ErrorResponse[code=R_001, message=password 공백일 수 없습니다]] -2024-08-07 17:54:39 - Resolved [org.springframework.web.bind.MethodArgumentNotValidException: Validation failed for argument [0] in public org.springframework.http.ResponseEntity<server.haengdong.presentation.response.EventResponse> server.haengdong.presentation.EventController.saveEvent(server.haengdong.presentation.request.EventSaveRequest): [Field error in object 'eventSaveRequest' on field 'password': rejected value [null]; codes [NotBlank.eventSaveRequest.password,NotBlank.password,NotBlank.java.lang.String,NotBlank]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [eventSaveRequest.password,password]; arguments []; default message [password]]; default message [공백일 수 없습니다]] ] -2024-08-07 17:54:39 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:54:39 - Completed 400 BAD_REQUEST -2024-08-07 17:54:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:54:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:55:01 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb", parameters={} -2024-08-07 17:55:01 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb/actions", parameters={} -2024-08-07 17:55:01 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:55:01 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:55:01 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:55:01 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:55:01 - Found thread-bound EntityManager [SessionImpl(695227205<open>)] for JPA transaction -2024-08-07 17:55:01 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:55:01 - Found thread-bound EntityManager [SessionImpl(2135503765<open>)] for JPA transaction -2024-08-07 17:55:01 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:55:01 - Setting JDBC Connection [HikariProxyConnection@1950772366 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:55:01 - Setting JDBC Connection [HikariProxyConnection@1224290114 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:55:01 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:55:01 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:55:01 - begin -2024-08-07 17:55:01 - begin -2024-08-07 17:55:01 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@4412ac41] -2024-08-07 17:55:01 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@388a41c6] -2024-08-07 17:55:01 - Created new SQL alias : e1_0 -2024-08-07 17:55:01 - Created new SQL alias : e1_0 -2024-08-07 17:55:01 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745927059916791))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:55:01 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745927059916791))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:55:01 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@3d7424fe -2024-08-07 17:55:01 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@564110b1 -2024-08-07 17:55:01 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745927059916791).token) -2024-08-07 17:55:01 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745927059916791).token) -2024-08-07 17:55:01 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745927059916791)] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745927059916791).token] - -2024-08-07 17:55:01 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745927059916791)] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745927059916791).token] - -2024-08-07 17:55:01 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745927059916791)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:55:01 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745927059916791)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:55:01 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:55:01 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:55:01 - Initializer list: - server.haengdong.domain.event.Event(745927059916791) -> EntityResultInitializer(server.haengdong.domain.event.Event(745927059916791))@2111433604 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:55:01 - Initializer list: - server.haengdong.domain.event.Event(745927059916791) -> EntityResultInitializer(server.haengdong.domain.event.Event(745927059916791))@1986443004 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:55:01 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:55:01 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:55:01 - Initiating transaction rollback -2024-08-07 17:55:01 - Initiating transaction rollback -2024-08-07 17:55:01 - Rolling back JPA transaction on EntityManager [SessionImpl(695227205<open>)] -2024-08-07 17:55:01 - Rolling back JPA transaction on EntityManager [SessionImpl(2135503765<open>)] -2024-08-07 17:55:01 - rolling back -2024-08-07 17:55:01 - rolling back -2024-08-07 17:55:01 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1950772366 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:55:01 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:55:01 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1224290114 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:55:01 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:55:01 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException) -2024-08-07 17:55:01 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException) -2024-08-07 17:55:01 - 존재하지 않는 행사입니다. -server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다. - at server.haengdong.application.EventService.lambda$getEvent$1(EventService.java:128) - at java.base/java.util.Optional.orElseThrow(Optional.java:403) - at server.haengdong.application.EventService.getEvent(EventService.java:128) - at server.haengdong.application.EventService.findActions(EventService.java:53) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at server.haengdong.application.EventService$$SpringCGLIB$$0.findActions(<generated>) - at server.haengdong.presentation.EventController.findActions(EventController.java:56) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:55:01 - 존재하지 않는 행사입니다. -server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다. - at server.haengdong.application.EventService.lambda$getEvent$1(EventService.java:128) - at java.base/java.util.Optional.orElseThrow(Optional.java:403) - at server.haengdong.application.EventService.getEvent(EventService.java:128) - at server.haengdong.application.EventService.findEvent(EventService.java:47) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at server.haengdong.application.EventService$$SpringCGLIB$$0.findEvent(<generated>) - at server.haengdong.presentation.EventController.findEvent(EventController.java:49) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:55:01 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:55:01 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:55:01 - Writing [ErrorResponse[code=EV_400, message=존재하지 않는 행사입니다.]] -2024-08-07 17:55:01 - Writing [ErrorResponse[code=EV_400, message=존재하지 않는 행사입니다.]] -2024-08-07 17:55:01 - Resolved [server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다.] -2024-08-07 17:55:01 - Resolved [server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다.] -2024-08-07 17:55:01 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:55:01 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:55:01 - Completed 400 BAD_REQUEST -2024-08-07 17:55:01 - Completed 400 BAD_REQUEST -2024-08-07 17:55:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:55:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:55:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:55:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:56:07 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb/actions", parameters={} -2024-08-07 17:56:07 - GET "/api/events/6120383b-eb75-4d38-ba06-94a480099ddb", parameters={} -2024-08-07 17:56:07 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 17:56:07 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 17:56:07 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:56:07 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:56:07 - Found thread-bound EntityManager [SessionImpl(31222609<open>)] for JPA transaction -2024-08-07 17:56:07 - Found thread-bound EntityManager [SessionImpl(1649175942<open>)] for JPA transaction -2024-08-07 17:56:07 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:56:07 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 17:56:07 - Setting JDBC Connection [HikariProxyConnection@128392265 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:56:07 - Setting JDBC Connection [HikariProxyConnection@1371594704 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 17:56:07 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:56:07 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 17:56:07 - begin -2024-08-07 17:56:07 - begin -2024-08-07 17:56:07 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@25e89b85] -2024-08-07 17:56:07 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@1789cb27] -2024-08-07 17:56:07 - Created new SQL alias : e1_0 -2024-08-07 17:56:07 - Created new SQL alias : e1_0 -2024-08-07 17:56:07 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745927059916791))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:56:07 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(745927059916791))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 17:56:07 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@2bc8f6e0 -2024-08-07 17:56:07 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745927059916791).token) -2024-08-07 17:56:07 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745927059916791)] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745927059916791).token] - -2024-08-07 17:56:07 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745927059916791)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:56:07 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@237f82bc -2024-08-07 17:56:07 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(745927059916791).token) -2024-08-07 17:56:07 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(745927059916791)] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).name] - | +-BasicFetch [server.haengdong.domain.event.Event(745927059916791).password] - | \-BasicFetch [server.haengdong.domain.event.Event(745927059916791).token] - -2024-08-07 17:56:07 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:56:07 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(745927059916791)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 17:56:07 - Initializer list: - server.haengdong.domain.event.Event(745927059916791) -> EntityResultInitializer(server.haengdong.domain.event.Event(745927059916791))@386074607 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:56:07 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 17:56:07 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:56:07 - Initializer list: - server.haengdong.domain.event.Event(745927059916791) -> EntityResultInitializer(server.haengdong.domain.event.Event(745927059916791))@750691246 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 17:56:07 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 17:56:07 - Initiating transaction rollback -2024-08-07 17:56:07 - Initiating transaction rollback -2024-08-07 17:56:07 - Rolling back JPA transaction on EntityManager [SessionImpl(31222609<open>)] -2024-08-07 17:56:07 - Rolling back JPA transaction on EntityManager [SessionImpl(1649175942<open>)] -2024-08-07 17:56:07 - rolling back -2024-08-07 17:56:07 - rolling back -2024-08-07 17:56:07 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@128392265 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:56:07 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:56:07 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1371594704 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 17:56:07 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 17:56:07 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException) -2024-08-07 17:56:07 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#haengdongException(HaengdongException) -2024-08-07 17:56:07 - 존재하지 않는 행사입니다. -server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다. - at server.haengdong.application.EventService.lambda$getEvent$1(EventService.java:128) - at java.base/java.util.Optional.orElseThrow(Optional.java:403) - at server.haengdong.application.EventService.getEvent(EventService.java:128) - at server.haengdong.application.EventService.findActions(EventService.java:53) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at server.haengdong.application.EventService$$SpringCGLIB$$0.findActions(<generated>) - at server.haengdong.presentation.EventController.findActions(EventController.java:56) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:56:07 - 존재하지 않는 행사입니다. -server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다. - at server.haengdong.application.EventService.lambda$getEvent$1(EventService.java:128) - at java.base/java.util.Optional.orElseThrow(Optional.java:403) - at server.haengdong.application.EventService.getEvent(EventService.java:128) - at server.haengdong.application.EventService.findEvent(EventService.java:47) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at server.haengdong.application.EventService$$SpringCGLIB$$0.findEvent(<generated>) - at server.haengdong.presentation.EventController.findEvent(EventController.java:49) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 17:56:07 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:56:07 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 17:56:07 - Writing [ErrorResponse[code=EV_400, message=존재하지 않는 행사입니다.]] -2024-08-07 17:56:07 - Writing [ErrorResponse[code=EV_400, message=존재하지 않는 행사입니다.]] -2024-08-07 17:56:07 - Resolved [server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다.] -2024-08-07 17:56:07 - Resolved [server.haengdong.exception.HaengdongException: 존재하지 않는 행사입니다.] -2024-08-07 17:56:07 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:56:07 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 17:56:07 - Completed 400 BAD_REQUEST -2024-08-07 17:56:07 - Completed 400 BAD_REQUEST -2024-08-07 17:56:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:56:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:56:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:56:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:57:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:57:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:57:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:57:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:58:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:58:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:58:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:58:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:59:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:59:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 17:59:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 17:59:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 18:00:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 18:00:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 18:00:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 18:00:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 18:01:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 18:01:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 18:01:45 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 18:01:45 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 18:02:15 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 18:02:15 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 18:02:36 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 18:02:36 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Wed Aug 07 17:39:14 KST 2024 -2024-08-07 18:02:36 - Stopping beans in phase 2147483647 -2024-08-07 18:02:36 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 18:02:36 - Stopping beans in phase 2147482623 -2024-08-07 18:02:36 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 18:02:36 - Stopping beans in phase 2147481599 -2024-08-07 18:02:36 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 18:02:36 - Stopping beans in phase -2147483647 -2024-08-07 18:02:36 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 18:02:36 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 18:02:36 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 18:02:36 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 18:02:36 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 18:02:36 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 18:02:36 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 18:02:36 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 18:02:36 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 18:02:36 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 18:02:36 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 18:02:36 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 18:02:36 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 18:02:36 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 18:02:36 - Unregistering JMX-exposed beans on shutdown -2024-08-07 18:02:36 - Unregistering JMX-exposed beans -2024-08-07 18:02:36 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 18:02:36 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 18:02:36 - HHH000031: Closing -2024-08-07 18:02:36 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@7927caf1] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@4ccf1d3e] -2024-08-07 18:02:36 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 18:02:36 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 18:02:36 - HikariPool-1 - Shutdown initiated... -2024-08-07 18:02:36 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 18:02:36 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:02:36 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:02:36 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:02:36 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:02:36 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:02:36 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:02:36 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:02:36 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:02:36 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:02:36 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:02:36 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 18:02:36 - HikariPool-1 - Shutdown completed. -2024-08-07 18:02:36 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 18:02:38 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 18:02:38 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 18:02:38 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 18:02:38 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 18:02:38 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 18:02:38 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 18:02:38 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 18:02:38 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 18:02:38 - Loaded expression factory via original TCCL -2024-08-07 18:02:38 - Starting HaengdongApplication using Java 17.0.12 with PID 65850 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 18:02:38 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 18:02:38 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 18:02:38 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 18:02:38 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 18:02:38 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 18:02:38 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 18:02:38 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 18:02:38 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 18:02:38 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 18:02:38 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 18:02:38 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 18:02:38 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 18:02:38 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 18:02:38 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 18:02:38 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 18:02:38 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 18:02:38 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 18:02:38 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 18:02:38 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 18:02:38 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 18:02:38 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 18:02:38 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 18:02:38 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 18:02:38 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 18:02:38 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 18:02:38 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 18:02:38 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 18:02:38 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 18:02:38 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 18:02:38 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 18:02:38 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 18:02:38 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 18:02:38 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 18:02:38 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 18:02:38 - Finished Spring Data repository scanning in 16 ms. Found 4 JPA repository interfaces. -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 18:02:38 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 18:02:38 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 18:02:38 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 18:02:38 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 18:02:38 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 18:02:38 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 18:02:38 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 18:02:38 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 18:02:38 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@1e545821] -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 18:02:38 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 18:02:38 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 18:02:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 18:02:38 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 18:02:38 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 18:02:38 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 18:02:38 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 18:02:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 18:02:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 18:02:38 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 18:02:38 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 18:02:38 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 18:02:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 18:02:38 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 18:02:38 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:02:38 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:02:38 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:02:38 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 18:02:38 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 18:02:38 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 18:02:38 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 18:02:38 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 18:02:38 - Tomcat initialized with port 8080 (http) -2024-08-07 18:02:38 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@62ea8931] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@62ea8931] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.mapper.MapperListener@4703c998] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.mapper.MapperListener@4703c998] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 18:02:38 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 18:02:38 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@62ea8931] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@62ea8931] to [STARTING] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@62ea8931] to [STARTED] -2024-08-07 18:02:38 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 18:02:38 - Starting service [Tomcat] -2024-08-07 18:02:38 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 18:02:38 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 18:02:38 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.webresources.StandardRoot@684ce74c] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.webresources.StandardRoot@684ce74c] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.webresources.StandardRoot@684ce74c] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.webresources.DirResourceSet@3a3883c4] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.webresources.DirResourceSet@3a3883c4] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.webresources.DirResourceSet@3a3883c4] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.webresources.DirResourceSet@3a3883c4] to [STARTING] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.webresources.DirResourceSet@3a3883c4] to [STARTED] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.webresources.StandardRoot@684ce74c] to [STARTING] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.webresources.StandardRoot@684ce74c] to [STARTED] -2024-08-07 18:02:38 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 18:02:38 - Starting this Loader -2024-08-07 18:02:38 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 18:02:38 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 18:02:38 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 18:02:38 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6befbb12] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6befbb12] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6befbb12] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6befbb12] to [STARTING] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6befbb12] to [STARTED] -2024-08-07 18:02:38 - Initializing Spring embedded WebApplicationContext -2024-08-07 18:02:38 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 18:02:38 - Root WebApplicationContext: initialization completed in 615 ms -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:02:38 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 18:02:38 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 18:02:38 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 18:02:38 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 18:02:38 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 18:02:38 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:02:38 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 18:02:38 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:02:38 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 18:02:38 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 18:02:38 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:02:38 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 18:02:38 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 18:02:38 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 18:02:38 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 18:02:38 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 18:02:38 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 18:02:38 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 18:02:38 - HikariPool-1 - configuration: -2024-08-07 18:02:38 - allowPoolSuspension.............false -2024-08-07 18:02:38 - autoCommit......................true -2024-08-07 18:02:38 - catalog.........................none -2024-08-07 18:02:38 - connectionInitSql...............none -2024-08-07 18:02:38 - connectionTestQuery.............none -2024-08-07 18:02:38 - connectionTimeout...............30000 -2024-08-07 18:02:38 - dataSource......................none -2024-08-07 18:02:38 - dataSourceClassName.............none -2024-08-07 18:02:38 - dataSourceJNDI..................none -2024-08-07 18:02:38 - dataSourceProperties............{password=<masked>} -2024-08-07 18:02:38 - driverClassName................."org.h2.Driver" -2024-08-07 18:02:38 - exceptionOverrideClassName......none -2024-08-07 18:02:38 - healthCheckProperties...........{} -2024-08-07 18:02:38 - healthCheckRegistry.............none -2024-08-07 18:02:38 - idleTimeout.....................600000 -2024-08-07 18:02:38 - initializationFailTimeout.......1 -2024-08-07 18:02:38 - isolateInternalQueries..........false -2024-08-07 18:02:38 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 18:02:38 - keepaliveTime...................0 -2024-08-07 18:02:38 - leakDetectionThreshold..........0 -2024-08-07 18:02:38 - maxLifetime.....................1800000 -2024-08-07 18:02:38 - maximumPoolSize.................10 -2024-08-07 18:02:38 - metricRegistry..................none -2024-08-07 18:02:38 - metricsTrackerFactory...........none -2024-08-07 18:02:38 - minimumIdle.....................10 -2024-08-07 18:02:38 - password........................<masked> -2024-08-07 18:02:38 - poolName........................"HikariPool-1" -2024-08-07 18:02:38 - readOnly........................false -2024-08-07 18:02:38 - registerMbeans..................false -2024-08-07 18:02:38 - scheduledExecutor...............none -2024-08-07 18:02:38 - schema..........................none -2024-08-07 18:02:38 - threadFactory...................internal -2024-08-07 18:02:38 - transactionIsolation............default -2024-08-07 18:02:38 - username........................"sa" -2024-08-07 18:02:38 - validationTimeout...............5000 -2024-08-07 18:02:38 - HikariPool-1 - Starting... -2024-08-07 18:02:38 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 18:02:38 - HikariPool-1 - Start completed. -2024-08-07 18:02:38 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 18:02:38 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 18:02:38 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:02:38 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 18:02:38 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:02:38 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:02:38 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 18:02:38 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 18:02:38 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 18:02:38 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 18:02:38 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 18:02:38 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 18:02:38 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@15f861ee] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@15f861ee] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@15f861ee] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@15f861ee] to [STARTING] -2024-08-07 18:02:38 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@15f861ee] to [STARTED] -2024-08-07 18:02:38 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 18:02:38 - Filter 'requestContextFilter' configured for use -2024-08-07 18:02:38 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 18:02:38 - Filter 'characterEncodingFilter' configured for use -2024-08-07 18:02:38 - Filter 'formContentFilter' configured for use -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 18:02:38 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 18:02:38 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 18:02:38 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 18:02:38 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.mapper.MapperListener@4703c998] to [STARTING_PREP] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.mapper.MapperListener@4703c998] to [STARTING] -2024-08-07 18:02:38 - Registered host [localhost] -2024-08-07 18:02:38 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 18:02:38 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 18:02:38 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 18:02:38 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 18:02:38 - Setting state for [org.apache.catalina.mapper.MapperListener@4703c998] to [STARTED] -2024-08-07 18:02:38 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 18:02:38 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:50468] -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:38 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 18:02:38 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 18:02:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 18:02:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 18:02:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 18:02:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 84 -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:38 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 18:02:38 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:38 - [javax.management.remote.rmi.RMIConnectionImpl@87de099: connectionId=rmi://127.0.0.1 1] closing. -2024-08-07 18:02:38 - [javax.management.remote.rmi.RMIConnectionImpl@87de099: connectionId=rmi://127.0.0.1 1] closed. -2024-08-07 18:02:38 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 18:02:38 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 18:02:38 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 18:02:38 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:02:38 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 18:02:38 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 18:02:38 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 18:02:38 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 18:02:39 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 18:02:39 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 18:02:39 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 18:02:39 - HHH000206: 'hibernate.properties' not found -2024-08-07 18:02:39 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 18:02:39 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 18:02:39 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 18:02:39 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 18:02:39 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 18:02:39 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 18:02:39 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 18:02:39 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 18:02:39 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 18:02:39 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 18:02:39 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 18:02:39 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 18:02:39 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 18:02:39 - HHH000026: Second-level cache disabled -2024-08-07 18:02:39 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 18:02:39 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 18:02:39 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 18:02:39 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 18:02:39 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 18:02:39 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 18:02:39 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 18:02:39 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 18:02:39 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 18:02:39 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 18:02:39 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 18:02:39 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 18:02:39 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 18:02:39 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 18:02:39 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 18:02:39 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 18:02:39 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 18:02:39 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 18:02:39 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 18:02:39 - Adding type registration image -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 18:02:39 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 18:02:39 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 18:02:39 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 18:02:39 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 18:02:39 - Adding type registration short -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 18:02:39 - Adding type registration short -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 18:02:39 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 18:02:39 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 18:02:39 - Adding type registration int -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 18:02:39 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 18:02:39 - Adding type registration long -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 18:02:39 - Adding type registration long -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 18:02:39 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 18:02:39 - Adding type registration float -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 18:02:39 - Adding type registration float -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 18:02:39 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 18:02:39 - Adding type registration double -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 18:02:39 - Adding type registration double -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 18:02:39 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 18:02:39 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 18:02:39 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 18:02:39 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 18:02:39 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 18:02:39 - Adding type registration character -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 18:02:39 - Adding type registration char -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 18:02:39 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 18:02:39 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 18:02:39 - Adding type registration string -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 18:02:39 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 18:02:39 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 18:02:39 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 18:02:39 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 18:02:39 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 18:02:39 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 18:02:39 - Adding type registration text -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 18:02:39 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 18:02:39 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 18:02:39 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 18:02:39 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 18:02:39 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 18:02:39 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 18:02:39 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 18:02:39 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 18:02:39 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 18:02:39 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 18:02:39 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 18:02:39 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 18:02:39 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 18:02:39 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 18:02:39 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 18:02:39 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 18:02:39 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 18:02:39 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 18:02:39 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 18:02:39 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 18:02:39 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 18:02:39 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 18:02:39 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 18:02:39 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 18:02:39 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 18:02:39 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 18:02:39 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 18:02:39 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 18:02:39 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 18:02:39 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 18:02:39 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 18:02:39 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 18:02:39 - Adding type registration date -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 18:02:39 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 18:02:39 - Adding type registration time -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 18:02:39 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 18:02:39 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 18:02:39 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 18:02:39 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 18:02:39 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 18:02:39 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 18:02:39 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 18:02:39 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 18:02:39 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 18:02:39 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 18:02:39 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 18:02:39 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 18:02:39 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 18:02:39 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 18:02:39 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 18:02:39 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 18:02:39 - Adding type registration class -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-07 18:02:39 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-07 18:02:39 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 18:02:39 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 18:02:39 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 18:02:39 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-07 18:02:39 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-07 18:02:39 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-07 18:02:39 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-07 18:02:39 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-07 18:02:39 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-07 18:02:39 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@2c5708e7 -2024-08-07 18:02:39 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@2c5708e7 -2024-08-07 18:02:39 - Adding type registration url -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-07 18:02:39 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-07 18:02:39 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@4e26564d -2024-08-07 18:02:39 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@42238078 -2024-08-07 18:02:39 - Adding type registration object -> org.hibernate.type.JavaObjectType@79445efb -2024-08-07 18:02:39 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@79445efb -2024-08-07 18:02:39 - Adding type registration null -> org.hibernate.type.NullType@573870cb -2024-08-07 18:02:39 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@5b88af70 -2024-08-07 18:02:39 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@2739ecc0 -2024-08-07 18:02:39 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@2932e15f -2024-08-07 18:02:39 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@3d98729a -2024-08-07 18:02:39 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@2375a976 -2024-08-07 18:02:39 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@4bc21e34 -2024-08-07 18:02:39 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@7544260a -2024-08-07 18:02:39 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@bb6869a -2024-08-07 18:02:39 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bddf43] into BootstrapContext; was [null] -2024-08-07 18:02:39 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bddf43) [was null] -2024-08-07 18:02:39 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@23708f14] into BootstrapContext; was [null] -2024-08-07 18:02:39 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@3dfc59c5] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@2cff5aa3] -2024-08-07 18:02:39 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 18:02:39 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 18:02:39 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 18:02:39 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 18:02:39 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 18:02:39 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bddf43] -2024-08-07 18:02:39 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bddf43] -2024-08-07 18:02:39 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-07 18:02:39 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 18:02:39 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 18:02:39 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 18:02:39 - JDBC version : 4.2 -2024-08-07 18:02:39 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 18:02:39 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 18:02:39 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 18:02:39 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 18:02:39 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 18:02:39 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 18:02:39 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 18:02:39 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 18:02:39 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 18:02:39 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 18:02:39 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 18:02:39 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@5111f814] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@71eafb64] -2024-08-07 18:02:39 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-07 18:02:39 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 18:02:39 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 18:02:39 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 18:02:39 - Import with entity name Action -2024-08-07 18:02:39 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 18:02:39 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 18:02:39 - Binding column: AnnotatedColumn() -2024-08-07 18:02:39 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 18:02:39 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 18:02:39 - MetadataSourceProcessor property id with lazy=false -2024-08-07 18:02:39 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 18:02:39 - building BasicValue for id -2024-08-07 18:02:39 - Skipping column re-registration: action.id -2024-08-07 18:02:39 - Building property id -2024-08-07 18:02:39 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 18:02:39 - Binding column: AnnotatedJoinColumn() -2024-08-07 18:02:39 - Binding column: AnnotatedColumn() -2024-08-07 18:02:39 - Building property event -2024-08-07 18:02:39 - Binding column: AnnotatedColumn() -2024-08-07 18:02:39 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 18:02:39 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 18:02:39 - building BasicValue for sequence -2024-08-07 18:02:39 - Skipping column re-registration: action.sequence -2024-08-07 18:02:39 - Building property sequence -2024-08-07 18:02:39 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 18:02:39 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 18:02:39 - Import with entity name BillAction -2024-08-07 18:02:39 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 18:02:39 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 18:02:39 - Binding column: AnnotatedColumn() -2024-08-07 18:02:39 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 18:02:39 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 18:02:39 - MetadataSourceProcessor property id with lazy=false -2024-08-07 18:02:39 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 18:02:39 - building BasicValue for id -2024-08-07 18:02:39 - Skipping column re-registration: bill_action.id -2024-08-07 18:02:39 - Building property id -2024-08-07 18:02:39 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 18:02:39 - Binding column: AnnotatedJoinColumn() -2024-08-07 18:02:39 - Binding column: AnnotatedColumn() -2024-08-07 18:02:39 - Building property action -2024-08-07 18:02:39 - Binding column: AnnotatedColumn() -2024-08-07 18:02:39 - MetadataSourceProcessor property price with lazy=false -2024-08-07 18:02:39 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 18:02:39 - building BasicValue for price -2024-08-07 18:02:39 - Skipping column re-registration: bill_action.price -2024-08-07 18:02:39 - Building property price -2024-08-07 18:02:39 - Binding column: AnnotatedColumn() -2024-08-07 18:02:39 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 18:02:39 - MetadataSourceProcessor property title with lazy=false -2024-08-07 18:02:39 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 18:02:39 - building BasicValue for title -2024-08-07 18:02:39 - Skipping column re-registration: bill_action.title -2024-08-07 18:02:39 - Building property title -2024-08-07 18:02:39 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 18:02:39 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 18:02:39 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 18:02:39 - Import with entity name MemberAction -2024-08-07 18:02:39 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 18:02:39 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 18:02:39 - Binding column: AnnotatedColumn() -2024-08-07 18:02:39 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 18:02:39 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 18:02:39 - MetadataSourceProcessor property id with lazy=false -2024-08-07 18:02:39 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 18:02:39 - building BasicValue for id -2024-08-07 18:02:39 - Skipping column re-registration: member_action.id -2024-08-07 18:02:39 - Building property id -2024-08-07 18:02:39 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 18:02:39 - Binding column: AnnotatedJoinColumn() -2024-08-07 18:02:39 - Binding column: AnnotatedColumn() -2024-08-07 18:02:39 - Building property action -2024-08-07 18:02:39 - Binding column: AnnotatedColumn() -2024-08-07 18:02:39 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 18:02:39 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 18:02:39 - building BasicValue for memberGroupId -2024-08-07 18:02:39 - Skipping column re-registration: member_action.member_group_id -2024-08-07 18:02:39 - Building property memberGroupId -2024-08-07 18:02:39 - Binding column: AnnotatedColumn() -2024-08-07 18:02:39 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 18:02:39 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 18:02:39 - building BasicValue for memberName -2024-08-07 18:02:39 - Skipping column re-registration: member_action.member_name -2024-08-07 18:02:39 - Building property memberName -2024-08-07 18:02:39 - Binding column: AnnotatedColumn() -2024-08-07 18:02:39 - MetadataSourceProcessor property status with lazy=false -2024-08-07 18:02:39 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 18:02:39 - building BasicValue for status -2024-08-07 18:02:39 - Skipping column re-registration: member_action.status -2024-08-07 18:02:39 - Building property status -2024-08-07 18:02:39 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 18:02:39 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 18:02:39 - Import with entity name Event -2024-08-07 18:02:39 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 18:02:39 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 18:02:39 - Binding column: AnnotatedColumn() -2024-08-07 18:02:39 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 18:02:39 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 18:02:39 - MetadataSourceProcessor property id with lazy=false -2024-08-07 18:02:39 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 18:02:39 - building BasicValue for id -2024-08-07 18:02:39 - Skipping column re-registration: event.id -2024-08-07 18:02:39 - Building property id -2024-08-07 18:02:39 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 18:02:39 - Binding column: AnnotatedColumn() -2024-08-07 18:02:39 - MetadataSourceProcessor property name with lazy=false -2024-08-07 18:02:39 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 18:02:39 - building BasicValue for name -2024-08-07 18:02:39 - Skipping column re-registration: event.name -2024-08-07 18:02:39 - Building property name -2024-08-07 18:02:39 - Binding column: AnnotatedColumn() -2024-08-07 18:02:39 - MetadataSourceProcessor property password with lazy=false -2024-08-07 18:02:39 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 18:02:39 - building BasicValue for password -2024-08-07 18:02:39 - Skipping column re-registration: event.password -2024-08-07 18:02:39 - Building property password -2024-08-07 18:02:39 - Binding column: AnnotatedColumn() -2024-08-07 18:02:39 - MetadataSourceProcessor property token with lazy=false -2024-08-07 18:02:39 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 18:02:39 - building BasicValue for token -2024-08-07 18:02:39 - Skipping column re-registration: event.token -2024-08-07 18:02:39 - Building property token -2024-08-07 18:02:39 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 18:02:39 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 18:02:39 - Import with entity name EventStep -2024-08-07 18:02:39 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 18:02:39 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 18:02:39 - Binding column: AnnotatedColumn() -2024-08-07 18:02:39 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 18:02:39 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 18:02:39 - MetadataSourceProcessor property id with lazy=false -2024-08-07 18:02:39 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 18:02:39 - building BasicValue for id -2024-08-07 18:02:39 - Skipping column re-registration: event_step.id -2024-08-07 18:02:39 - Building property id -2024-08-07 18:02:39 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 18:02:39 - Binding column: AnnotatedJoinColumn() -2024-08-07 18:02:39 - Binding column: AnnotatedColumn() -2024-08-07 18:02:39 - Building property event -2024-08-07 18:02:39 - Binding column: AnnotatedColumn() -2024-08-07 18:02:39 - MetadataSourceProcessor property name with lazy=false -2024-08-07 18:02:39 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 18:02:39 - building BasicValue for name -2024-08-07 18:02:39 - Skipping column re-registration: event_step.name -2024-08-07 18:02:39 - Building property name -2024-08-07 18:02:39 - Binding column: AnnotatedColumn() -2024-08-07 18:02:39 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 18:02:39 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 18:02:39 - building BasicValue for sequence -2024-08-07 18:02:39 - Skipping column re-registration: event_step.sequence -2024-08-07 18:02:39 - Building property sequence -2024-08-07 18:02:39 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 18:02:39 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 18:02:39 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 18:02:39 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 18:02:39 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 18:02:39 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 18:02:39 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 18:02:39 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 18:02:39 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 18:02:39 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 18:02:39 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 18:02:39 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 18:02:39 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 18:02:39 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 18:02:39 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 18:02:39 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 18:02:39 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 18:02:39 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 18:02:39 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 18:02:39 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 18:02:39 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 18:02:39 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 18:02:39 - Building session factory -2024-08-07 18:02:39 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 18:02:39 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 18:02:39 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 18:02:39 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@61d61b0e, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@3c2188f, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.4955995451524537923, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=65850, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.4955995451524537923, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@646bf8a6, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 18:02:39 - Session factory constructed with filter configurations : {} -2024-08-07 18:02:39 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 18:02:39 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 18:02:39 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 18:02:39 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 18:02:39 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 18:02:39 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 18:02:39 - Loaded expression factory via original TCCL -2024-08-07 18:02:39 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 18:02:39 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 18:02:39 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 18:02:39 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 18:02:39 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 18:02:39 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 18:02:39 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 18:02:39 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 18:02:39 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 18:02:39 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 18:02:39 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 18:02:39 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 18:02:39 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 18:02:39 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 18:02:39 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 18:02:39 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 18:02:39 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 18:02:39 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 18:02:39 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@56b48163] under count; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@32121140] under every; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@96c840a] under any; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@31f5ffb9] under sinh; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@19b3d3a4] under cosh; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3a9040f0] under tanh; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@33214124] under pi; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2d3768ce] under log; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 18:02:39 - Registering alternate key : length -> character_length -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@3aa8c337] under position; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@79b0956e] under overlay; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@37f627d0] under trim; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@7f9d40b3] under cast; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@ca2a03f] under collate; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@3293030b] under extract; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@4e3d36c2] under ifnull; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@263e512e] under pad; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@288b8663] under str; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@261099e1] under format; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@7d7c05fa] under timestampadd; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@7fa68ff4] under timestampdiff; prior registration was null -2024-08-07 18:02:39 - Registering alternate key : dateadd -> timestampadd -2024-08-07 18:02:39 - Registering alternate key : datediff -> timestampdiff -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2f64f99f] under current_date; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16c1d11] under current_time; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@123d0816] under current_timestamp; prior registration was null -2024-08-07 18:02:39 - Registering alternate key : current date -> current_date -2024-08-07 18:02:39 - Registering alternate key : current time -> current_time -2024-08-07 18:02:39 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@4601a148] under local_date; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@4e210016] under local_time; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2fc40856] under local_datetime; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5543d800] under offset_datetime; prior registration was null -2024-08-07 18:02:39 - Registering alternate key : local date -> local_date -2024-08-07 18:02:39 - Registering alternate key : local time -> local_time -2024-08-07 18:02:39 - Registering alternate key : local datetime -> local_datetime -2024-08-07 18:02:39 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1e033801] under instant; prior registration was null -2024-08-07 18:02:39 - Registering alternate key : current_instant -> instant -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@1be12e05] under sql; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@66ab088c] under count; prior registration was org.hibernate.dialect.function.CountFunction@56b48163 -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@43312512] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@33214124 -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@13f7c165] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 18:02:39 - Registering alternate key : day -> day_of_month -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@4e210016 -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@2fc40856 -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@30ca66c5] under trunc; prior registration was null -2024-08-07 18:02:39 - Registering alternate key : truncate -> trunc -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4abfa2ff] under date_trunc; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 18:02:39 - Registering alternate key : chr -> char -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@38c1b1a7] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@3aa8c337 -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@73230721] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 18:02:39 - Registering alternate key : every -> bool_and -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 18:02:39 - Registering alternate key : any -> bool_or -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@10bcbbce] under format; prior registration was org.hibernate.dialect.function.FormatFunction@261099e1 -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@31f9f9b3] under listagg; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@62264d4f] under mode; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@2bc0603f] under percentile_cont; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@4ed19540] under percentile_disc; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@69f24965] under rank; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@4eab9aec] under dense_rank; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@5a45c218] under percent_rank; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@2c6efee3] under cume_dist; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@62525dd3] under array; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@56adbb07] under array_list; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@237ee2e1] under array_agg; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@251e2f4a] under array_position; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@623ded82] under array_positions; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@4e826fd4] under array_positions_list; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5f14590c] under array_length; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@1ce8084a] under array_concat; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@222eda8a] under array_prepend; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@3331800f] under array_append; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@76eee0b1] under array_contains; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@2119b989] under array_contains_nullable; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@152d2a58] under array_overlaps; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@50b2ba2c] under array_overlaps_nullable; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5d373794] under array_get; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@3a012678] under array_set; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@329efc61] under array_remove; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@2c86b0ea] under array_remove_index; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4e481512] under array_slice; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@5570dc21] under array_replace; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1477d4e6] under array_trim; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@3d213a2b] under array_fill; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@27691ee8] under array_fill_list; prior registration was null -2024-08-07 18:02:39 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@5ec3689b] under array_to_string; prior registration was null -2024-08-07 18:02:39 - abs(NUMERIC arg) -2024-08-07 18:02:39 - Double acos(NUMERIC arg) -2024-08-07 18:02:39 - Boolean any(BOOLEAN predicate) -2024-08-07 18:02:39 - array( ... ) -2024-08-07 18:02:39 - array_agg(arg) -2024-08-07 18:02:39 - array_append( ... ) -2024-08-07 18:02:39 - array_concat( ... ) -2024-08-07 18:02:39 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 18:02:39 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 18:02:39 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 18:02:39 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 18:02:39 - array_get(ARRAY array, INTEGER index) -2024-08-07 18:02:39 - Integer array_length(ARRAY array) -2024-08-07 18:02:39 - array_list( ... ) -2024-08-07 18:02:39 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 18:02:39 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 18:02:39 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 18:02:39 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 18:02:39 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 18:02:39 - array_prepend( ... ) -2024-08-07 18:02:39 - array_remove( ... ) -2024-08-07 18:02:39 - array_remove_index( ... ) -2024-08-07 18:02:39 - array_replace( ... ) -2024-08-07 18:02:39 - array_set( ... ) -2024-08-07 18:02:39 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 18:02:39 - String array_to_string( ... ) -2024-08-07 18:02:39 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 18:02:39 - Integer ascii(STRING arg) -2024-08-07 18:02:39 - Double asin(NUMERIC arg) -2024-08-07 18:02:39 - Double atan(NUMERIC arg) -2024-08-07 18:02:39 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 18:02:39 - avg(NUMERIC arg) -2024-08-07 18:02:39 - bit_and(arg) -2024-08-07 18:02:39 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 18:02:39 - bit_or(arg) -2024-08-07 18:02:39 - bitand(arg0, arg1) -2024-08-07 18:02:39 - bitnot(arg) -2024-08-07 18:02:39 - bitor(arg0, arg1) -2024-08-07 18:02:39 - bitxor(arg0, arg1) -2024-08-07 18:02:39 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 18:02:39 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 18:02:39 - cast(arg as Type) -2024-08-07 18:02:39 - ceiling(NUMERIC arg) -2024-08-07 18:02:39 - Character char(INTEGER arg) -2024-08-07 18:02:39 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 18:02:39 - Character chr(INTEGER arg) -2024-08-07 18:02:39 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 18:02:39 - String collate(STRING string as COLLATION collation) -2024-08-07 18:02:39 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 18:02:39 - Double cos(NUMERIC arg) -2024-08-07 18:02:39 - Double cosh(NUMERIC arg) -2024-08-07 18:02:39 - Double cot(NUMERIC arg) -2024-08-07 18:02:39 - Long count([distinct ]{arg|*}) -2024-08-07 18:02:39 - Double cume_dist([arg0[, ...]]) -2024-08-07 18:02:39 - Date curdate() -2024-08-07 18:02:39 - Date current date -2024-08-07 18:02:39 - Time current time -2024-08-07 18:02:39 - Timestamp current timestamp -2024-08-07 18:02:39 - Date current_date -2024-08-07 18:02:39 - Instant current_instant -2024-08-07 18:02:39 - Time current_time -2024-08-07 18:02:39 - Timestamp current_timestamp -2024-08-07 18:02:39 - Time curtime() -2024-08-07 18:02:39 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 18:02:39 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 18:02:39 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 18:02:39 - Integer day(DATE arg) -2024-08-07 18:02:39 - Integer day_of_month(DATE arg) -2024-08-07 18:02:39 - Integer day_of_week(DATE arg) -2024-08-07 18:02:39 - Integer day_of_year(DATE arg) -2024-08-07 18:02:39 - String dayname(DATE arg) -2024-08-07 18:02:39 - Double degrees(NUMERIC arg) -2024-08-07 18:02:39 - Long dense_rank([arg0[, ...]]) -2024-08-07 18:02:39 - Boolean every(BOOLEAN predicate) -2024-08-07 18:02:39 - Double exp(NUMERIC arg) -2024-08-07 18:02:39 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 18:02:39 - first_valueANY value -2024-08-07 18:02:39 - floor(NUMERIC arg) -2024-08-07 18:02:39 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 18:02:39 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 18:02:39 - Integer hour(TIME arg) -2024-08-07 18:02:39 - ifnull(arg0, arg1) -2024-08-07 18:02:39 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 18:02:39 - Instant instant -2024-08-07 18:02:39 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 18:02:39 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 18:02:39 - last_valueANY value -2024-08-07 18:02:39 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 18:02:39 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 18:02:39 - String left(STRING string, INTEGER length) -2024-08-07 18:02:39 - Integer length(STRING_OR_CLOB arg) -2024-08-07 18:02:39 - String listagg(STRING arg0, STRING arg1) -2024-08-07 18:02:39 - Double ln(NUMERIC arg) -2024-08-07 18:02:39 - LocalDate local date -2024-08-07 18:02:39 - LocalDateTime local datetime -2024-08-07 18:02:39 - LocalTime local time -2024-08-07 18:02:39 - LocalDate local_date -2024-08-07 18:02:39 - LocalDateTime local_datetime -2024-08-07 18:02:39 - LocalTime local_time -2024-08-07 18:02:39 - Time localtime -2024-08-07 18:02:39 - Timestamp localtimestamp -2024-08-07 18:02:39 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 18:02:39 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 18:02:39 - Double log10(NUMERIC arg) -2024-08-07 18:02:39 - String lower(STRING string) -2024-08-07 18:02:39 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 18:02:39 - String ltrim(STRING string) -2024-08-07 18:02:39 - max(COMPARABLE arg) -2024-08-07 18:02:39 - Double median(NUMERIC arg) -2024-08-07 18:02:39 - Integer microsecond(TIME arg) -2024-08-07 18:02:39 - min(COMPARABLE arg) -2024-08-07 18:02:39 - Integer minute(TIME arg) -2024-08-07 18:02:39 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 18:02:39 - mode() -2024-08-07 18:02:39 - Integer month(DATE arg) -2024-08-07 18:02:39 - String monthname(DATE arg) -2024-08-07 18:02:39 - Timestamp now() -2024-08-07 18:02:39 - nth_valueANY value, INTEGER nth -2024-08-07 18:02:39 - nullif(arg0, arg1) -2024-08-07 18:02:39 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 18:02:39 - OffsetDateTime offset datetime -2024-08-07 18:02:39 - OffsetDateTime offset_datetime -2024-08-07 18:02:39 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 18:02:39 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 18:02:39 - Double percent_rank([arg0[, ...]]) -2024-08-07 18:02:39 - percentile_cont(NUMERIC arg) -2024-08-07 18:02:39 - percentile_disc(NUMERIC arg) -2024-08-07 18:02:39 - Double pi -2024-08-07 18:02:39 - Integer position(STRING pattern in STRING string) -2024-08-07 18:02:39 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 18:02:39 - Integer quarter(DATE arg) -2024-08-07 18:02:39 - Double radians(NUMERIC arg) -2024-08-07 18:02:39 - Double rand([INTEGER seed]) -2024-08-07 18:02:39 - Long rank([arg0[, ...]]) -2024-08-07 18:02:39 - String repeat(STRING string, INTEGER times) -2024-08-07 18:02:39 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 18:02:39 - String right(STRING string, INTEGER length) -2024-08-07 18:02:39 - round(NUMERIC number[, INTEGER places]) -2024-08-07 18:02:39 - Long row_number() -2024-08-07 18:02:39 - Long rownum() -2024-08-07 18:02:39 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 18:02:39 - String rtrim(STRING string) -2024-08-07 18:02:39 - Integer second(TIME arg) -2024-08-07 18:02:39 - Integer sign(NUMERIC arg) -2024-08-07 18:02:39 - Double sin(NUMERIC arg) -2024-08-07 18:02:39 - Double sinh(NUMERIC arg) -2024-08-07 18:02:39 - String soundex(arg) -2024-08-07 18:02:39 - String space(INTEGER arg) -2024-08-07 18:02:39 - Object sql -2024-08-07 18:02:39 - Double sqrt(NUMERIC arg) -2024-08-07 18:02:39 - Double stddev_pop(NUMERIC arg) -2024-08-07 18:02:39 - Double stddev_samp(NUMERIC arg) -2024-08-07 18:02:39 - String str(arg) -2024-08-07 18:02:39 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 18:02:39 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 18:02:39 - sum(arg) -2024-08-07 18:02:39 - Timestamp sysdate -2024-08-07 18:02:39 - Double tan(NUMERIC arg) -2024-08-07 18:02:39 - Double tanh(NUMERIC arg) -2024-08-07 18:02:39 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 18:02:39 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 18:02:39 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 18:02:39 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 18:02:39 - trunc( ... ) -2024-08-07 18:02:39 - truncate( ... ) -2024-08-07 18:02:39 - String upper(STRING string) -2024-08-07 18:02:39 - Double var_pop(NUMERIC arg) -2024-08-07 18:02:39 - Double var_samp(NUMERIC arg) -2024-08-07 18:02:39 - Integer week(DATE arg) -2024-08-07 18:02:39 - Integer year(DATE arg) -2024-08-07 18:02:39 - Starting QueryInterpretationCache(2048) -2024-08-07 18:02:39 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 18:02:39 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 18:02:39 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 18:02:39 - Configured EntityCopyObserver strategy: disallow -2024-08-07 18:02:39 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 18:02:39 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 18:02:39 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 18:02:39 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 18:02:39 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 18:02:39 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 18:02:39 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 18:02:39 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 18:02:39 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 18:02:39 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 18:02:39 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 18:02:39 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 18:02:39 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 18:02:39 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 18:02:39 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 18:02:39 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 18:02:39 - Starting post-init callbacks -2024-08-07 18:02:39 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 18:02:39 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 18:02:39 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 18:02:39 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 18:02:39 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 18:02:39 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 18:02:39 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 18:02:39 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 18:02:39 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 18:02:39 - Created new SQL alias : ba1_0 -2024-08-07 18:02:39 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 18:02:39 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@45689582] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 18:02:39 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 18:02:39 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 18:02:39 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 18:02:39 - Version select: select id from bill_action where id=? -2024-08-07 18:02:39 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 18:02:39 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 18:02:39 - Delete (0): delete from bill_action where id=? -2024-08-07 18:02:39 - Created new SQL alias : ma1_0 -2024-08-07 18:02:39 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 18:02:39 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7fba30fe] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 18:02:39 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 18:02:39 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 18:02:39 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 18:02:39 - Version select: select id from member_action where id=? -2024-08-07 18:02:39 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 18:02:39 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 18:02:39 - Delete (0): delete from member_action where id=? -2024-08-07 18:02:39 - Created new SQL alias : e1_0 -2024-08-07 18:02:39 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 18:02:39 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 18:02:39 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 18:02:39 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 18:02:39 - Version select: select id from event where id=? -2024-08-07 18:02:39 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 18:02:39 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 18:02:39 - Delete (0): delete from event where id=? -2024-08-07 18:02:39 - Created new SQL alias : a1_0 -2024-08-07 18:02:39 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 18:02:39 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@76ccde41] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 18:02:39 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 18:02:39 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 18:02:39 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 18:02:39 - Version select: select id from action where id=? -2024-08-07 18:02:39 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 18:02:39 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 18:02:39 - Delete (0): delete from action where id=? -2024-08-07 18:02:39 - Created new SQL alias : es1_0 -2024-08-07 18:02:39 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 18:02:39 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@3e8eea59] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 18:02:39 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 18:02:39 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 18:02:39 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 18:02:39 - Version select: select id from event_step where id=? -2024-08-07 18:02:39 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 18:02:39 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 18:02:39 - Delete (0): delete from event_step where id=? -2024-08-07 18:02:39 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 18:02:39 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@5111f814] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@76d220eb] -2024-08-07 18:02:39 - Checking 0 named HQL queries -2024-08-07 18:02:39 - Checking 0 named SQL queries -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 82 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 82 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 84 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:39 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 18:02:39 - - drop table if exists action cascade -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:39 - [javax.management.remote.rmi.RMIConnectionImpl@2def2508: connectionId=rmi://127.0.0.1 2] closing. -2024-08-07 18:02:39 - [javax.management.remote.rmi.RMIConnectionImpl@2def2508: connectionId=rmi://127.0.0.1 2] closed. -2024-08-07 18:02:39 - - drop table if exists bill_action cascade -2024-08-07 18:02:39 - - drop table if exists event cascade -2024-08-07 18:02:39 - - drop table if exists event_step cascade -2024-08-07 18:02:39 - - drop table if exists member_action cascade -2024-08-07 18:02:39 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 18:02:39 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 18:02:39 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 18:02:39 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 18:02:39 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 18:02:39 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 18:02:39 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 18:02:39 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 18:02:39 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 18:02:39 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@77feca04 -2024-08-07 18:02:39 - Registering SessionFactory: 9f9a7eb7-0ce7-401e-b018-068e59814c3a (<unnamed>) -2024-08-07 18:02:39 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 18:02:39 - Instantiated SessionFactory -2024-08-07 18:02:39 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'actionService' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 18:02:39 - Initializing JpaMetamodelMappingContext… -2024-08-07 18:02:39 - Finished initializing JpaMetamodelMappingContext -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - Statistics initialized [enabled=false] -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 18:02:39 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 18:02:39 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 18:02:39 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 18:02:39 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:02:39 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - Looking up named query BillAction.findByAction_Event -2024-08-07 18:02:39 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:02:39 - Did not find named query BillAction.findByAction_Event -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - Looking up named query BillAction.findByAction_Id -2024-08-07 18:02:39 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:02:39 - Did not find named query BillAction.findByAction_Id -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 18:02:39 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:02:39 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 18:02:39 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:02:39 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 18:02:39 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:02:39 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 18:02:39 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 18:02:39 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 18:02:39 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 18:02:39 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:02:39 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 18:02:39 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 18:02:39 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 18:02:39 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 18:02:39 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:02:39 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 18:02:39 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 18:02:39 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(747330854470125)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(747330854470125)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(747330854470125)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(747330854470125)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(747330854470125).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 18:02:39 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:02:39 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 18:02:39 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 18:02:39 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 18:02:39 - Looking up named query MemberAction.findByAction -2024-08-07 18:02:39 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:02:39 - Did not find named query MemberAction.findByAction -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - Looking up named query Event.findByToken -2024-08-07 18:02:39 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:02:39 - Did not find named query Event.findByToken -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 18:02:39 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 18:02:39 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 18:02:39 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:02:39 - Did not find named query Action.findLastByEvent.count -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 18:02:39 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 18:02:39 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 18:02:39 - Looking up named query Action.findByIdAndEvent -2024-08-07 18:02:39 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:02:39 - Did not find named query Action.findByIdAndEvent -2024-08-07 18:02:39 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:02:39 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 18:02:39 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 18:02:39 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 18:02:39 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'eventService' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 18:02:39 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 18:02:39 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 18:02:39 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 18:02:39 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 18:02:39 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 18:02:39 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 18:02:39 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 18:02:39 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 18:02:39 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 18:02:39 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 18:02:39 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 18:02:39 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'actionController' -2024-08-07 18:02:39 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 18:02:39 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'eventController' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'authService' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 18:02:39 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 18:02:39 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 18:02:39 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 18:02:39 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 18:02:39 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 18:02:39 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 18:02:39 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 18:02:39 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:02:39 - Loaded expression factory via original TCCL -2024-08-07 18:02:39 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 18:02:39 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 18:02:39 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 18:02:39 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 18:02:39 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 18:02:39 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 18:02:39 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 18:02:39 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 18:02:39 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 18:02:39 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 18:02:39 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 18:02:39 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 18:02:39 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 18:02:39 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 18:02:39 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'error' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 18:02:39 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:02:39 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 18:02:39 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 18:02:39 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 18:02:39 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 18:02:39 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 18:02:39 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 18:02:39 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 18:02:39 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 18:02:39 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 18:02:39 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 18:02:39 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 18:02:39 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 18:02:39 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 18:02:39 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:02:39 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:02:39 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 18:02:39 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:02:39 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:02:39 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 18:02:39 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 18:02:39 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:02:39 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:02:39 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 18:02:39 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 18:02:39 - - s.h.p.EventController: - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) -2024-08-07 18:02:39 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 18:02:39 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 18:02:39 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 18:02:39 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:02:39 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 18:02:39 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:02:39 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:02:39 - 'beanNameHandlerMapping' {} -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 18:02:39 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:02:39 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 18:02:39 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 18:02:39 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 18:02:39 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:02:39 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:02:39 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 18:02:39 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:02:39 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 18:02:39 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 18:02:39 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 18:02:39 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 18:02:39 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:02:39 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:02:39 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 18:02:39 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 18:02:39 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 18:02:39 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 18:02:39 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 18:02:39 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 18:02:39 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 18:02:39 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 18:02:39 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 18:02:39 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 18:02:39 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 18:02:39 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 18:02:39 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 18:02:39 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 18:02:39 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 18:02:39 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 18:02:39 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 18:02:39 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 18:02:39 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:02:39 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 18:02:39 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 18:02:39 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 18:02:39 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 18:02:39 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:02:39 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 18:02:39 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 18:02:39 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 18:02:39 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 18:02:39 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 18:02:39 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 18:02:39 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 18:02:39 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 18:02:39 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 18:02:39 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 18:02:39 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 18:02:39 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 18:02:39 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 18:02:39 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 82 -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 82 -2024-08-07 18:02:39 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 84 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:39 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 18:02:39 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 18:02:39 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 18:02:39 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:39 - [javax.management.remote.rmi.RMIConnectionImpl@6b1b5eb: connectionId=rmi://127.0.0.1 3] closing. -2024-08-07 18:02:39 - [javax.management.remote.rmi.RMIConnectionImpl@6b1b5eb: connectionId=rmi://127.0.0.1 3] closed. -2024-08-07 18:02:39 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 18:02:40 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 18:02:40 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:02:40 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 18:02:40 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 18:02:40 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 18:02:40 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 18:02:40 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 18:02:40 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 18:02:40 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 18:02:40 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 18:02:40 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 18:02:40 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 18:02:40 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 18:02:40 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 18:02:40 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 18:02:40 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 18:02:40 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 18:02:40 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 18:02:40 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 18:02:40 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 18:02:40 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 18:02:40 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 18:02:40 - Using SLF4J as the default logging framework -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 18:02:40 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 18:02:40 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 18:02:40 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 18:02:40 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 18:02:40 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 18:02:40 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 18:02:40 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 18:02:40 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 18:02:40 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 18:02:40 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 18:02:40 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 18:02:40 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 18:02:40 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 18:02:40 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 18:02:40 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 18:02:40 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 18:02:40 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 18:02:40 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 18:02:40 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 18:02:40 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 18:02:40 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 18:02:40 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 18:02:40 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 18:02:40 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 18:02:40 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 18:02:40 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 18:02:40 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 18:02:40 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:02:40 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 18:02:40 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 18:02:40 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 18:02:40 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 18:02:40 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 18:02:40 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 18:02:40 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 18:02:40 - Registering beans for JMX exposure on startup -2024-08-07 18:02:40 - Auto-detecting user-defined JMX MBeans -2024-08-07 18:02:40 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 18:02:40 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 18:02:40 - Starting beans in phase -2147483647 -2024-08-07 18:02:40 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 18:02:40 - Starting beans in phase 2147481599 -2024-08-07 18:02:40 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 18:02:40 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 18:02:40 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 18:02:40 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 18:02:40 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 18:02:40 - Successfully started bean 'webServerStartStop' -2024-08-07 18:02:40 - Starting beans in phase 2147482623 -2024-08-07 18:02:40 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 18:02:40 - Starting beans in phase 2147483647 -2024-08-07 18:02:40 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.web.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 18:02:40 - Started HaengdongApplication in 2.132 seconds (process running for 2.306) -2024-08-07 18:02:40 - Application availability state LivenessState changed to CORRECT -2024-08-07 18:02:40 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 82 -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 82 -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 84 -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - [javax.management.remote.rmi.RMIConnectionImpl@69ef95e: connectionId=rmi://127.0.0.1 4] closing. -2024-08-07 18:02:40 - [javax.management.remote.rmi.RMIConnectionImpl@69ef95e: connectionId=rmi://127.0.0.1 4] closed. -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:50470] -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:50469] -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 84 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 84 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - [javax.management.remote.rmi.RMIConnectionImpl@3387280e: connectionId=rmi://127.0.0.1 5] closing. -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - [javax.management.remote.rmi.RMIConnectionImpl@3387280e: connectionId=rmi://127.0.0.1 5] closed. -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 84 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 82 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - [javax.management.remote.rmi.RMIConnectionImpl@59d801ef: connectionId=rmi://127.0.0.1 6] closing. -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - [javax.management.remote.rmi.RMIConnectionImpl@59d801ef: connectionId=rmi://127.0.0.1 6] closed. -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - [javax.management.remote.rmi.RMIConnectionImpl@61fafb92: connectionId=rmi://127.0.0.1 7] closing. -2024-08-07 18:02:40 - [javax.management.remote.rmi.RMIConnectionImpl@61fafb92: connectionId=rmi://127.0.0.1 7] closed. -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 84 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - [javax.management.remote.rmi.RMIConnectionImpl@76eb0b70: connectionId=rmi://127.0.0.1 8] closing. -2024-08-07 18:02:40 - [javax.management.remote.rmi.RMIConnectionImpl@76eb0b70: connectionId=rmi://127.0.0.1 8] closed. -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 82 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 82 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 84 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 84 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - [javax.management.remote.rmi.RMIConnectionImpl@20ba5944: connectionId=rmi://127.0.0.1 9] closing. -2024-08-07 18:02:40 - [javax.management.remote.rmi.RMIConnectionImpl@20ba5944: connectionId=rmi://127.0.0.1 9] closed. -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - [javax.management.remote.rmi.RMIConnectionImpl@563783de: connectionId=rmi://127.0.0.1 10] closing. -2024-08-07 18:02:40 - [javax.management.remote.rmi.RMIConnectionImpl@563783de: connectionId=rmi://127.0.0.1 10] closed. -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 84 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 84 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 18:02:40 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 18:02:40 - Fetching JDBC Connection from DataSource -2024-08-07 18:02:40 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 18:02:40 - Initializing Servlet 'dispatcherServlet' -2024-08-07 18:02:40 - Detected StandardServletMultipartResolver -2024-08-07 18:02:40 - Detected AcceptHeaderLocaleResolver -2024-08-07 18:02:40 - Detected FixedThemeResolver -2024-08-07 18:02:40 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@c92d694 -2024-08-07 18:02:40 - Fetching JDBC Connection from DataSource -2024-08-07 18:02:40 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@45682e3e -2024-08-07 18:02:40 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 18:02:40 - Completed initialization in 1 ms -2024-08-07 18:02:40 - RMI TCP Connection(2)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - [javax.management.remote.rmi.RMIConnectionImpl@7b5f0deb: connectionId=rmi://127.0.0.1 12] closing. -2024-08-07 18:02:40 - [javax.management.remote.rmi.RMIConnectionImpl@7b5f0deb: connectionId=rmi://127.0.0.1 12] closed. -2024-08-07 18:02:40 - RMI TCP Connection(3)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:02:40 - [javax.management.remote.rmi.RMIConnectionImpl@7310051: connectionId=rmi://127.0.0.1 11] closing. -2024-08-07 18:02:40 - [javax.management.remote.rmi.RMIConnectionImpl@7310051: connectionId=rmi://127.0.0.1 11] closed. -2024-08-07 18:02:57 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.4955995451524537923/conf/jaspic-providers.xml] -2024-08-07 18:02:57 - OPTIONS "/api/events", parameters={} -2024-08-07 18:02:57 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 18:02:57 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:02:57 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:02:57 - Completed 200 OK -2024-08-07 18:02:57 - POST "/api/events", parameters={} -2024-08-07 18:02:57 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 18:02:57 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:02:57 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=행동로컬, password=1234]] -2024-08-07 18:02:57 - Found thread-bound EntityManager [SessionImpl(1327222700<open>)] for JPA transaction -2024-08-07 18:02:57 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 18:02:57 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 18:02:57 - begin -2024-08-07 18:02:57 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@52d204e5] -2024-08-07 18:02:57 - Found thread-bound EntityManager [SessionImpl(1327222700<open>)] for JPA transaction -2024-08-07 18:02:57 - Participating in existing transaction -2024-08-07 18:02:57 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 18:02:57 - Executing identity-insert immediately -2024-08-07 18:02:57 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 18:02:57 - Initializer list is empty -2024-08-07 18:02:57 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@4de8841a -2024-08-07 18:02:57 - Extracted JDBC value [0] - [1] -2024-08-07 18:02:57 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@1e58d661 -2024-08-07 18:02:57 - Initiating transaction commit -2024-08-07 18:02:57 - Committing JPA transaction on EntityManager [SessionImpl(1327222700<open>)] -2024-08-07 18:02:57 - committing -2024-08-07 18:02:57 - Processing flush-time cascades -2024-08-07 18:02:57 - Dirty checking collections -2024-08-07 18:02:57 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 18:02:57 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 18:02:57 - Listing entities: -2024-08-07 18:02:57 - server.haengdong.domain.event.Event{password=1234, name=행동로컬, id=1, token=fe9d8577-515c-488a-8b91-a4d3c040b12b} -2024-08-07 18:02:57 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 18:02:58 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 18:02:58 - Writing [EventResponse[eventId=fe9d8577-515c-488a-8b91-a4d3c040b12b]] -2024-08-07 18:02:58 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:02:58 - Completed 200 OK -2024-08-07 18:03:01 - OPTIONS "/api/events/fe9d8577-515c-488a-8b91-a4d3c040b12b", parameters={} -2024-08-07 18:03:01 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 18:03:01 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:03:01 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:03:01 - Completed 200 OK -2024-08-07 18:03:01 - OPTIONS "/api/events/fe9d8577-515c-488a-8b91-a4d3c040b12b/actions", parameters={} -2024-08-07 18:03:01 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 18:03:01 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:03:01 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:03:01 - Completed 200 OK -2024-08-07 18:03:01 - GET "/api/events/fe9d8577-515c-488a-8b91-a4d3c040b12b", parameters={} -2024-08-07 18:03:01 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 18:03:01 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:03:01 - GET "/api/events/fe9d8577-515c-488a-8b91-a4d3c040b12b/actions", parameters={} -2024-08-07 18:03:01 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 18:03:01 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:03:01 - Found thread-bound EntityManager [SessionImpl(1070874963<open>)] for JPA transaction -2024-08-07 18:03:01 - Found thread-bound EntityManager [SessionImpl(441807248<open>)] for JPA transaction -2024-08-07 18:03:01 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 18:03:01 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 18:03:01 - HikariPool-1 - Connection not added, stats (total=10, active=2, idle=8, waiting=0) -2024-08-07 18:03:01 - Setting JDBC Connection [HikariProxyConnection@20009472 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 18:03:01 - Setting JDBC Connection [HikariProxyConnection@668309422 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 18:03:01 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 18:03:01 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 18:03:01 - begin -2024-08-07 18:03:01 - begin -2024-08-07 18:03:01 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@584870e0] -2024-08-07 18:03:01 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@712f958c] -2024-08-07 18:03:01 - Created new SQL alias : e1_0 -2024-08-07 18:03:01 - Created new SQL alias : e1_0 -2024-08-07 18:03:01 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(747330870427500))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 18:03:01 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(747330870427500))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 18:03:01 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@75808da6 -2024-08-07 18:03:01 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@6f036f5e -2024-08-07 18:03:01 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(747330870427500).token) -2024-08-07 18:03:01 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(747330870427500).token) -2024-08-07 18:03:01 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(747330870427500)] - | +-BasicFetch [server.haengdong.domain.event.Event(747330870427500).name] - | +-BasicFetch [server.haengdong.domain.event.Event(747330870427500).password] - | \-BasicFetch [server.haengdong.domain.event.Event(747330870427500).token] - -2024-08-07 18:03:01 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(747330870427500)] - | +-BasicFetch [server.haengdong.domain.event.Event(747330870427500).name] - | +-BasicFetch [server.haengdong.domain.event.Event(747330870427500).password] - | \-BasicFetch [server.haengdong.domain.event.Event(747330870427500).token] - -2024-08-07 18:03:01 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(747330870427500)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 18:03:01 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(747330870427500)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 18:03:01 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 18:03:01 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 18:03:01 - Initializer list: - server.haengdong.domain.event.Event(747330870427500) -> EntityResultInitializer(server.haengdong.domain.event.Event(747330870427500))@1637496338 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 18:03:01 - Initializer list: - server.haengdong.domain.event.Event(747330870427500) -> EntityResultInitializer(server.haengdong.domain.event.Event(747330870427500))@975885265 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 18:03:01 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 18:03:01 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 18:03:01 - Extracted JDBC value [0] - [1] -2024-08-07 18:03:01 - Extracted JDBC value [0] - [1] -2024-08-07 18:03:01 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(747330870427500)): 1 -2024-08-07 18:03:01 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(747330870427500)): 1 -2024-08-07 18:03:01 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(747330870427500)#1] : 1602665629 -2024-08-07 18:03:01 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(747330870427500)#1] : 2015766148 -2024-08-07 18:03:01 - Extracted JDBC value [1] - [행동로컬] -2024-08-07 18:03:01 - Extracted JDBC value [1] - [행동로컬] -2024-08-07 18:03:01 - Extracted JDBC value [2] - [1234] -2024-08-07 18:03:01 - Extracted JDBC value [2] - [1234] -2024-08-07 18:03:01 - Extracted JDBC value [3] - [fe9d8577-515c-488a-8b91-a4d3c040b12b] -2024-08-07 18:03:01 - Extracted JDBC value [3] - [fe9d8577-515c-488a-8b91-a4d3c040b12b] -2024-08-07 18:03:01 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(747330870427500)#1 -2024-08-07 18:03:01 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(747330870427500)#1 -2024-08-07 18:03:01 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@7ea4d960 -2024-08-07 18:03:01 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@37402553 -2024-08-07 18:03:01 - Initiating transaction commit -2024-08-07 18:03:01 - Committing JPA transaction on EntityManager [SessionImpl(1070874963<open>)] -2024-08-07 18:03:01 - committing -2024-08-07 18:03:01 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@20009472 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 18:03:01 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 18:03:01 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 18:03:01 - Writing [EventDetailResponse[eventName=행동로컬]] -2024-08-07 18:03:01 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:03:01 - Completed 200 OK -2024-08-07 18:03:01 - Created new SQL alias : ba1_0 -2024-08-07 18:03:01 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(747330716122458))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 18:03:01 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@17561557] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 18:03:01 - Created new SQL alias : a1_0 -2024-08-07 18:03:01 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@67b46fc4] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 18:03:01 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@17561557] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 18:03:01 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@3c694700 -2024-08-07 18:03:01 - Created new SQL alias : e1_0 -2024-08-07 18:03:01 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@73b71569 -2024-08-07 18:03:01 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(747330716122458).action(747330716142125).event(747330716149708) : event) -2024-08-07 18:03:01 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(747330716122458)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(747330716122458).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(747330716122458).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(747330716122458).title] - -2024-08-07 18:03:01 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(747330716122458)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(747330716122458).action(747330716142125)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(747330716122458).action(747330716142125).event(747330716149708)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 18:03:01 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 18:03:01 - Initializer list: - server.haengdong.domain.action.BillAction(747330716122458).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(747330716122458).action)@1546676103 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@1324325751) - server.haengdong.domain.action.BillAction(747330716122458).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(747330716122458).action.event)@990519691 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@639488324) - server.haengdong.domain.action.BillAction(747330716122458) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(747330716122458))@2043582047 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - -2024-08-07 18:03:01 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 18:03:01 - Created new SQL alias : ma1_0 -2024-08-07 18:03:01 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction(m))] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 18:03:01 - Created new SQL alias : a1_0 -2024-08-07 18:03:01 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2d23d285] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 18:03:01 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@72ae5248] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 18:03:01 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4c4f4a07] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 18:03:01 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4c4f4a07] for NavigablePath [server.haengdong.domain.action.MemberAction(m).action(747330854470125).event] overrode previous registration : org.hibernate.sql.ast.tree.from.LazyTableGroup@72ae5248 -2024-08-07 18:03:01 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 18:03:01 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 18:03:01 - Determining mapping-model type for SqmPath : SqmEntityValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action(747330854470125).event) -2024-08-07 18:03:01 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction(m)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.MemberAction(m).action(747330854470125)] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction(m).status] - -2024-08-07 18:03:01 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction(m)) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction(m).action(747330854470125)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.MemberAction(m).action(747330854470125).event) { - } - join LazyTableGroup (e2 : server.haengdong.domain.action.MemberAction(m).action(747330854470125).event) { - } - } - } - } - } - } - } - -2024-08-07 18:03:01 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 18:03:01 - Initializer list: - server.haengdong.domain.action.MemberAction(m).action(747330854470125) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(747330854470125))@2138517330 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1782649445) - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@1550344792 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(747330854470125).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(747330854470125).event)@2079540130 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@639488324) - -2024-08-07 18:03:01 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 18:03:01 - Initiating transaction commit -2024-08-07 18:03:01 - Committing JPA transaction on EntityManager [SessionImpl(441807248<open>)] -2024-08-07 18:03:01 - committing -2024-08-07 18:03:01 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@668309422 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 18:03:01 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 18:03:01 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 18:03:01 - Writing [StepsResponse[steps=[]]] -2024-08-07 18:03:01 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:03:01 - Completed 200 OK -2024-08-07 18:03:08 - RMI TCP Connection(1)-127.0.0.1: (port 50467) connection closed -2024-08-07 18:03:08 - RMI TCP Connection(3)-127.0.0.1: (port 50467) connection closed -2024-08-07 18:03:08 - RMI TCP Connection(2)-127.0.0.1: (port 50467) connection closed -2024-08-07 18:03:08 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=50468,localport=50467] -2024-08-07 18:03:08 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=50469,localport=50467] -2024-08-07 18:03:08 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=50470,localport=50467] -2024-08-07 18:03:08 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=50470,localport=50467] -2024-08-07 18:03:08 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=50469,localport=50467] -2024-08-07 18:03:08 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=50468,localport=50467] -2024-08-07 18:03:09 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 18:03:09 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 18:03:13 - OPTIONS "/api/events/fe9d8577-515c-488a-8b91-a4d3c040b12b/member-actions", parameters={} -2024-08-07 18:03:13 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 18:03:13 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:03:13 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:03:13 - Completed 200 OK -2024-08-07 18:03:13 - POST "/api/events/fe9d8577-515c-488a-8b91-a4d3c040b12b/member-actions", parameters={} -2024-08-07 18:03:13 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 18:03:13 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 18:03:13 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 18:03:13 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 18:03:13 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 18:03:13 - Completed 401 UNAUTHORIZED -2024-08-07 18:03:34 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:50477] -2024-08-07 18:03:34 - RMI TCP Connection(4)-127.0.0.1: (port 50467) op = 80 -2024-08-07 18:03:34 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:03:34 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:03:34 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:03:34 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:03:34 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:03:39 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 18:03:39 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 18:03:49 - RMI TCP Connection(4)-127.0.0.1: (port 50467) connection closed -2024-08-07 18:03:49 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=50477,localport=50467] -2024-08-07 18:03:49 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=50477,localport=50467] -2024-08-07 18:03:58 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 18:03:58 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b, started on Wed Aug 07 18:02:38 KST 2024 -2024-08-07 18:03:58 - Stopping beans in phase 2147483647 -2024-08-07 18:03:58 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 18:03:58 - Stopping beans in phase 2147482623 -2024-08-07 18:03:58 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 18:03:58 - Stopping beans in phase 2147481599 -2024-08-07 18:03:58 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 18:03:58 - Stopping beans in phase -2147483647 -2024-08-07 18:03:58 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 18:03:58 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 18:03:58 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 18:03:58 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 18:03:58 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 18:03:58 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 18:03:58 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 18:03:58 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 18:03:58 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 18:03:58 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 18:03:58 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 18:03:58 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 18:03:58 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 18:03:58 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 18:03:58 - Unregistering JMX-exposed beans on shutdown -2024-08-07 18:03:58 - Unregistering JMX-exposed beans -2024-08-07 18:03:58 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 18:03:58 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 18:03:58 - HHH000031: Closing -2024-08-07 18:03:58 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@3faebd7c] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@76d220eb] -2024-08-07 18:03:58 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 18:03:58 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 18:03:58 - HikariPool-1 - Shutdown initiated... -2024-08-07 18:03:58 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 18:03:58 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:03:58 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:03:58 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:03:58 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:03:58 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:03:58 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:03:58 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:03:58 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:03:58 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:03:58 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:03:58 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 18:03:58 - HikariPool-1 - Shutdown completed. -2024-08-07 18:03:58 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 18:03:59 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 18:03:59 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 18:03:59 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 18:03:59 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 18:03:59 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 18:03:59 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 18:03:59 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 18:03:59 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 18:03:59 - Loaded expression factory via original TCCL -2024-08-07 18:03:59 - Starting HaengdongApplication using Java 17.0.12 with PID 65918 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 18:03:59 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 18:03:59 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 18:03:59 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 18:03:59 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b -2024-08-07 18:03:59 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 18:03:59 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 18:03:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 18:03:59 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 18:03:59 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 18:03:59 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 18:03:59 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 18:03:59 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 18:03:59 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 18:03:59 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 18:03:59 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 18:03:59 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 18:03:59 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 18:03:59 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 18:03:59 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 18:03:59 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 18:03:59 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 18:03:59 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 18:03:59 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 18:03:59 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 18:03:59 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 18:03:59 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 18:03:59 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 18:03:59 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 18:03:59 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 18:04:00 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 18:04:00 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 18:04:00 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 18:04:00 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 18:04:00 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 18:04:00 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 18:04:00 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 18:04:00 - Finished Spring Data repository scanning in 15 ms. Found 4 JPA repository interfaces. -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 18:04:00 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 18:04:00 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 18:04:00 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 18:04:00 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 18:04:00 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 18:04:00 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 18:04:00 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 18:04:00 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 18:04:00 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@1e545821] -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 18:04:00 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 18:04:00 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 18:04:00 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 18:04:00 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 18:04:00 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 18:04:00 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 18:04:00 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 18:04:00 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 18:04:00 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 18:04:00 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 18:04:00 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 18:04:00 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 18:04:00 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 18:04:00 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 18:04:00 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:00 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:00 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:00 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 18:04:00 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 18:04:00 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 18:04:00 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 18:04:00 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 18:04:00 - Tomcat initialized with port 8080 (http) -2024-08-07 18:04:00 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@62ea8931] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@62ea8931] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.mapper.MapperListener@4703c998] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.mapper.MapperListener@4703c998] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 18:04:00 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 18:04:00 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@62ea8931] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@62ea8931] to [STARTING] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@62ea8931] to [STARTED] -2024-08-07 18:04:00 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 18:04:00 - Starting service [Tomcat] -2024-08-07 18:04:00 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 18:04:00 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 18:04:00 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.webresources.StandardRoot@684ce74c] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.webresources.StandardRoot@684ce74c] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.webresources.StandardRoot@684ce74c] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.webresources.DirResourceSet@3a3883c4] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.webresources.DirResourceSet@3a3883c4] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.webresources.DirResourceSet@3a3883c4] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.webresources.DirResourceSet@3a3883c4] to [STARTING] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.webresources.DirResourceSet@3a3883c4] to [STARTED] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.webresources.StandardRoot@684ce74c] to [STARTING] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.webresources.StandardRoot@684ce74c] to [STARTED] -2024-08-07 18:04:00 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 18:04:00 - Starting this Loader -2024-08-07 18:04:00 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 18:04:00 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 18:04:00 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 18:04:00 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6befbb12] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6befbb12] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6befbb12] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6befbb12] to [STARTING] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@6befbb12] to [STARTED] -2024-08-07 18:04:00 - Initializing Spring embedded WebApplicationContext -2024-08-07 18:04:00 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 18:04:00 - Root WebApplicationContext: initialization completed in 598 ms -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:04:00 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 18:04:00 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 18:04:00 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 18:04:00 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 18:04:00 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 18:04:00 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:04:00 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 18:04:00 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:04:00 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 18:04:00 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 18:04:00 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:04:00 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 18:04:00 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 18:04:00 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 18:04:00 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 18:04:00 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 18:04:00 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 18:04:00 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 18:04:00 - HikariPool-1 - configuration: -2024-08-07 18:04:00 - allowPoolSuspension.............false -2024-08-07 18:04:00 - autoCommit......................true -2024-08-07 18:04:00 - catalog.........................none -2024-08-07 18:04:00 - connectionInitSql...............none -2024-08-07 18:04:00 - connectionTestQuery.............none -2024-08-07 18:04:00 - connectionTimeout...............30000 -2024-08-07 18:04:00 - dataSource......................none -2024-08-07 18:04:00 - dataSourceClassName.............none -2024-08-07 18:04:00 - dataSourceJNDI..................none -2024-08-07 18:04:00 - dataSourceProperties............{password=<masked>} -2024-08-07 18:04:00 - driverClassName................."org.h2.Driver" -2024-08-07 18:04:00 - exceptionOverrideClassName......none -2024-08-07 18:04:00 - healthCheckProperties...........{} -2024-08-07 18:04:00 - healthCheckRegistry.............none -2024-08-07 18:04:00 - idleTimeout.....................600000 -2024-08-07 18:04:00 - initializationFailTimeout.......1 -2024-08-07 18:04:00 - isolateInternalQueries..........false -2024-08-07 18:04:00 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 18:04:00 - keepaliveTime...................0 -2024-08-07 18:04:00 - leakDetectionThreshold..........0 -2024-08-07 18:04:00 - maxLifetime.....................1800000 -2024-08-07 18:04:00 - maximumPoolSize.................10 -2024-08-07 18:04:00 - metricRegistry..................none -2024-08-07 18:04:00 - metricsTrackerFactory...........none -2024-08-07 18:04:00 - minimumIdle.....................10 -2024-08-07 18:04:00 - password........................<masked> -2024-08-07 18:04:00 - poolName........................"HikariPool-1" -2024-08-07 18:04:00 - readOnly........................false -2024-08-07 18:04:00 - registerMbeans..................false -2024-08-07 18:04:00 - scheduledExecutor...............none -2024-08-07 18:04:00 - schema..........................none -2024-08-07 18:04:00 - threadFactory...................internal -2024-08-07 18:04:00 - transactionIsolation............default -2024-08-07 18:04:00 - username........................"sa" -2024-08-07 18:04:00 - validationTimeout...............5000 -2024-08-07 18:04:00 - HikariPool-1 - Starting... -2024-08-07 18:04:00 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 18:04:00 - HikariPool-1 - Start completed. -2024-08-07 18:04:00 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 18:04:00 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 18:04:00 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:00 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 18:04:00 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:04:00 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:04:00 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 18:04:00 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 18:04:00 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 18:04:00 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 18:04:00 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 18:04:00 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 18:04:00 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@15f861ee] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@15f861ee] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@15f861ee] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@15f861ee] to [STARTING] -2024-08-07 18:04:00 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@15f861ee] to [STARTED] -2024-08-07 18:04:00 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 18:04:00 - Filter 'requestContextFilter' configured for use -2024-08-07 18:04:00 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 18:04:00 - Filter 'characterEncodingFilter' configured for use -2024-08-07 18:04:00 - Filter 'formContentFilter' configured for use -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 18:04:00 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 18:04:00 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 18:04:00 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 18:04:00 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.mapper.MapperListener@4703c998] to [STARTING_PREP] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.mapper.MapperListener@4703c998] to [STARTING] -2024-08-07 18:04:00 - Registered host [localhost] -2024-08-07 18:04:00 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 18:04:00 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 18:04:00 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 18:04:00 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 18:04:00 - Setting state for [org.apache.catalina.mapper.MapperListener@4703c998] to [STARTED] -2024-08-07 18:04:00 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 18:04:00 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:50485] -2024-08-07 18:04:00 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 18:04:00 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:00 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 18:04:00 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 18:04:00 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 18:04:00 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 84 -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:00 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 18:04:00 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:00 - [javax.management.remote.rmi.RMIConnectionImpl@1317bc0: connectionId=rmi://127.0.0.1 1] closing. -2024-08-07 18:04:00 - [javax.management.remote.rmi.RMIConnectionImpl@1317bc0: connectionId=rmi://127.0.0.1 1] closed. -2024-08-07 18:04:00 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 18:04:00 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 18:04:00 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 18:04:00 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:00 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 18:04:00 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 18:04:00 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 18:04:00 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 18:04:00 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 18:04:00 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 18:04:00 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 18:04:00 - HHH000206: 'hibernate.properties' not found -2024-08-07 18:04:00 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 18:04:00 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 18:04:00 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 18:04:00 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 18:04:00 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 18:04:00 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 18:04:00 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 18:04:00 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 18:04:00 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 18:04:00 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 18:04:00 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 18:04:00 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 18:04:00 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 18:04:00 - HHH000026: Second-level cache disabled -2024-08-07 18:04:00 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 18:04:00 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 18:04:00 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 18:04:00 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 18:04:00 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 18:04:00 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 18:04:00 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 18:04:00 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 18:04:00 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 18:04:00 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 18:04:00 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 18:04:00 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 18:04:00 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 18:04:00 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 18:04:00 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 18:04:00 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 18:04:00 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 18:04:00 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 18:04:00 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 18:04:00 - Adding type registration image -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 18:04:00 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 18:04:00 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 18:04:00 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 18:04:00 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 18:04:00 - Adding type registration short -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 18:04:00 - Adding type registration short -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 18:04:00 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 18:04:00 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 18:04:00 - Adding type registration int -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 18:04:00 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 18:04:00 - Adding type registration long -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 18:04:00 - Adding type registration long -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 18:04:00 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 18:04:00 - Adding type registration float -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 18:04:00 - Adding type registration float -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 18:04:00 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 18:04:00 - Adding type registration double -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 18:04:00 - Adding type registration double -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 18:04:00 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 18:04:00 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 18:04:00 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 18:04:00 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 18:04:00 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 18:04:00 - Adding type registration character -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 18:04:00 - Adding type registration char -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 18:04:00 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 18:04:00 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 18:04:00 - Adding type registration string -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 18:04:00 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 18:04:00 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 18:04:00 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 18:04:00 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 18:04:00 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 18:04:00 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 18:04:00 - Adding type registration text -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 18:04:00 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 18:04:00 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 18:04:00 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 18:04:00 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 18:04:00 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 18:04:00 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 18:04:00 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 18:04:00 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 18:04:00 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 18:04:00 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 18:04:00 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 18:04:00 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 18:04:00 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 18:04:00 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 18:04:00 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 18:04:00 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 18:04:00 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 18:04:00 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 18:04:00 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 18:04:00 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 18:04:00 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 18:04:00 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 18:04:00 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 18:04:00 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 18:04:00 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 18:04:00 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 18:04:00 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 18:04:00 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 18:04:00 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 18:04:00 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 18:04:00 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 18:04:00 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 18:04:00 - Adding type registration date -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 18:04:00 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 18:04:00 - Adding type registration time -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 18:04:00 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 18:04:00 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 18:04:00 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 18:04:00 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 18:04:00 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 18:04:00 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 18:04:00 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 18:04:00 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 18:04:00 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 18:04:00 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 18:04:00 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-07 18:04:00 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 18:04:00 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 18:04:00 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-07 18:04:00 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-07 18:04:00 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-07 18:04:00 - Adding type registration class -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-07 18:04:00 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-07 18:04:00 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 18:04:00 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 18:04:00 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-07 18:04:00 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-07 18:04:00 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-07 18:04:00 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-07 18:04:00 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-07 18:04:00 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-07 18:04:00 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-07 18:04:00 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@2c5708e7 -2024-08-07 18:04:00 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@2c5708e7 -2024-08-07 18:04:00 - Adding type registration url -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-07 18:04:00 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-07 18:04:00 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@4e26564d -2024-08-07 18:04:00 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@42238078 -2024-08-07 18:04:00 - Adding type registration object -> org.hibernate.type.JavaObjectType@79445efb -2024-08-07 18:04:00 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@79445efb -2024-08-07 18:04:00 - Adding type registration null -> org.hibernate.type.NullType@573870cb -2024-08-07 18:04:00 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@5b88af70 -2024-08-07 18:04:00 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@2739ecc0 -2024-08-07 18:04:00 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@2932e15f -2024-08-07 18:04:00 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@3d98729a -2024-08-07 18:04:00 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@2375a976 -2024-08-07 18:04:00 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@4bc21e34 -2024-08-07 18:04:00 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@7544260a -2024-08-07 18:04:00 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@bb6869a -2024-08-07 18:04:00 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bddf43] into BootstrapContext; was [null] -2024-08-07 18:04:00 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bddf43) [was null] -2024-08-07 18:04:00 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@23708f14] into BootstrapContext; was [null] -2024-08-07 18:04:00 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@3dfc59c5] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@2cff5aa3] -2024-08-07 18:04:00 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 18:04:00 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 18:04:00 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 18:04:00 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 18:04:00 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 18:04:00 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bddf43] -2024-08-07 18:04:00 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@34bddf43] -2024-08-07 18:04:00 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-07 18:04:00 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 18:04:00 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 18:04:00 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 18:04:00 - JDBC version : 4.2 -2024-08-07 18:04:00 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 18:04:00 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 18:04:00 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 18:04:00 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 18:04:00 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 18:04:00 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 18:04:00 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 18:04:00 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 18:04:00 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 18:04:00 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 18:04:00 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 18:04:00 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@5111f814] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@71eafb64] -2024-08-07 18:04:00 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-07 18:04:00 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 18:04:00 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 18:04:00 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 18:04:00 - Import with entity name Action -2024-08-07 18:04:00 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 18:04:00 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 18:04:00 - Binding column: AnnotatedColumn() -2024-08-07 18:04:00 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 18:04:00 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 18:04:00 - MetadataSourceProcessor property id with lazy=false -2024-08-07 18:04:00 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 18:04:00 - building BasicValue for id -2024-08-07 18:04:00 - Skipping column re-registration: action.id -2024-08-07 18:04:00 - Building property id -2024-08-07 18:04:00 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 18:04:00 - Binding column: AnnotatedJoinColumn() -2024-08-07 18:04:00 - Binding column: AnnotatedColumn() -2024-08-07 18:04:00 - Building property event -2024-08-07 18:04:00 - Binding column: AnnotatedColumn() -2024-08-07 18:04:00 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 18:04:00 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 18:04:00 - building BasicValue for sequence -2024-08-07 18:04:00 - Skipping column re-registration: action.sequence -2024-08-07 18:04:00 - Building property sequence -2024-08-07 18:04:00 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 18:04:00 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 18:04:00 - Import with entity name BillAction -2024-08-07 18:04:00 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 18:04:00 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 18:04:00 - Binding column: AnnotatedColumn() -2024-08-07 18:04:00 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 18:04:00 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 18:04:00 - MetadataSourceProcessor property id with lazy=false -2024-08-07 18:04:00 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 18:04:00 - building BasicValue for id -2024-08-07 18:04:00 - Skipping column re-registration: bill_action.id -2024-08-07 18:04:00 - Building property id -2024-08-07 18:04:00 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 18:04:00 - Binding column: AnnotatedJoinColumn() -2024-08-07 18:04:00 - Binding column: AnnotatedColumn() -2024-08-07 18:04:00 - Building property action -2024-08-07 18:04:00 - Binding column: AnnotatedColumn() -2024-08-07 18:04:00 - MetadataSourceProcessor property price with lazy=false -2024-08-07 18:04:00 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 18:04:00 - building BasicValue for price -2024-08-07 18:04:00 - Skipping column re-registration: bill_action.price -2024-08-07 18:04:00 - Building property price -2024-08-07 18:04:00 - Binding column: AnnotatedColumn() -2024-08-07 18:04:00 - MetadataSourceProcessor property title with lazy=false -2024-08-07 18:04:00 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 18:04:00 - building BasicValue for title -2024-08-07 18:04:00 - Skipping column re-registration: bill_action.title -2024-08-07 18:04:00 - Building property title -2024-08-07 18:04:00 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 18:04:00 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 18:04:00 - Import with entity name MemberAction -2024-08-07 18:04:00 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 18:04:00 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 18:04:00 - Binding column: AnnotatedColumn() -2024-08-07 18:04:00 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 18:04:00 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 18:04:00 - MetadataSourceProcessor property id with lazy=false -2024-08-07 18:04:00 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 18:04:00 - building BasicValue for id -2024-08-07 18:04:00 - Skipping column re-registration: member_action.id -2024-08-07 18:04:00 - Building property id -2024-08-07 18:04:00 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 18:04:00 - Binding column: AnnotatedJoinColumn() -2024-08-07 18:04:00 - Binding column: AnnotatedColumn() -2024-08-07 18:04:00 - Building property action -2024-08-07 18:04:00 - Binding column: AnnotatedColumn() -2024-08-07 18:04:00 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 18:04:00 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 18:04:00 - building BasicValue for memberGroupId -2024-08-07 18:04:00 - Skipping column re-registration: member_action.member_group_id -2024-08-07 18:04:00 - Building property memberGroupId -2024-08-07 18:04:00 - Binding column: AnnotatedColumn() -2024-08-07 18:04:00 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 18:04:00 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 18:04:00 - building BasicValue for memberName -2024-08-07 18:04:00 - Skipping column re-registration: member_action.member_name -2024-08-07 18:04:00 - Building property memberName -2024-08-07 18:04:00 - Binding column: AnnotatedColumn() -2024-08-07 18:04:00 - MetadataSourceProcessor property status with lazy=false -2024-08-07 18:04:00 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 18:04:00 - building BasicValue for status -2024-08-07 18:04:00 - Skipping column re-registration: member_action.status -2024-08-07 18:04:00 - Building property status -2024-08-07 18:04:00 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 18:04:00 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 18:04:00 - Import with entity name Event -2024-08-07 18:04:00 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 18:04:00 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 18:04:00 - Binding column: AnnotatedColumn() -2024-08-07 18:04:00 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 18:04:00 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 18:04:00 - MetadataSourceProcessor property id with lazy=false -2024-08-07 18:04:00 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 18:04:00 - building BasicValue for id -2024-08-07 18:04:00 - Skipping column re-registration: event.id -2024-08-07 18:04:00 - Building property id -2024-08-07 18:04:00 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 18:04:00 - Binding column: AnnotatedColumn() -2024-08-07 18:04:00 - MetadataSourceProcessor property name with lazy=false -2024-08-07 18:04:00 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 18:04:00 - building BasicValue for name -2024-08-07 18:04:00 - Skipping column re-registration: event.name -2024-08-07 18:04:00 - Building property name -2024-08-07 18:04:00 - Binding column: AnnotatedColumn() -2024-08-07 18:04:00 - MetadataSourceProcessor property password with lazy=false -2024-08-07 18:04:00 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 18:04:00 - building BasicValue for password -2024-08-07 18:04:00 - Skipping column re-registration: event.password -2024-08-07 18:04:00 - Building property password -2024-08-07 18:04:00 - Binding column: AnnotatedColumn() -2024-08-07 18:04:00 - MetadataSourceProcessor property token with lazy=false -2024-08-07 18:04:00 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 18:04:00 - building BasicValue for token -2024-08-07 18:04:00 - Skipping column re-registration: event.token -2024-08-07 18:04:00 - Building property token -2024-08-07 18:04:00 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 18:04:00 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 18:04:00 - Import with entity name EventStep -2024-08-07 18:04:00 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 18:04:00 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 18:04:00 - Binding column: AnnotatedColumn() -2024-08-07 18:04:00 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 18:04:00 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 18:04:00 - MetadataSourceProcessor property id with lazy=false -2024-08-07 18:04:00 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 18:04:00 - building BasicValue for id -2024-08-07 18:04:00 - Skipping column re-registration: event_step.id -2024-08-07 18:04:00 - Building property id -2024-08-07 18:04:00 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 18:04:00 - Binding column: AnnotatedJoinColumn() -2024-08-07 18:04:00 - Binding column: AnnotatedColumn() -2024-08-07 18:04:00 - Building property event -2024-08-07 18:04:00 - Binding column: AnnotatedColumn() -2024-08-07 18:04:00 - MetadataSourceProcessor property name with lazy=false -2024-08-07 18:04:00 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 18:04:00 - building BasicValue for name -2024-08-07 18:04:00 - Skipping column re-registration: event_step.name -2024-08-07 18:04:00 - Building property name -2024-08-07 18:04:00 - Binding column: AnnotatedColumn() -2024-08-07 18:04:00 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 18:04:00 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 18:04:00 - building BasicValue for sequence -2024-08-07 18:04:00 - Skipping column re-registration: event_step.sequence -2024-08-07 18:04:00 - Building property sequence -2024-08-07 18:04:00 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 18:04:00 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 18:04:00 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 18:04:00 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 18:04:00 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 18:04:00 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 18:04:00 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 18:04:00 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 18:04:00 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 18:04:00 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 18:04:00 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 18:04:00 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 18:04:00 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 18:04:00 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 18:04:00 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 18:04:00 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 18:04:00 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 18:04:00 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 18:04:00 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 18:04:00 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 18:04:00 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 18:04:00 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 18:04:00 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 18:04:00 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 18:04:00 - Building session factory -2024-08-07 18:04:00 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 18:04:00 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@61d61b0e, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@3c2188f, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1214921099138761354, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=65918, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1214921099138761354, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@646bf8a6, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 18:04:00 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 18:04:00 - Session factory constructed with filter configurations : {} -2024-08-07 18:04:00 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 18:04:00 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 18:04:00 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 18:04:00 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 18:04:00 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 18:04:00 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 18:04:00 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 18:04:00 - Loaded expression factory via original TCCL -2024-08-07 18:04:00 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 18:04:00 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 18:04:00 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 18:04:00 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 18:04:00 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 18:04:00 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 18:04:00 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 18:04:00 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 18:04:00 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 18:04:00 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 18:04:00 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 18:04:00 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 18:04:00 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 18:04:00 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 18:04:00 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 18:04:00 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 18:04:00 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@56b48163] under count; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@32121140] under every; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@96c840a] under any; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@31f5ffb9] under sinh; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@19b3d3a4] under cosh; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3a9040f0] under tanh; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@33214124] under pi; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2d3768ce] under log; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 18:04:00 - Registering alternate key : length -> character_length -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@3aa8c337] under position; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@79b0956e] under overlay; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@37f627d0] under trim; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@7f9d40b3] under cast; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@ca2a03f] under collate; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@3293030b] under extract; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@4e3d36c2] under ifnull; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@263e512e] under pad; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@288b8663] under str; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@261099e1] under format; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@7d7c05fa] under timestampadd; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@7fa68ff4] under timestampdiff; prior registration was null -2024-08-07 18:04:00 - Registering alternate key : dateadd -> timestampadd -2024-08-07 18:04:00 - Registering alternate key : datediff -> timestampdiff -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2f64f99f] under current_date; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16c1d11] under current_time; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@123d0816] under current_timestamp; prior registration was null -2024-08-07 18:04:00 - Registering alternate key : current date -> current_date -2024-08-07 18:04:00 - Registering alternate key : current time -> current_time -2024-08-07 18:04:00 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@4601a148] under local_date; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@4e210016] under local_time; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2fc40856] under local_datetime; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5543d800] under offset_datetime; prior registration was null -2024-08-07 18:04:00 - Registering alternate key : local date -> local_date -2024-08-07 18:04:00 - Registering alternate key : local time -> local_time -2024-08-07 18:04:00 - Registering alternate key : local datetime -> local_datetime -2024-08-07 18:04:00 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1e033801] under instant; prior registration was null -2024-08-07 18:04:00 - Registering alternate key : current_instant -> instant -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@1be12e05] under sql; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@66ab088c] under count; prior registration was org.hibernate.dialect.function.CountFunction@56b48163 -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@43312512] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@33214124 -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@13f7c165] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 18:04:00 - Registering alternate key : day -> day_of_month -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@4e210016 -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@2fc40856 -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@30ca66c5] under trunc; prior registration was null -2024-08-07 18:04:00 - Registering alternate key : truncate -> trunc -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4abfa2ff] under date_trunc; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 18:04:00 - Registering alternate key : chr -> char -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@38c1b1a7] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@3aa8c337 -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@73230721] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 18:04:00 - Registering alternate key : every -> bool_and -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 18:04:00 - Registering alternate key : any -> bool_or -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@10bcbbce] under format; prior registration was org.hibernate.dialect.function.FormatFunction@261099e1 -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 18:04:00 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@31f9f9b3] under listagg; prior registration was null -2024-08-07 18:04:00 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@62264d4f] under mode; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@2bc0603f] under percentile_cont; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@4ed19540] under percentile_disc; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@69f24965] under rank; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@4eab9aec] under dense_rank; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@5a45c218] under percent_rank; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@2c6efee3] under cume_dist; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@62525dd3] under array; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@56adbb07] under array_list; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@237ee2e1] under array_agg; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@251e2f4a] under array_position; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@623ded82] under array_positions; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@4e826fd4] under array_positions_list; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5f14590c] under array_length; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@1ce8084a] under array_concat; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@222eda8a] under array_prepend; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@3331800f] under array_append; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@76eee0b1] under array_contains; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@2119b989] under array_contains_nullable; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@152d2a58] under array_overlaps; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@50b2ba2c] under array_overlaps_nullable; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5d373794] under array_get; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@3a012678] under array_set; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@329efc61] under array_remove; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@2c86b0ea] under array_remove_index; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4e481512] under array_slice; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@5570dc21] under array_replace; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1477d4e6] under array_trim; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@3d213a2b] under array_fill; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@27691ee8] under array_fill_list; prior registration was null -2024-08-07 18:04:00 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@5ec3689b] under array_to_string; prior registration was null -2024-08-07 18:04:00 - abs(NUMERIC arg) -2024-08-07 18:04:00 - Double acos(NUMERIC arg) -2024-08-07 18:04:00 - Boolean any(BOOLEAN predicate) -2024-08-07 18:04:00 - array( ... ) -2024-08-07 18:04:00 - array_agg(arg) -2024-08-07 18:04:00 - array_append( ... ) -2024-08-07 18:04:00 - array_concat( ... ) -2024-08-07 18:04:00 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 18:04:00 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 18:04:00 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 18:04:00 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 18:04:00 - array_get(ARRAY array, INTEGER index) -2024-08-07 18:04:00 - Integer array_length(ARRAY array) -2024-08-07 18:04:00 - array_list( ... ) -2024-08-07 18:04:00 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 18:04:00 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 18:04:00 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 18:04:00 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 18:04:00 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 18:04:00 - array_prepend( ... ) -2024-08-07 18:04:00 - array_remove( ... ) -2024-08-07 18:04:00 - array_remove_index( ... ) -2024-08-07 18:04:00 - array_replace( ... ) -2024-08-07 18:04:00 - array_set( ... ) -2024-08-07 18:04:00 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 18:04:00 - String array_to_string( ... ) -2024-08-07 18:04:00 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 18:04:00 - Integer ascii(STRING arg) -2024-08-07 18:04:00 - Double asin(NUMERIC arg) -2024-08-07 18:04:00 - Double atan(NUMERIC arg) -2024-08-07 18:04:00 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 18:04:00 - avg(NUMERIC arg) -2024-08-07 18:04:00 - bit_and(arg) -2024-08-07 18:04:00 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 18:04:00 - bit_or(arg) -2024-08-07 18:04:00 - bitand(arg0, arg1) -2024-08-07 18:04:00 - bitnot(arg) -2024-08-07 18:04:00 - bitor(arg0, arg1) -2024-08-07 18:04:00 - bitxor(arg0, arg1) -2024-08-07 18:04:00 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 18:04:00 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 18:04:00 - cast(arg as Type) -2024-08-07 18:04:00 - ceiling(NUMERIC arg) -2024-08-07 18:04:00 - Character char(INTEGER arg) -2024-08-07 18:04:00 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 18:04:00 - Character chr(INTEGER arg) -2024-08-07 18:04:00 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 18:04:00 - String collate(STRING string as COLLATION collation) -2024-08-07 18:04:00 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 18:04:00 - Double cos(NUMERIC arg) -2024-08-07 18:04:00 - Double cosh(NUMERIC arg) -2024-08-07 18:04:00 - Double cot(NUMERIC arg) -2024-08-07 18:04:00 - Long count([distinct ]{arg|*}) -2024-08-07 18:04:00 - Double cume_dist([arg0[, ...]]) -2024-08-07 18:04:00 - Date curdate() -2024-08-07 18:04:00 - Date current date -2024-08-07 18:04:00 - Time current time -2024-08-07 18:04:00 - Timestamp current timestamp -2024-08-07 18:04:00 - Date current_date -2024-08-07 18:04:00 - Instant current_instant -2024-08-07 18:04:00 - Time current_time -2024-08-07 18:04:00 - Timestamp current_timestamp -2024-08-07 18:04:00 - Time curtime() -2024-08-07 18:04:00 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 18:04:00 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 18:04:00 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 18:04:00 - Integer day(DATE arg) -2024-08-07 18:04:00 - Integer day_of_month(DATE arg) -2024-08-07 18:04:00 - Integer day_of_week(DATE arg) -2024-08-07 18:04:00 - Integer day_of_year(DATE arg) -2024-08-07 18:04:00 - String dayname(DATE arg) -2024-08-07 18:04:00 - Double degrees(NUMERIC arg) -2024-08-07 18:04:00 - Long dense_rank([arg0[, ...]]) -2024-08-07 18:04:00 - Boolean every(BOOLEAN predicate) -2024-08-07 18:04:00 - Double exp(NUMERIC arg) -2024-08-07 18:04:00 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 18:04:00 - first_valueANY value -2024-08-07 18:04:00 - floor(NUMERIC arg) -2024-08-07 18:04:00 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 18:04:00 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 18:04:00 - Integer hour(TIME arg) -2024-08-07 18:04:00 - ifnull(arg0, arg1) -2024-08-07 18:04:00 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 18:04:00 - Instant instant -2024-08-07 18:04:00 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 18:04:00 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 18:04:00 - last_valueANY value -2024-08-07 18:04:00 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 18:04:00 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 18:04:00 - String left(STRING string, INTEGER length) -2024-08-07 18:04:00 - Integer length(STRING_OR_CLOB arg) -2024-08-07 18:04:00 - String listagg(STRING arg0, STRING arg1) -2024-08-07 18:04:00 - Double ln(NUMERIC arg) -2024-08-07 18:04:00 - LocalDate local date -2024-08-07 18:04:00 - LocalDateTime local datetime -2024-08-07 18:04:00 - LocalTime local time -2024-08-07 18:04:00 - LocalDate local_date -2024-08-07 18:04:00 - LocalDateTime local_datetime -2024-08-07 18:04:00 - LocalTime local_time -2024-08-07 18:04:00 - Time localtime -2024-08-07 18:04:00 - Timestamp localtimestamp -2024-08-07 18:04:00 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 18:04:00 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 18:04:00 - Double log10(NUMERIC arg) -2024-08-07 18:04:00 - String lower(STRING string) -2024-08-07 18:04:00 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 18:04:00 - String ltrim(STRING string) -2024-08-07 18:04:00 - max(COMPARABLE arg) -2024-08-07 18:04:00 - Double median(NUMERIC arg) -2024-08-07 18:04:00 - Integer microsecond(TIME arg) -2024-08-07 18:04:00 - min(COMPARABLE arg) -2024-08-07 18:04:00 - Integer minute(TIME arg) -2024-08-07 18:04:00 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 18:04:00 - mode() -2024-08-07 18:04:00 - Integer month(DATE arg) -2024-08-07 18:04:00 - String monthname(DATE arg) -2024-08-07 18:04:00 - Timestamp now() -2024-08-07 18:04:00 - nth_valueANY value, INTEGER nth -2024-08-07 18:04:00 - nullif(arg0, arg1) -2024-08-07 18:04:00 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 18:04:00 - OffsetDateTime offset datetime -2024-08-07 18:04:00 - OffsetDateTime offset_datetime -2024-08-07 18:04:00 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 18:04:00 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 18:04:00 - Double percent_rank([arg0[, ...]]) -2024-08-07 18:04:00 - percentile_cont(NUMERIC arg) -2024-08-07 18:04:00 - percentile_disc(NUMERIC arg) -2024-08-07 18:04:00 - Double pi -2024-08-07 18:04:00 - Integer position(STRING pattern in STRING string) -2024-08-07 18:04:00 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 18:04:00 - Integer quarter(DATE arg) -2024-08-07 18:04:00 - Double radians(NUMERIC arg) -2024-08-07 18:04:00 - Double rand([INTEGER seed]) -2024-08-07 18:04:00 - Long rank([arg0[, ...]]) -2024-08-07 18:04:00 - String repeat(STRING string, INTEGER times) -2024-08-07 18:04:00 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 18:04:00 - String right(STRING string, INTEGER length) -2024-08-07 18:04:00 - round(NUMERIC number[, INTEGER places]) -2024-08-07 18:04:00 - Long row_number() -2024-08-07 18:04:00 - Long rownum() -2024-08-07 18:04:00 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 18:04:00 - String rtrim(STRING string) -2024-08-07 18:04:00 - Integer second(TIME arg) -2024-08-07 18:04:00 - Integer sign(NUMERIC arg) -2024-08-07 18:04:00 - Double sin(NUMERIC arg) -2024-08-07 18:04:00 - Double sinh(NUMERIC arg) -2024-08-07 18:04:00 - String soundex(arg) -2024-08-07 18:04:00 - String space(INTEGER arg) -2024-08-07 18:04:00 - Object sql -2024-08-07 18:04:00 - Double sqrt(NUMERIC arg) -2024-08-07 18:04:00 - Double stddev_pop(NUMERIC arg) -2024-08-07 18:04:00 - Double stddev_samp(NUMERIC arg) -2024-08-07 18:04:00 - String str(arg) -2024-08-07 18:04:00 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 18:04:00 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 18:04:00 - sum(arg) -2024-08-07 18:04:00 - Timestamp sysdate -2024-08-07 18:04:00 - Double tan(NUMERIC arg) -2024-08-07 18:04:00 - Double tanh(NUMERIC arg) -2024-08-07 18:04:00 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 18:04:00 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 18:04:00 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 18:04:00 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 18:04:00 - trunc( ... ) -2024-08-07 18:04:00 - truncate( ... ) -2024-08-07 18:04:00 - String upper(STRING string) -2024-08-07 18:04:00 - Double var_pop(NUMERIC arg) -2024-08-07 18:04:00 - Double var_samp(NUMERIC arg) -2024-08-07 18:04:00 - Integer week(DATE arg) -2024-08-07 18:04:00 - Integer year(DATE arg) -2024-08-07 18:04:00 - Starting QueryInterpretationCache(2048) -2024-08-07 18:04:00 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 18:04:00 - Configured EntityCopyObserver strategy: disallow -2024-08-07 18:04:00 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 18:04:00 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 18:04:00 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 18:04:00 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 18:04:00 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 18:04:00 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 18:04:00 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 18:04:00 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 18:04:00 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 18:04:00 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 18:04:00 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 18:04:00 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 18:04:00 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 18:04:00 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 18:04:00 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 18:04:00 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 18:04:00 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 18:04:00 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 18:04:00 - Starting post-init callbacks -2024-08-07 18:04:00 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 18:04:00 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 18:04:00 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 18:04:00 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 18:04:00 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 18:04:00 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 18:04:00 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 18:04:00 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 18:04:00 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 18:04:01 - Created new SQL alias : ba1_0 -2024-08-07 18:04:01 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 18:04:01 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@45689582] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 18:04:01 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 18:04:01 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 18:04:01 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 18:04:01 - Version select: select id from bill_action where id=? -2024-08-07 18:04:01 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 18:04:01 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 18:04:01 - Delete (0): delete from bill_action where id=? -2024-08-07 18:04:01 - Created new SQL alias : ma1_0 -2024-08-07 18:04:01 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 18:04:01 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7fba30fe] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 18:04:01 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 18:04:01 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 18:04:01 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 18:04:01 - Version select: select id from member_action where id=? -2024-08-07 18:04:01 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 18:04:01 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 18:04:01 - Delete (0): delete from member_action where id=? -2024-08-07 18:04:01 - Created new SQL alias : e1_0 -2024-08-07 18:04:01 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 18:04:01 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 18:04:01 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 18:04:01 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 18:04:01 - Version select: select id from event where id=? -2024-08-07 18:04:01 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 18:04:01 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 18:04:01 - Delete (0): delete from event where id=? -2024-08-07 18:04:01 - Created new SQL alias : a1_0 -2024-08-07 18:04:01 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 18:04:01 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@76ccde41] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 18:04:01 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 18:04:01 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 18:04:01 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 18:04:01 - Version select: select id from action where id=? -2024-08-07 18:04:01 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 18:04:01 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 18:04:01 - Delete (0): delete from action where id=? -2024-08-07 18:04:01 - Created new SQL alias : es1_0 -2024-08-07 18:04:01 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 18:04:01 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@3e8eea59] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 18:04:01 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 18:04:01 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 18:04:01 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 18:04:01 - Version select: select id from event_step where id=? -2024-08-07 18:04:01 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 18:04:01 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 18:04:01 - Delete (0): delete from event_step where id=? -2024-08-07 18:04:01 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 18:04:01 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@5111f814] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@76d220eb] -2024-08-07 18:04:01 - Checking 0 named HQL queries -2024-08-07 18:04:01 - Checking 0 named SQL queries -2024-08-07 18:04:01 - - drop table if exists action cascade -2024-08-07 18:04:01 - - drop table if exists bill_action cascade -2024-08-07 18:04:01 - - drop table if exists event cascade -2024-08-07 18:04:01 - - drop table if exists event_step cascade -2024-08-07 18:04:01 - - drop table if exists member_action cascade -2024-08-07 18:04:01 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 18:04:01 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 18:04:01 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 18:04:01 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 18:04:01 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 18:04:01 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 18:04:01 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 18:04:01 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 18:04:01 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 18:04:01 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@77feca04 -2024-08-07 18:04:01 - Registering SessionFactory: 24bee21a-eca7-42cc-ab4b-176ddc77887d (<unnamed>) -2024-08-07 18:04:01 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 18:04:01 - Instantiated SessionFactory -2024-08-07 18:04:01 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'actionService' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 84 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:01 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:01 - [javax.management.remote.rmi.RMIConnectionImpl@272a1bc4: connectionId=rmi://127.0.0.1 2] closing. -2024-08-07 18:04:01 - [javax.management.remote.rmi.RMIConnectionImpl@272a1bc4: connectionId=rmi://127.0.0.1 2] closed. -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 18:04:01 - Initializing JpaMetamodelMappingContext… -2024-08-07 18:04:01 - Finished initializing JpaMetamodelMappingContext -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - Statistics initialized [enabled=false] -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 18:04:01 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 18:04:01 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 18:04:01 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:01 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - Looking up named query BillAction.findByAction_Event -2024-08-07 18:04:01 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:01 - Did not find named query BillAction.findByAction_Event -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - Looking up named query BillAction.findByAction_Id -2024-08-07 18:04:01 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:01 - Did not find named query BillAction.findByAction_Id -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 18:04:01 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:01 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 18:04:01 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:01 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 18:04:01 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:01 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 18:04:01 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 18:04:01 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 18:04:01 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 18:04:01 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:01 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 18:04:01 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 18:04:01 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 18:04:01 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 18:04:01 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:01 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 18:04:01 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 18:04:01 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(747412379745125)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(747412379745125)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(747412379745125)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(747412379745125)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(747412379745125).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 18:04:01 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:01 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 18:04:01 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 18:04:01 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 18:04:01 - Looking up named query MemberAction.findByAction -2024-08-07 18:04:01 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:01 - Did not find named query MemberAction.findByAction -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - Looking up named query Event.findByToken -2024-08-07 18:04:01 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:01 - Did not find named query Event.findByToken -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 18:04:01 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 18:04:01 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 18:04:01 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:01 - Did not find named query Action.findLastByEvent.count -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 18:04:01 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 18:04:01 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 18:04:01 - Looking up named query Action.findByIdAndEvent -2024-08-07 18:04:01 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:01 - Did not find named query Action.findByIdAndEvent -2024-08-07 18:04:01 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:01 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 18:04:01 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 18:04:01 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 18:04:01 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'eventService' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 18:04:01 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 18:04:01 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 18:04:01 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 18:04:01 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 18:04:01 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 18:04:01 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 18:04:01 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 18:04:01 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 18:04:01 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 18:04:01 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 18:04:01 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'actionController' -2024-08-07 18:04:01 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 18:04:01 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'eventController' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'authService' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 18:04:01 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 18:04:01 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 18:04:01 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 18:04:01 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 18:04:01 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:01 - Loaded expression factory via original TCCL -2024-08-07 18:04:01 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 18:04:01 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 18:04:01 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 18:04:01 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 18:04:01 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 18:04:01 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 18:04:01 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 18:04:01 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 18:04:01 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 18:04:01 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 18:04:01 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 18:04:01 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 18:04:01 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 18:04:01 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 18:04:01 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'error' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 18:04:01 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 18:04:01 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 18:04:01 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 18:04:01 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 18:04:01 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:01 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:04:01 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 18:04:01 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:01 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:04:01 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 18:04:01 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 18:04:01 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:04:01 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:04:01 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 18:04:01 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 18:04:01 - - s.h.p.EventController: - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) -2024-08-07 18:04:01 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 18:04:01 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 18:04:01 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 18:04:01 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:04:01 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 18:04:01 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:04:01 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:04:01 - 'beanNameHandlerMapping' {} -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 18:04:01 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:04:01 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 18:04:01 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 18:04:01 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:01 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:01 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 18:04:01 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:01 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 18:04:01 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 18:04:01 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 18:04:01 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 18:04:01 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:04:01 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:04:01 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 18:04:01 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 18:04:01 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 18:04:01 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 18:04:01 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 18:04:01 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 18:04:01 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 18:04:01 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 18:04:01 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 18:04:01 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 18:04:01 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 18:04:01 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 18:04:01 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 18:04:01 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 18:04:01 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 18:04:01 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:01 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 18:04:01 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:01 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 18:04:01 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 18:04:01 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 18:04:01 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 18:04:01 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 18:04:01 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 18:04:01 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 18:04:01 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 18:04:01 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 18:04:01 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 18:04:01 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 18:04:01 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 18:04:01 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 18:04:01 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 18:04:01 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 18:04:01 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 18:04:01 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 18:04:01 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 18:04:01 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 18:04:01 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 18:04:01 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 84 -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:01 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:01 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:01 - [javax.management.remote.rmi.RMIConnectionImpl@51e9789d: connectionId=rmi://127.0.0.1 3] closing. -2024-08-07 18:04:01 - [javax.management.remote.rmi.RMIConnectionImpl@51e9789d: connectionId=rmi://127.0.0.1 3] closed. -2024-08-07 18:04:01 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 18:04:01 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 18:04:01 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 18:04:01 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 18:04:01 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 18:04:01 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 18:04:01 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 18:04:01 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 18:04:01 - Using SLF4J as the default logging framework -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 18:04:01 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 18:04:01 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 18:04:01 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 18:04:01 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 18:04:01 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 18:04:01 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 18:04:01 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 18:04:01 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 18:04:01 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 18:04:01 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 18:04:01 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 18:04:01 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 18:04:01 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 18:04:01 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 18:04:01 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 18:04:01 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 18:04:01 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 18:04:01 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 18:04:01 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 18:04:01 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 18:04:01 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 18:04:01 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 18:04:01 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 18:04:01 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 18:04:01 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 18:04:01 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 18:04:01 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 18:04:01 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 18:04:01 - Registering beans for JMX exposure on startup -2024-08-07 18:04:01 - Auto-detecting user-defined JMX MBeans -2024-08-07 18:04:01 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 18:04:01 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 18:04:01 - Starting beans in phase -2147483647 -2024-08-07 18:04:01 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 18:04:01 - Starting beans in phase 2147481599 -2024-08-07 18:04:01 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 18:04:01 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 18:04:01 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 18:04:01 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 18:04:01 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 18:04:01 - Successfully started bean 'webServerStartStop' -2024-08-07 18:04:01 - Starting beans in phase 2147482623 -2024-08-07 18:04:01 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 18:04:01 - Starting beans in phase 2147483647 -2024-08-07 18:04:01 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.web.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 18:04:01 - Started HaengdongApplication in 2.086 seconds (process running for 2.28) -2024-08-07 18:04:01 - Application availability state LivenessState changed to CORRECT -2024-08-07 18:04:01 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 84 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - [javax.management.remote.rmi.RMIConnectionImpl@486bb462: connectionId=rmi://127.0.0.1 4] closing. -2024-08-07 18:04:02 - [javax.management.remote.rmi.RMIConnectionImpl@486bb462: connectionId=rmi://127.0.0.1 4] closed. -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:50486] -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 84 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 84 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - [javax.management.remote.rmi.RMIConnectionImpl@7e36987f: connectionId=rmi://127.0.0.1 5] closing. -2024-08-07 18:04:02 - [javax.management.remote.rmi.RMIConnectionImpl@7e36987f: connectionId=rmi://127.0.0.1 5] closed. -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 84 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - [javax.management.remote.rmi.RMIConnectionImpl@bf2df10: connectionId=rmi://127.0.0.1 6] closing. -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - [javax.management.remote.rmi.RMIConnectionImpl@bf2df10: connectionId=rmi://127.0.0.1 6] closed. -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 84 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - [javax.management.remote.rmi.RMIConnectionImpl@75dedd6: connectionId=rmi://127.0.0.1 7] closing. -2024-08-07 18:04:02 - [javax.management.remote.rmi.RMIConnectionImpl@75dedd6: connectionId=rmi://127.0.0.1 7] closed. -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - [javax.management.remote.rmi.RMIConnectionImpl@1a2f4c20: connectionId=rmi://127.0.0.1 8] closing. -2024-08-07 18:04:02 - [javax.management.remote.rmi.RMIConnectionImpl@1a2f4c20: connectionId=rmi://127.0.0.1 8] closed. -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 84 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 84 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - [javax.management.remote.rmi.RMIConnectionImpl@48d07530: connectionId=rmi://127.0.0.1 10] closing. -2024-08-07 18:04:02 - [javax.management.remote.rmi.RMIConnectionImpl@48d07530: connectionId=rmi://127.0.0.1 10] closed. -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - [javax.management.remote.rmi.RMIConnectionImpl@204185fb: connectionId=rmi://127.0.0.1 9] closing. -2024-08-07 18:04:02 - [javax.management.remote.rmi.RMIConnectionImpl@204185fb: connectionId=rmi://127.0.0.1 9] closed. -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 84 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 84 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@27ab206 -2024-08-07 18:04:02 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 18:04:02 - Fetching JDBC Connection from DataSource -2024-08-07 18:04:02 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 18:04:02 - Initializing Servlet 'dispatcherServlet' -2024-08-07 18:04:02 - Detected StandardServletMultipartResolver -2024-08-07 18:04:02 - Detected AcceptHeaderLocaleResolver -2024-08-07 18:04:02 - Detected FixedThemeResolver -2024-08-07 18:04:02 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@42be0eca -2024-08-07 18:04:02 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@5074893 -2024-08-07 18:04:02 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 18:04:02 - Completed initialization in 1 ms -2024-08-07 18:04:02 - Fetching JDBC Connection from DataSource -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 82 -2024-08-07 18:04:02 - RMI TCP Connection(1)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - [javax.management.remote.rmi.RMIConnectionImpl@12591c7d: connectionId=rmi://127.0.0.1 12] closing. -2024-08-07 18:04:02 - [javax.management.remote.rmi.RMIConnectionImpl@12591c7d: connectionId=rmi://127.0.0.1 12] closed. -2024-08-07 18:04:02 - RMI TCP Connection(2)-127.0.0.1: (port 50484) op = 80 -2024-08-07 18:04:02 - [javax.management.remote.rmi.RMIConnectionImpl@2fa94472: connectionId=rmi://127.0.0.1 11] closing. -2024-08-07 18:04:02 - [javax.management.remote.rmi.RMIConnectionImpl@2fa94472: connectionId=rmi://127.0.0.1 11] closed. -2024-08-07 18:04:18 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1214921099138761354/conf/jaspic-providers.xml] -2024-08-07 18:04:18 - POST "/api/events/fe9d8577-515c-488a-8b91-a4d3c040b12b/member-actions", parameters={} -2024-08-07 18:04:18 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 18:04:18 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 18:04:18 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 18:04:18 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 18:04:18 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 18:04:18 - Completed 401 UNAUTHORIZED -2024-08-07 18:04:28 - POST "/api/events", parameters={} -2024-08-07 18:04:28 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 18:04:28 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:04:28 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=이름, password=1234]] -2024-08-07 18:04:28 - Found thread-bound EntityManager [SessionImpl(1385419357<open>)] for JPA transaction -2024-08-07 18:04:28 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 18:04:28 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 18:04:28 - begin -2024-08-07 18:04:28 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@5ac631b4] -2024-08-07 18:04:28 - Found thread-bound EntityManager [SessionImpl(1385419357<open>)] for JPA transaction -2024-08-07 18:04:28 - Participating in existing transaction -2024-08-07 18:04:28 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 18:04:28 - Executing identity-insert immediately -2024-08-07 18:04:28 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 18:04:28 - Initializer list is empty -2024-08-07 18:04:28 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@4be9110c -2024-08-07 18:04:28 - Extracted JDBC value [0] - [1] -2024-08-07 18:04:28 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@449d6e14 -2024-08-07 18:04:28 - Initiating transaction commit -2024-08-07 18:04:28 - Committing JPA transaction on EntityManager [SessionImpl(1385419357<open>)] -2024-08-07 18:04:28 - committing -2024-08-07 18:04:28 - Processing flush-time cascades -2024-08-07 18:04:28 - Dirty checking collections -2024-08-07 18:04:28 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 18:04:28 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 18:04:28 - Listing entities: -2024-08-07 18:04:28 - server.haengdong.domain.event.Event{password=1234, name=이름, id=1, token=867c3773-e0fb-459f-ab4b-bc787379f912} -2024-08-07 18:04:28 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 18:04:28 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 18:04:28 - Writing [EventResponse[eventId=867c3773-e0fb-459f-ab4b-bc787379f912]] -2024-08-07 18:04:28 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:04:28 - Completed 200 OK -2024-08-07 18:04:30 - RMI TCP Connection(1)-127.0.0.1: (port 50484) connection closed -2024-08-07 18:04:30 - RMI TCP Connection(2)-127.0.0.1: (port 50484) connection closed -2024-08-07 18:04:30 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=50485,localport=50484] -2024-08-07 18:04:30 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=50486,localport=50484] -2024-08-07 18:04:30 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=50485,localport=50484] -2024-08-07 18:04:30 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=50486,localport=50484] -2024-08-07 18:04:30 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 18:04:30 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 18:04:33 - OPTIONS "/api/events/867c3773-e0fb-459f-ab4b-bc787379f912", parameters={} -2024-08-07 18:04:33 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 18:04:33 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:04:33 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:04:33 - Completed 200 OK -2024-08-07 18:04:33 - OPTIONS "/api/events/867c3773-e0fb-459f-ab4b-bc787379f912/actions", parameters={} -2024-08-07 18:04:33 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 18:04:33 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:04:33 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:04:33 - Completed 200 OK -2024-08-07 18:04:33 - GET "/api/events/867c3773-e0fb-459f-ab4b-bc787379f912", parameters={} -2024-08-07 18:04:33 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 18:04:33 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:04:33 - GET "/api/events/867c3773-e0fb-459f-ab4b-bc787379f912/actions", parameters={} -2024-08-07 18:04:33 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 18:04:33 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:04:33 - Found thread-bound EntityManager [SessionImpl(824320761<open>)] for JPA transaction -2024-08-07 18:04:33 - Found thread-bound EntityManager [SessionImpl(496152972<open>)] for JPA transaction -2024-08-07 18:04:33 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 18:04:33 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 18:04:33 - HikariPool-1 - Connection not added, stats (total=10, active=2, idle=8, waiting=0) -2024-08-07 18:04:33 - Setting JDBC Connection [HikariProxyConnection@991944766 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 18:04:33 - Setting JDBC Connection [HikariProxyConnection@434942094 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 18:04:33 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 18:04:33 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 18:04:33 - begin -2024-08-07 18:04:33 - begin -2024-08-07 18:04:33 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@75e39c9c] -2024-08-07 18:04:33 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@3ed66355] -2024-08-07 18:04:33 - Created new SQL alias : e1_0 -2024-08-07 18:04:33 - Created new SQL alias : e1_0 -2024-08-07 18:04:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(747412399530000))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 18:04:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(747412399530000))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 18:04:33 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@a8b2a12 -2024-08-07 18:04:33 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@79ea3c29 -2024-08-07 18:04:33 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(747412399530000).token) -2024-08-07 18:04:33 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(747412399530000).token) -2024-08-07 18:04:33 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(747412399530000)] - | +-BasicFetch [server.haengdong.domain.event.Event(747412399530000).name] - | +-BasicFetch [server.haengdong.domain.event.Event(747412399530000).password] - | \-BasicFetch [server.haengdong.domain.event.Event(747412399530000).token] - -2024-08-07 18:04:33 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(747412399530000)] - | +-BasicFetch [server.haengdong.domain.event.Event(747412399530000).name] - | +-BasicFetch [server.haengdong.domain.event.Event(747412399530000).password] - | \-BasicFetch [server.haengdong.domain.event.Event(747412399530000).token] - -2024-08-07 18:04:33 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(747412399530000)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 18:04:33 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(747412399530000)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 18:04:33 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 18:04:33 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 18:04:33 - Initializer list: - server.haengdong.domain.event.Event(747412399530000) -> EntityResultInitializer(server.haengdong.domain.event.Event(747412399530000))@264254204 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 18:04:33 - Initializer list: - server.haengdong.domain.event.Event(747412399530000) -> EntityResultInitializer(server.haengdong.domain.event.Event(747412399530000))@907368224 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 18:04:33 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 18:04:33 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 18:04:33 - Extracted JDBC value [0] - [1] -2024-08-07 18:04:33 - Extracted JDBC value [0] - [1] -2024-08-07 18:04:33 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(747412399530000)): 1 -2024-08-07 18:04:33 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(747412399530000)): 1 -2024-08-07 18:04:33 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(747412399530000)#1] : 461947877 -2024-08-07 18:04:33 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(747412399530000)#1] : 1344908389 -2024-08-07 18:04:33 - Extracted JDBC value [1] - [이름] -2024-08-07 18:04:33 - Extracted JDBC value [1] - [이름] -2024-08-07 18:04:33 - Extracted JDBC value [2] - [1234] -2024-08-07 18:04:33 - Extracted JDBC value [2] - [1234] -2024-08-07 18:04:33 - Extracted JDBC value [3] - [867c3773-e0fb-459f-ab4b-bc787379f912] -2024-08-07 18:04:33 - Extracted JDBC value [3] - [867c3773-e0fb-459f-ab4b-bc787379f912] -2024-08-07 18:04:33 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(747412399530000)#1 -2024-08-07 18:04:33 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(747412399530000)#1 -2024-08-07 18:04:33 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@461b0148 -2024-08-07 18:04:33 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@792cfd6a -2024-08-07 18:04:33 - Initiating transaction commit -2024-08-07 18:04:33 - Committing JPA transaction on EntityManager [SessionImpl(824320761<open>)] -2024-08-07 18:04:33 - committing -2024-08-07 18:04:33 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@991944766 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 18:04:33 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 18:04:33 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 18:04:33 - Writing [EventDetailResponse[eventName=이름]] -2024-08-07 18:04:33 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:04:33 - Completed 200 OK -2024-08-07 18:04:33 - Created new SQL alias : ba1_0 -2024-08-07 18:04:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(747412250503625))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 18:04:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@ee6c154] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 18:04:33 - Created new SQL alias : a1_0 -2024-08-07 18:04:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@78fd545d] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 18:04:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@ee6c154] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 18:04:33 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@1ab3b0ef -2024-08-07 18:04:33 - Created new SQL alias : e1_0 -2024-08-07 18:04:33 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@2b20feb -2024-08-07 18:04:33 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(747412250503625).action(747412250523500).event(747412250530875) : event) -2024-08-07 18:04:33 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(747412250503625)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(747412250503625).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(747412250503625).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(747412250503625).title] - -2024-08-07 18:04:33 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(747412250503625)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(747412250503625).action(747412250523500)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(747412250503625).action(747412250523500).event(747412250530875)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 18:04:33 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 18:04:33 - Initializer list: - server.haengdong.domain.action.BillAction(747412250503625) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(747412250503625))@1534901336 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - server.haengdong.domain.action.BillAction(747412250503625).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(747412250503625).action)@113346998 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@861831444) - server.haengdong.domain.action.BillAction(747412250503625).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(747412250503625).action.event)@1348240788 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@1853648315) - -2024-08-07 18:04:33 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 18:04:33 - Created new SQL alias : ma1_0 -2024-08-07 18:04:33 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction(m))] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 18:04:33 - Created new SQL alias : a1_0 -2024-08-07 18:04:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@d498d06] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 18:04:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5b8570c8] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 18:04:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@bce0973] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 18:04:33 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@bce0973] for NavigablePath [server.haengdong.domain.action.MemberAction(m).action(747412379745125).event] overrode previous registration : org.hibernate.sql.ast.tree.from.LazyTableGroup@5b8570c8 -2024-08-07 18:04:33 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 18:04:33 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 18:04:33 - Determining mapping-model type for SqmPath : SqmEntityValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action(747412379745125).event) -2024-08-07 18:04:33 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction(m)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.MemberAction(m).action(747412379745125)] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction(m).status] - -2024-08-07 18:04:33 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction(m)) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction(m).action(747412379745125)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.MemberAction(m).action(747412379745125).event) { - } - join LazyTableGroup (e2 : server.haengdong.domain.action.MemberAction(m).action(747412379745125).event) { - } - } - } - } - } - } - } - -2024-08-07 18:04:33 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 18:04:33 - Initializer list: - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@979222028 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - server.haengdong.domain.action.MemberAction(m).action(747412379745125).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(747412379745125).event)@1350005528 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@1853648315) - server.haengdong.domain.action.MemberAction(m).action(747412379745125) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(747412379745125))@722038260 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@356286248) - -2024-08-07 18:04:33 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 18:04:33 - Initiating transaction commit -2024-08-07 18:04:33 - Committing JPA transaction on EntityManager [SessionImpl(496152972<open>)] -2024-08-07 18:04:33 - committing -2024-08-07 18:04:33 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@434942094 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 18:04:33 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 18:04:33 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 18:04:33 - Writing [StepsResponse[steps=[]]] -2024-08-07 18:04:33 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:04:33 - Completed 200 OK -2024-08-07 18:04:38 - OPTIONS "/api/events/867c3773-e0fb-459f-ab4b-bc787379f912/member-actions", parameters={} -2024-08-07 18:04:38 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 18:04:38 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:04:38 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:04:38 - Completed 200 OK -2024-08-07 18:04:38 - POST "/api/events/867c3773-e0fb-459f-ab4b-bc787379f912/member-actions", parameters={} -2024-08-07 18:04:38 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 18:04:38 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 18:04:38 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 18:04:38 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 18:04:38 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 18:04:38 - Completed 401 UNAUTHORIZED -2024-08-07 18:04:56 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 18:04:56 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b, started on Wed Aug 07 18:03:59 KST 2024 -2024-08-07 18:04:56 - Stopping beans in phase 2147483647 -2024-08-07 18:04:56 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 18:04:56 - Stopping beans in phase 2147482623 -2024-08-07 18:04:56 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 18:04:56 - Stopping beans in phase 2147481599 -2024-08-07 18:04:56 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 18:04:56 - Stopping beans in phase -2147483647 -2024-08-07 18:04:56 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 18:04:56 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 18:04:56 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 18:04:56 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 18:04:56 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 18:04:56 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 18:04:56 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 18:04:56 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 18:04:56 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 18:04:56 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 18:04:56 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 18:04:56 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 18:04:56 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 18:04:56 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 18:04:56 - Unregistering JMX-exposed beans on shutdown -2024-08-07 18:04:56 - Unregistering JMX-exposed beans -2024-08-07 18:04:56 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 18:04:56 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 18:04:56 - HHH000031: Closing -2024-08-07 18:04:56 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@210a5511] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@76d220eb] -2024-08-07 18:04:56 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 18:04:56 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 18:04:56 - HikariPool-1 - Shutdown initiated... -2024-08-07 18:04:56 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 18:04:56 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:04:56 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:04:56 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:04:56 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:04:56 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:04:56 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:04:56 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:04:56 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:04:56 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:04:56 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:04:56 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 18:04:56 - HikariPool-1 - Shutdown completed. -2024-08-07 18:04:56 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-07 18:04:57 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-07 18:04:57 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-07 18:04:57 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 18:04:57 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 18:04:57 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 18:04:57 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 18:04:57 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 18:04:57 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 18:04:57 - Loaded expression factory via original TCCL -2024-08-07 18:04:57 - Starting HaengdongApplication using Java 17.0.12 with PID 65962 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-07 18:04:57 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-07 18:04:57 - No active profile set, falling back to 1 default profile: "default" -2024-08-07 18:04:57 - Loading source class server.haengdong.HaengdongApplication -2024-08-07 18:04:57 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-07 18:04:57 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 18:04:57 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 18:04:57 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 18:04:57 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 18:04:57 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 18:04:57 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-07 18:04:57 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-07 18:04:57 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-07 18:04:57 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-07 18:04:57 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-07 18:04:57 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-07 18:04:57 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-07 18:04:57 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 18:04:57 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 18:04:57 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 18:04:57 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-07 18:04:57 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 18:04:57 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-07 18:04:57 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-07 18:04:57 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-07 18:04:57 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-07 18:04:57 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-07 18:04:57 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-07 18:04:57 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-07 18:04:57 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-07 18:04:57 - Scanning for JPA repositories in packages server.haengdong. -2024-08-07 18:04:57 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-07 18:04:57 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-07 18:04:57 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-07 18:04:57 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-07 18:04:57 - Finished Spring Data repository scanning in 15 ms. Found 4 JPA repository interfaces. -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-07 18:04:57 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-07 18:04:57 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-07 18:04:57 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 18:04:57 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-07 18:04:57 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 18:04:57 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-07 18:04:57 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-07 18:04:57 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-07 18:04:57 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@b14b60a] -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-07 18:04:57 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-07 18:04:57 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-07 18:04:58 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-07 18:04:58 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-07 18:04:58 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-07 18:04:58 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-07 18:04:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-07 18:04:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-07 18:04:58 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 18:04:58 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:58 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:58 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:58 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-07 18:04:58 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 18:04:58 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-07 18:04:58 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-07 18:04:58 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-07 18:04:58 - Tomcat initialized with port 8080 (http) -2024-08-07 18:04:58 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@25ce435] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@25ce435] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.mapper.MapperListener@7cd5fcf4] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.mapper.MapperListener@7cd5fcf4] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-07 18:04:58 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-07 18:04:58 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@25ce435] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@25ce435] to [STARTING] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@25ce435] to [STARTED] -2024-08-07 18:04:58 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-07 18:04:58 - Starting service [Tomcat] -2024-08-07 18:04:58 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-07 18:04:58 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-07 18:04:58 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.webresources.StandardRoot@36510e73] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.webresources.StandardRoot@36510e73] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.webresources.StandardRoot@36510e73] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.webresources.DirResourceSet@4b28a7bf] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.webresources.DirResourceSet@4b28a7bf] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.webresources.DirResourceSet@4b28a7bf] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.webresources.DirResourceSet@4b28a7bf] to [STARTING] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.webresources.DirResourceSet@4b28a7bf] to [STARTED] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.webresources.StandardRoot@36510e73] to [STARTING] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.webresources.StandardRoot@36510e73] to [STARTED] -2024-08-07 18:04:58 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 18:04:58 - Starting this Loader -2024-08-07 18:04:58 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 18:04:58 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 18:04:58 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-07 18:04:58 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4f213a2] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4f213a2] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4f213a2] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4f213a2] to [STARTING] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4f213a2] to [STARTED] -2024-08-07 18:04:58 - Initializing Spring embedded WebApplicationContext -2024-08-07 18:04:58 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-07 18:04:58 - Root WebApplicationContext: initialization completed in 603 ms -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-07 18:04:58 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-07 18:04:58 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-07 18:04:58 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-07 18:04:58 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 18:04:58 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-07 18:04:58 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'h2Console' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'dataSource' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-07 18:04:58 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-07 18:04:58 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-07 18:04:58 - HikariPool-1 - configuration: -2024-08-07 18:04:58 - allowPoolSuspension.............false -2024-08-07 18:04:58 - autoCommit......................true -2024-08-07 18:04:58 - catalog.........................none -2024-08-07 18:04:58 - connectionInitSql...............none -2024-08-07 18:04:58 - connectionTestQuery.............none -2024-08-07 18:04:58 - connectionTimeout...............30000 -2024-08-07 18:04:58 - dataSource......................none -2024-08-07 18:04:58 - dataSourceClassName.............none -2024-08-07 18:04:58 - dataSourceJNDI..................none -2024-08-07 18:04:58 - dataSourceProperties............{password=<masked>} -2024-08-07 18:04:58 - driverClassName................."org.h2.Driver" -2024-08-07 18:04:58 - exceptionOverrideClassName......none -2024-08-07 18:04:58 - healthCheckProperties...........{} -2024-08-07 18:04:58 - healthCheckRegistry.............none -2024-08-07 18:04:58 - idleTimeout.....................600000 -2024-08-07 18:04:58 - initializationFailTimeout.......1 -2024-08-07 18:04:58 - isolateInternalQueries..........false -2024-08-07 18:04:58 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-07 18:04:58 - keepaliveTime...................0 -2024-08-07 18:04:58 - leakDetectionThreshold..........0 -2024-08-07 18:04:58 - maxLifetime.....................1800000 -2024-08-07 18:04:58 - maximumPoolSize.................10 -2024-08-07 18:04:58 - metricRegistry..................none -2024-08-07 18:04:58 - metricsTrackerFactory...........none -2024-08-07 18:04:58 - minimumIdle.....................10 -2024-08-07 18:04:58 - password........................<masked> -2024-08-07 18:04:58 - poolName........................"HikariPool-1" -2024-08-07 18:04:58 - readOnly........................false -2024-08-07 18:04:58 - registerMbeans..................false -2024-08-07 18:04:58 - scheduledExecutor...............none -2024-08-07 18:04:58 - schema..........................none -2024-08-07 18:04:58 - threadFactory...................internal -2024-08-07 18:04:58 - transactionIsolation............default -2024-08-07 18:04:58 - username........................"sa" -2024-08-07 18:04:58 - validationTimeout...............5000 -2024-08-07 18:04:58 - HikariPool-1 - Starting... -2024-08-07 18:04:58 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-07 18:04:58 - HikariPool-1 - Start completed. -2024-08-07 18:04:58 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-07 18:04:58 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-07 18:04:58 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:58 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-07 18:04:58 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 18:04:58 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-07 18:04:58 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-07 18:04:58 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-07 18:04:58 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-07 18:04:58 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-07 18:04:58 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@75dc1c1c] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@75dc1c1c] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@75dc1c1c] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@75dc1c1c] to [STARTING] -2024-08-07 18:04:58 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@75dc1c1c] to [STARTED] -2024-08-07 18:04:58 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-07 18:04:58 - Filter 'requestContextFilter' configured for use -2024-08-07 18:04:58 - Filter 'webMvcObservationFilter' configured for use -2024-08-07 18:04:58 - Filter 'characterEncodingFilter' configured for use -2024-08-07 18:04:58 - Filter 'formContentFilter' configured for use -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 18:04:58 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-07 18:04:58 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-07 18:04:58 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-07 18:04:58 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.mapper.MapperListener@7cd5fcf4] to [STARTING_PREP] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.mapper.MapperListener@7cd5fcf4] to [STARTING] -2024-08-07 18:04:58 - Registered host [localhost] -2024-08-07 18:04:58 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-07 18:04:58 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-07 18:04:58 - Register Context [] for service [StandardService[Tomcat]] -2024-08-07 18:04:58 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-07 18:04:58 - Setting state for [org.apache.catalina.mapper.MapperListener@7cd5fcf4] to [STARTED] -2024-08-07 18:04:58 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-07 18:04:58 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-07 18:04:58 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-07 18:04:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 18:04:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 18:04:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:50496] -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:58 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-07 18:04:58 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 18:04:58 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 84 -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:58 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 18:04:58 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-07 18:04:58 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:58 - [javax.management.remote.rmi.RMIConnectionImpl@11be67f0: connectionId=rmi://127.0.0.1 1] closing. -2024-08-07 18:04:58 - [javax.management.remote.rmi.RMIConnectionImpl@11be67f0: connectionId=rmi://127.0.0.1 1] closed. -2024-08-07 18:04:58 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-07 18:04:58 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-07 18:04:58 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-07 18:04:58 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-07 18:04:58 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-07 18:04:58 - HHH000206: 'hibernate.properties' not found -2024-08-07 18:04:58 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-07 18:04:58 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-07 18:04:58 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 18:04:58 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-07 18:04:58 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-07 18:04:58 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-07 18:04:58 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-07 18:04:58 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 18:04:58 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-07 18:04:58 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-07 18:04:58 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-07 18:04:58 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-07 18:04:58 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-07 18:04:58 - HHH000026: Second-level cache disabled -2024-08-07 18:04:58 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-07 18:04:58 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-07 18:04:58 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-07 18:04:58 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-07 18:04:58 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-07 18:04:58 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-07 18:04:58 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-07 18:04:58 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-07 18:04:58 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-07 18:04:58 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-07 18:04:58 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-07 18:04:58 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 18:04:58 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 18:04:58 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-07 18:04:58 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-07 18:04:58 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-07 18:04:58 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-07 18:04:58 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 18:04:58 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-07 18:04:58 - Adding type registration image -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-07 18:04:58 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 18:04:58 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-07 18:04:58 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-07 18:04:58 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-07 18:04:58 - Adding type registration short -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 18:04:58 - Adding type registration short -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 18:04:58 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-07 18:04:58 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 18:04:58 - Adding type registration int -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 18:04:58 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-07 18:04:58 - Adding type registration long -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 18:04:58 - Adding type registration long -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 18:04:58 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-07 18:04:58 - Adding type registration float -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 18:04:58 - Adding type registration float -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 18:04:58 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-07 18:04:58 - Adding type registration double -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 18:04:58 - Adding type registration double -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 18:04:58 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-07 18:04:58 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 18:04:58 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-07 18:04:58 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 18:04:58 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-07 18:04:58 - Adding type registration character -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 18:04:58 - Adding type registration char -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 18:04:58 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-07 18:04:58 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-07 18:04:58 - Adding type registration string -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 18:04:58 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-07 18:04:58 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-07 18:04:58 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 18:04:58 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 18:04:58 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-07 18:04:58 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-07 18:04:58 - Adding type registration text -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-07 18:04:58 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-07 18:04:58 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 18:04:58 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-07 18:04:58 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 18:04:58 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-07 18:04:58 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-07 18:04:58 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-07 18:04:58 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-07 18:04:58 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-07 18:04:58 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-07 18:04:58 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-07 18:04:58 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 18:04:58 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-07 18:04:58 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 18:04:58 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-07 18:04:58 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 18:04:58 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-07 18:04:58 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 18:04:58 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-07 18:04:58 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 18:04:58 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-07 18:04:58 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-07 18:04:58 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-07 18:04:58 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 18:04:58 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-07 18:04:58 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-07 18:04:58 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-07 18:04:58 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-07 18:04:58 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 18:04:58 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-07 18:04:58 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-07 18:04:58 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-07 18:04:58 - Adding type registration date -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 18:04:58 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-07 18:04:58 - Adding type registration time -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 18:04:58 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-07 18:04:58 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 18:04:58 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 18:04:58 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-07 18:04:58 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 18:04:58 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 18:04:58 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-07 18:04:58 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-07 18:04:58 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-07 18:04:58 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 18:04:58 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-07 18:04:58 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 18:04:58 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 18:04:58 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-07 18:04:58 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-07 18:04:58 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-07 18:04:58 - Adding type registration class -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 18:04:58 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-07 18:04:58 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 18:04:58 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 18:04:58 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-07 18:04:58 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 18:04:58 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-07 18:04:58 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 18:04:58 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-07 18:04:58 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 18:04:58 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-07 18:04:58 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 18:04:58 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-07 18:04:58 - Adding type registration url -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 18:04:58 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-07 18:04:58 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-07 18:04:58 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-07 18:04:58 - Adding type registration object -> org.hibernate.type.JavaObjectType@93f15f6 -2024-08-07 18:04:58 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@93f15f6 -2024-08-07 18:04:58 - Adding type registration null -> org.hibernate.type.NullType@2b400bd0 -2024-08-07 18:04:58 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@fceab5d -2024-08-07 18:04:58 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@79445efb -2024-08-07 18:04:58 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@1592e540 -2024-08-07 18:04:58 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@3e2772a9 -2024-08-07 18:04:58 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@4449b273 -2024-08-07 18:04:58 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@1fa18f87 -2024-08-07 18:04:58 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@1d9bd1d6 -2024-08-07 18:04:58 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@18ac4af6 -2024-08-07 18:04:58 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@3dec79f8] into BootstrapContext; was [null] -2024-08-07 18:04:58 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@3dec79f8) [was null] -2024-08-07 18:04:58 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@2bd4780c] into BootstrapContext; was [null] -2024-08-07 18:04:58 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@2c154508] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@395eb363] -2024-08-07 18:04:58 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-07 18:04:58 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-07 18:04:58 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-07 18:04:58 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-07 18:04:58 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-07 18:04:58 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@3dec79f8] -2024-08-07 18:04:58 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@3dec79f8] -2024-08-07 18:04:58 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-07 18:04:58 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-07 18:04:58 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 18:04:58 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-07 18:04:58 - JDBC version : 4.2 -2024-08-07 18:04:58 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-07 18:04:58 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-07 18:04:58 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-07 18:04:58 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-07 18:04:58 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-07 18:04:58 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 18:04:58 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-07 18:04:58 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-07 18:04:58 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-07 18:04:58 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 18:04:58 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-07 18:04:58 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@609ad016] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@da9374c] -2024-08-07 18:04:58 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-07 18:04:58 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-07 18:04:58 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-07 18:04:58 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-07 18:04:58 - Import with entity name Action -2024-08-07 18:04:58 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-07 18:04:58 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 18:04:58 - Binding column: AnnotatedColumn() -2024-08-07 18:04:58 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 18:04:58 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 18:04:58 - MetadataSourceProcessor property id with lazy=false -2024-08-07 18:04:58 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-07 18:04:58 - building BasicValue for id -2024-08-07 18:04:58 - Skipping column re-registration: action.id -2024-08-07 18:04:58 - Building property id -2024-08-07 18:04:58 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 18:04:58 - Binding column: AnnotatedJoinColumn() -2024-08-07 18:04:58 - Binding column: AnnotatedColumn() -2024-08-07 18:04:58 - Building property event -2024-08-07 18:04:58 - Binding column: AnnotatedColumn() -2024-08-07 18:04:58 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 18:04:58 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-07 18:04:58 - building BasicValue for sequence -2024-08-07 18:04:58 - Skipping column re-registration: action.sequence -2024-08-07 18:04:58 - Building property sequence -2024-08-07 18:04:58 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 18:04:58 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-07 18:04:58 - Import with entity name BillAction -2024-08-07 18:04:58 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-07 18:04:58 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 18:04:58 - Binding column: AnnotatedColumn() -2024-08-07 18:04:58 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 18:04:58 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 18:04:58 - MetadataSourceProcessor property id with lazy=false -2024-08-07 18:04:58 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-07 18:04:58 - building BasicValue for id -2024-08-07 18:04:58 - Skipping column re-registration: bill_action.id -2024-08-07 18:04:58 - Building property id -2024-08-07 18:04:58 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 18:04:58 - Binding column: AnnotatedJoinColumn() -2024-08-07 18:04:58 - Binding column: AnnotatedColumn() -2024-08-07 18:04:58 - Building property action -2024-08-07 18:04:58 - Binding column: AnnotatedColumn() -2024-08-07 18:04:58 - MetadataSourceProcessor property price with lazy=false -2024-08-07 18:04:58 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-07 18:04:58 - building BasicValue for price -2024-08-07 18:04:58 - Skipping column re-registration: bill_action.price -2024-08-07 18:04:58 - Building property price -2024-08-07 18:04:58 - Binding column: AnnotatedColumn() -2024-08-07 18:04:58 - MetadataSourceProcessor property title with lazy=false -2024-08-07 18:04:58 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-07 18:04:58 - building BasicValue for title -2024-08-07 18:04:58 - Skipping column re-registration: bill_action.title -2024-08-07 18:04:58 - Building property title -2024-08-07 18:04:58 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 18:04:58 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-07 18:04:58 - Import with entity name MemberAction -2024-08-07 18:04:58 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-07 18:04:58 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 18:04:58 - Binding column: AnnotatedColumn() -2024-08-07 18:04:58 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 18:04:58 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 18:04:58 - MetadataSourceProcessor property id with lazy=false -2024-08-07 18:04:58 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-07 18:04:58 - building BasicValue for id -2024-08-07 18:04:58 - Skipping column re-registration: member_action.id -2024-08-07 18:04:58 - Building property id -2024-08-07 18:04:58 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 18:04:58 - Binding column: AnnotatedJoinColumn() -2024-08-07 18:04:58 - Binding column: AnnotatedColumn() -2024-08-07 18:04:58 - Building property action -2024-08-07 18:04:58 - Binding column: AnnotatedColumn() -2024-08-07 18:04:58 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-07 18:04:58 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-07 18:04:58 - building BasicValue for memberGroupId -2024-08-07 18:04:58 - Skipping column re-registration: member_action.member_group_id -2024-08-07 18:04:58 - Building property memberGroupId -2024-08-07 18:04:58 - Binding column: AnnotatedColumn() -2024-08-07 18:04:58 - MetadataSourceProcessor property memberName with lazy=false -2024-08-07 18:04:58 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-07 18:04:58 - building BasicValue for memberName -2024-08-07 18:04:58 - Skipping column re-registration: member_action.member_name -2024-08-07 18:04:58 - Building property memberName -2024-08-07 18:04:58 - Binding column: AnnotatedColumn() -2024-08-07 18:04:58 - MetadataSourceProcessor property status with lazy=false -2024-08-07 18:04:58 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-07 18:04:58 - building BasicValue for status -2024-08-07 18:04:58 - Skipping column re-registration: member_action.status -2024-08-07 18:04:58 - Building property status -2024-08-07 18:04:58 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-07 18:04:58 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-07 18:04:58 - Import with entity name Event -2024-08-07 18:04:58 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-07 18:04:58 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 18:04:58 - Binding column: AnnotatedColumn() -2024-08-07 18:04:58 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 18:04:58 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 18:04:58 - MetadataSourceProcessor property id with lazy=false -2024-08-07 18:04:58 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-07 18:04:58 - building BasicValue for id -2024-08-07 18:04:58 - Skipping column re-registration: event.id -2024-08-07 18:04:58 - Building property id -2024-08-07 18:04:58 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 18:04:58 - Binding column: AnnotatedColumn() -2024-08-07 18:04:58 - MetadataSourceProcessor property name with lazy=false -2024-08-07 18:04:58 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-07 18:04:58 - building BasicValue for name -2024-08-07 18:04:58 - Skipping column re-registration: event.name -2024-08-07 18:04:58 - Building property name -2024-08-07 18:04:58 - Binding column: AnnotatedColumn() -2024-08-07 18:04:58 - MetadataSourceProcessor property password with lazy=false -2024-08-07 18:04:58 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-07 18:04:58 - building BasicValue for password -2024-08-07 18:04:58 - Skipping column re-registration: event.password -2024-08-07 18:04:58 - Building property password -2024-08-07 18:04:58 - Binding column: AnnotatedColumn() -2024-08-07 18:04:58 - MetadataSourceProcessor property token with lazy=false -2024-08-07 18:04:58 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-07 18:04:58 - building BasicValue for token -2024-08-07 18:04:58 - Skipping column re-registration: event.token -2024-08-07 18:04:58 - Building property token -2024-08-07 18:04:58 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 18:04:58 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-07 18:04:58 - Import with entity name EventStep -2024-08-07 18:04:58 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-07 18:04:58 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-07 18:04:58 - Binding column: AnnotatedColumn() -2024-08-07 18:04:58 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 18:04:58 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 18:04:58 - MetadataSourceProcessor property id with lazy=false -2024-08-07 18:04:58 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-07 18:04:58 - building BasicValue for id -2024-08-07 18:04:58 - Skipping column re-registration: event_step.id -2024-08-07 18:04:58 - Building property id -2024-08-07 18:04:58 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-07 18:04:58 - Binding column: AnnotatedJoinColumn() -2024-08-07 18:04:58 - Binding column: AnnotatedColumn() -2024-08-07 18:04:58 - Building property event -2024-08-07 18:04:58 - Binding column: AnnotatedColumn() -2024-08-07 18:04:58 - MetadataSourceProcessor property name with lazy=false -2024-08-07 18:04:58 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-07 18:04:58 - building BasicValue for name -2024-08-07 18:04:58 - Skipping column re-registration: event_step.name -2024-08-07 18:04:58 - Building property name -2024-08-07 18:04:58 - Binding column: AnnotatedColumn() -2024-08-07 18:04:58 - MetadataSourceProcessor property sequence with lazy=false -2024-08-07 18:04:58 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-07 18:04:58 - building BasicValue for sequence -2024-08-07 18:04:58 - Skipping column re-registration: event_step.sequence -2024-08-07 18:04:58 - Building property sequence -2024-08-07 18:04:58 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-07 18:04:58 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 18:04:58 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 18:04:58 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 18:04:58 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-07 18:04:58 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-07 18:04:58 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 18:04:58 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-07 18:04:58 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-07 18:04:58 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-07 18:04:58 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 18:04:58 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 18:04:58 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-07 18:04:58 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-07 18:04:58 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-07 18:04:58 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-07 18:04:58 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-07 18:04:58 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-07 18:04:58 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-07 18:04:58 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-07 18:04:58 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-07 18:04:58 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-07 18:04:58 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-07 18:04:58 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-07 18:04:58 - Building session factory -2024-08-07 18:04:58 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 18:04:58 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@19d13d04, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@30d5fc1b, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.986887587240780976, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=65962, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.986887587240780976, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@7957aa57, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-07 18:04:58 - Session factory constructed with filter configurations : {} -2024-08-07 18:04:58 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 18:04:58 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 18:04:58 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 18:04:58 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 18:04:58 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 18:04:58 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 18:04:58 - Loaded expression factory via original TCCL -2024-08-07 18:04:58 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 18:04:58 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 18:04:58 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 18:04:58 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 18:04:58 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 18:04:58 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 18:04:58 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 18:04:58 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 18:04:58 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-07 18:04:58 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-07 18:04:58 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 18:04:58 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 18:04:58 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 18:04:58 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 18:04:58 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 18:04:58 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 18:04:58 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 18:04:58 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 18:04:58 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@2de07c57] under count; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@5db66c3] under every; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@633c0a61] under any; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6d4f266] under sinh; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6b756a62] under cosh; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@394b9e22] under tanh; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6e0f259e] under pi; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4fe9adfb] under log; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-07 18:04:58 - Registering alternate key : length -> character_length -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@19b3d3a4] under position; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@517d9cd5] under overlay; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@78e7b83] under trim; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@e2344da] under cast; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@71135794] under collate; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@4a10c019] under extract; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@639cb0c8] under ifnull; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@7f9d40b3] under pad; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@2ba9ed19] under str; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@4cd6f08b] under format; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@4b7c0f39] under timestampadd; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@149238fe] under timestampdiff; prior registration was null -2024-08-07 18:04:58 - Registering alternate key : dateadd -> timestampadd -2024-08-07 18:04:58 - Registering alternate key : datediff -> timestampdiff -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@b814e23] under current_date; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5f81507a] under current_time; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7d7c05fa] under current_timestamp; prior registration was null -2024-08-07 18:04:58 - Registering alternate key : current date -> current_date -2024-08-07 18:04:58 - Registering alternate key : current time -> current_time -2024-08-07 18:04:58 - Registering alternate key : current timestamp -> current_timestamp -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7dbbf730] under local_date; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7c4a5ef2] under local_time; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@299dd381] under local_datetime; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@34d3409d] under offset_datetime; prior registration was null -2024-08-07 18:04:58 - Registering alternate key : local date -> local_date -2024-08-07 18:04:58 - Registering alternate key : local time -> local_time -2024-08-07 18:04:58 - Registering alternate key : local datetime -> local_datetime -2024-08-07 18:04:58 - Registering alternate key : offset datetime -> offset_datetime -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16732340] under instant; prior registration was null -2024-08-07 18:04:58 - Registering alternate key : current_instant -> instant -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@5eb9bf7d] under sql; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@64f613da] under count; prior registration was org.hibernate.dialect.function.CountFunction@2de07c57 -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@4601a148] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6e0f259e -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4e210016] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-07 18:04:58 - Registering alternate key : day -> day_of_month -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@7c4a5ef2 -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@299dd381 -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@1d2d793d] under trunc; prior registration was null -2024-08-07 18:04:58 - Registering alternate key : truncate -> trunc -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@57fec63f] under date_trunc; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-07 18:04:58 - Registering alternate key : chr -> char -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7a2fd94c] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@19b3d3a4 -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@637c8632] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-07 18:04:58 - Registering alternate key : every -> bool_and -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-07 18:04:58 - Registering alternate key : any -> bool_or -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@156eeff1] under format; prior registration was org.hibernate.dialect.function.FormatFunction@4cd6f08b -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@618e7761] under listagg; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@38c1b1a7] under mode; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@73230721] under percentile_cont; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@10bcbbce] under percentile_disc; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@cbc3bf3] under rank; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@31f9f9b3] under dense_rank; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@7730da00] under percent_rank; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@52d01430] under cume_dist; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@69f24965] under array; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@4eab9aec] under array_list; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@4542af89] under array_agg; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@448fa659] under array_position; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@2175d53f] under array_positions; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@270be080] under array_positions_list; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@752ffce3] under array_length; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@468646ea] under array_concat; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@46051269] under array_prepend; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@67baa05] under array_append; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@3331800f] under array_contains; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@c414eb3] under array_contains_nullable; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@48f2d51d] under array_overlaps; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@151d216e] under array_overlaps_nullable; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@76eee0b1] under array_get; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@152d2a58] under array_set; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@7c07023] under array_remove; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@396c1228] under array_remove_index; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1701beb3] under array_slice; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@4e7151b3] under array_replace; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5ef7ae2f] under array_trim; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@b75f3f4] under array_fill; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@691a5c3a] under array_fill_list; prior registration was null -2024-08-07 18:04:58 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@9fd3b61] under array_to_string; prior registration was null -2024-08-07 18:04:58 - abs(NUMERIC arg) -2024-08-07 18:04:58 - Double acos(NUMERIC arg) -2024-08-07 18:04:58 - Boolean any(BOOLEAN predicate) -2024-08-07 18:04:58 - array( ... ) -2024-08-07 18:04:58 - array_agg(arg) -2024-08-07 18:04:58 - array_append( ... ) -2024-08-07 18:04:58 - array_concat( ... ) -2024-08-07 18:04:58 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 18:04:58 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-07 18:04:58 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-07 18:04:58 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-07 18:04:58 - array_get(ARRAY array, INTEGER index) -2024-08-07 18:04:58 - Integer array_length(ARRAY array) -2024-08-07 18:04:58 - array_list( ... ) -2024-08-07 18:04:58 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-07 18:04:58 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-07 18:04:58 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-07 18:04:58 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-07 18:04:58 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-07 18:04:58 - array_prepend( ... ) -2024-08-07 18:04:58 - array_remove( ... ) -2024-08-07 18:04:58 - array_remove_index( ... ) -2024-08-07 18:04:58 - array_replace( ... ) -2024-08-07 18:04:58 - array_set( ... ) -2024-08-07 18:04:58 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-07 18:04:58 - String array_to_string( ... ) -2024-08-07 18:04:58 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-07 18:04:58 - Integer ascii(STRING arg) -2024-08-07 18:04:58 - Double asin(NUMERIC arg) -2024-08-07 18:04:58 - Double atan(NUMERIC arg) -2024-08-07 18:04:58 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-07 18:04:58 - avg(NUMERIC arg) -2024-08-07 18:04:58 - bit_and(arg) -2024-08-07 18:04:58 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-07 18:04:58 - bit_or(arg) -2024-08-07 18:04:58 - bitand(arg0, arg1) -2024-08-07 18:04:58 - bitnot(arg) -2024-08-07 18:04:58 - bitor(arg0, arg1) -2024-08-07 18:04:58 - bitxor(arg0, arg1) -2024-08-07 18:04:58 - Boolean bool_and(BOOLEAN predicate) -2024-08-07 18:04:58 - Boolean bool_or(BOOLEAN predicate) -2024-08-07 18:04:58 - cast(arg as Type) -2024-08-07 18:04:58 - ceiling(NUMERIC arg) -2024-08-07 18:04:58 - Character char(INTEGER arg) -2024-08-07 18:04:58 - Integer character_length(STRING_OR_CLOB arg) -2024-08-07 18:04:58 - Character chr(INTEGER arg) -2024-08-07 18:04:58 - coalesce(arg0[, arg1[, ...]]) -2024-08-07 18:04:58 - String collate(STRING string as COLLATION collation) -2024-08-07 18:04:58 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-07 18:04:58 - Double cos(NUMERIC arg) -2024-08-07 18:04:58 - Double cosh(NUMERIC arg) -2024-08-07 18:04:58 - Double cot(NUMERIC arg) -2024-08-07 18:04:58 - Long count([distinct ]{arg|*}) -2024-08-07 18:04:58 - Double cume_dist([arg0[, ...]]) -2024-08-07 18:04:58 - Date curdate() -2024-08-07 18:04:58 - Date current date -2024-08-07 18:04:58 - Time current time -2024-08-07 18:04:58 - Timestamp current timestamp -2024-08-07 18:04:58 - Date current_date -2024-08-07 18:04:58 - Instant current_instant -2024-08-07 18:04:58 - Time current_time -2024-08-07 18:04:58 - Timestamp current_timestamp -2024-08-07 18:04:58 - Time curtime() -2024-08-07 18:04:58 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-07 18:04:58 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 18:04:58 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 18:04:58 - Integer day(DATE arg) -2024-08-07 18:04:58 - Integer day_of_month(DATE arg) -2024-08-07 18:04:58 - Integer day_of_week(DATE arg) -2024-08-07 18:04:58 - Integer day_of_year(DATE arg) -2024-08-07 18:04:58 - String dayname(DATE arg) -2024-08-07 18:04:58 - Double degrees(NUMERIC arg) -2024-08-07 18:04:58 - Long dense_rank([arg0[, ...]]) -2024-08-07 18:04:58 - Boolean every(BOOLEAN predicate) -2024-08-07 18:04:58 - Double exp(NUMERIC arg) -2024-08-07 18:04:58 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-07 18:04:58 - first_valueANY value -2024-08-07 18:04:58 - floor(NUMERIC arg) -2024-08-07 18:04:58 - String format(TEMPORAL datetime as STRING pattern) -2024-08-07 18:04:58 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 18:04:58 - Integer hour(TIME arg) -2024-08-07 18:04:58 - ifnull(arg0, arg1) -2024-08-07 18:04:58 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-07 18:04:58 - Instant instant -2024-08-07 18:04:58 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-07 18:04:58 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-07 18:04:58 - last_valueANY value -2024-08-07 18:04:58 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-07 18:04:58 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-07 18:04:58 - String left(STRING string, INTEGER length) -2024-08-07 18:04:58 - Integer length(STRING_OR_CLOB arg) -2024-08-07 18:04:58 - String listagg(STRING arg0, STRING arg1) -2024-08-07 18:04:58 - Double ln(NUMERIC arg) -2024-08-07 18:04:58 - LocalDate local date -2024-08-07 18:04:58 - LocalDateTime local datetime -2024-08-07 18:04:58 - LocalTime local time -2024-08-07 18:04:58 - LocalDate local_date -2024-08-07 18:04:58 - LocalDateTime local_datetime -2024-08-07 18:04:58 - LocalTime local_time -2024-08-07 18:04:58 - Time localtime -2024-08-07 18:04:58 - Timestamp localtimestamp -2024-08-07 18:04:58 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-07 18:04:58 - Double log(NUMERIC base, NUMERIC arg) -2024-08-07 18:04:58 - Double log10(NUMERIC arg) -2024-08-07 18:04:58 - String lower(STRING string) -2024-08-07 18:04:58 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 18:04:58 - String ltrim(STRING string) -2024-08-07 18:04:58 - max(COMPARABLE arg) -2024-08-07 18:04:58 - Double median(NUMERIC arg) -2024-08-07 18:04:58 - Integer microsecond(TIME arg) -2024-08-07 18:04:58 - min(COMPARABLE arg) -2024-08-07 18:04:58 - Integer minute(TIME arg) -2024-08-07 18:04:58 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-07 18:04:58 - mode() -2024-08-07 18:04:58 - Integer month(DATE arg) -2024-08-07 18:04:58 - String monthname(DATE arg) -2024-08-07 18:04:58 - Timestamp now() -2024-08-07 18:04:58 - nth_valueANY value, INTEGER nth -2024-08-07 18:04:58 - nullif(arg0, arg1) -2024-08-07 18:04:58 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-07 18:04:58 - OffsetDateTime offset datetime -2024-08-07 18:04:58 - OffsetDateTime offset_datetime -2024-08-07 18:04:58 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-07 18:04:58 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-07 18:04:58 - Double percent_rank([arg0[, ...]]) -2024-08-07 18:04:58 - percentile_cont(NUMERIC arg) -2024-08-07 18:04:58 - percentile_disc(NUMERIC arg) -2024-08-07 18:04:58 - Double pi -2024-08-07 18:04:58 - Integer position(STRING pattern in STRING string) -2024-08-07 18:04:58 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-07 18:04:58 - Integer quarter(DATE arg) -2024-08-07 18:04:58 - Double radians(NUMERIC arg) -2024-08-07 18:04:58 - Double rand([INTEGER seed]) -2024-08-07 18:04:58 - Long rank([arg0[, ...]]) -2024-08-07 18:04:58 - String repeat(STRING string, INTEGER times) -2024-08-07 18:04:58 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-07 18:04:58 - String right(STRING string, INTEGER length) -2024-08-07 18:04:58 - round(NUMERIC number[, INTEGER places]) -2024-08-07 18:04:58 - Long row_number() -2024-08-07 18:04:58 - Long rownum() -2024-08-07 18:04:58 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-07 18:04:58 - String rtrim(STRING string) -2024-08-07 18:04:58 - Integer second(TIME arg) -2024-08-07 18:04:58 - Integer sign(NUMERIC arg) -2024-08-07 18:04:58 - Double sin(NUMERIC arg) -2024-08-07 18:04:58 - Double sinh(NUMERIC arg) -2024-08-07 18:04:58 - String soundex(arg) -2024-08-07 18:04:58 - String space(INTEGER arg) -2024-08-07 18:04:58 - Object sql -2024-08-07 18:04:58 - Double sqrt(NUMERIC arg) -2024-08-07 18:04:58 - Double stddev_pop(NUMERIC arg) -2024-08-07 18:04:58 - Double stddev_samp(NUMERIC arg) -2024-08-07 18:04:58 - String str(arg) -2024-08-07 18:04:58 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-07 18:04:58 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-07 18:04:58 - sum(arg) -2024-08-07 18:04:58 - Timestamp sysdate -2024-08-07 18:04:58 - Double tan(NUMERIC arg) -2024-08-07 18:04:58 - Double tanh(NUMERIC arg) -2024-08-07 18:04:58 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-07 18:04:58 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-07 18:04:58 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-07 18:04:58 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-07 18:04:58 - trunc( ... ) -2024-08-07 18:04:58 - truncate( ... ) -2024-08-07 18:04:58 - String upper(STRING string) -2024-08-07 18:04:58 - Double var_pop(NUMERIC arg) -2024-08-07 18:04:58 - Double var_samp(NUMERIC arg) -2024-08-07 18:04:58 - Integer week(DATE arg) -2024-08-07 18:04:58 - Integer year(DATE arg) -2024-08-07 18:04:58 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-07 18:04:58 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-07 18:04:58 - Starting QueryInterpretationCache(2048) -2024-08-07 18:04:58 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-07 18:04:58 - Configured EntityCopyObserver strategy: disallow -2024-08-07 18:04:58 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-07 18:04:58 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-07 18:04:58 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-07 18:04:58 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-07 18:04:58 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 18:04:58 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-07 18:04:58 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-07 18:04:58 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-07 18:04:58 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-07 18:04:58 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-07 18:04:58 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-07 18:04:58 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-07 18:04:58 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-07 18:04:58 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-07 18:04:58 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-07 18:04:58 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-07 18:04:58 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-07 18:04:58 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-07 18:04:58 - Starting post-init callbacks -2024-08-07 18:04:58 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-07 18:04:58 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-07 18:04:58 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-07 18:04:58 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-07 18:04:58 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-07 18:04:58 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-07 18:04:58 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-07 18:04:58 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-07 18:04:58 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-07 18:04:58 - Created new SQL alias : ba1_0 -2024-08-07 18:04:58 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 18:04:58 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7e864fa4] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 18:04:58 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-07 18:04:58 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-07 18:04:58 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-07 18:04:58 - Version select: select id from bill_action where id=? -2024-08-07 18:04:58 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-07 18:04:58 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-07 18:04:58 - Delete (0): delete from bill_action where id=? -2024-08-07 18:04:58 - Created new SQL alias : ma1_0 -2024-08-07 18:04:58 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 18:04:58 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@62aefc75] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 18:04:58 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-07 18:04:58 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-07 18:04:58 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-07 18:04:58 - Version select: select id from member_action where id=? -2024-08-07 18:04:58 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-07 18:04:58 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-07 18:04:58 - Delete (0): delete from member_action where id=? -2024-08-07 18:04:58 - Created new SQL alias : e1_0 -2024-08-07 18:04:58 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 18:04:58 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-07 18:04:58 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 18:04:58 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-07 18:04:58 - Version select: select id from event where id=? -2024-08-07 18:04:58 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-07 18:04:58 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-07 18:04:58 - Delete (0): delete from event where id=? -2024-08-07 18:04:58 - Created new SQL alias : a1_0 -2024-08-07 18:04:58 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-07 18:04:58 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6dd7af2f] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-07 18:04:58 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-07 18:04:58 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-07 18:04:58 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-07 18:04:58 - Version select: select id from action where id=? -2024-08-07 18:04:58 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-07 18:04:58 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-07 18:04:58 - Delete (0): delete from action where id=? -2024-08-07 18:04:58 - Created new SQL alias : es1_0 -2024-08-07 18:04:58 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-07 18:04:58 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6c75c5e8] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-07 18:04:58 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-07 18:04:58 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-07 18:04:58 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-07 18:04:58 - Version select: select id from event_step where id=? -2024-08-07 18:04:58 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-07 18:04:58 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-07 18:04:58 - Delete (0): delete from event_step where id=? -2024-08-07 18:04:58 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-07 18:04:58 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@609ad016] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@3749c6ac] -2024-08-07 18:04:58 - Checking 0 named HQL queries -2024-08-07 18:04:58 - Checking 0 named SQL queries -2024-08-07 18:04:58 - - drop table if exists action cascade -2024-08-07 18:04:58 - - drop table if exists bill_action cascade -2024-08-07 18:04:58 - - drop table if exists event cascade -2024-08-07 18:04:58 - - drop table if exists event_step cascade -2024-08-07 18:04:58 - - drop table if exists member_action cascade -2024-08-07 18:04:58 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-07 18:04:58 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-07 18:04:58 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-07 18:04:58 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-07 18:04:58 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-07 18:04:58 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-07 18:04:58 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-07 18:04:58 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-07 18:04:58 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-07 18:04:58 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@1e9afe4e -2024-08-07 18:04:58 - Registering SessionFactory: 647b7cf3-c5c0-49f1-9cda-a26d81c2029b (<unnamed>) -2024-08-07 18:04:58 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-07 18:04:58 - Instantiated SessionFactory -2024-08-07 18:04:58 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 82 -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 84 -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'actionService' -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:58 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 18:04:58 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:58 - [javax.management.remote.rmi.RMIConnectionImpl@429d4d37: connectionId=rmi://127.0.0.1 2] closing. -2024-08-07 18:04:58 - [javax.management.remote.rmi.RMIConnectionImpl@429d4d37: connectionId=rmi://127.0.0.1 2] closed. -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-07 18:04:58 - Initializing JpaMetamodelMappingContext… -2024-08-07 18:04:58 - Finished initializing JpaMetamodelMappingContext -2024-08-07 18:04:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:58 - Statistics initialized [enabled=false] -2024-08-07 18:04:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-07 18:04:58 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-07 18:04:58 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-07 18:04:58 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-07 18:04:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:58 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-07 18:04:58 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:58 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-07 18:04:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:58 - Looking up named query BillAction.findByAction_Event -2024-08-07 18:04:58 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:58 - Did not find named query BillAction.findByAction_Event -2024-08-07 18:04:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:58 - Looking up named query BillAction.findByAction_Id -2024-08-07 18:04:58 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:58 - Did not find named query BillAction.findByAction_Id -2024-08-07 18:04:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:58 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-07 18:04:58 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-07 18:04:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:58 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-07 18:04:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:58 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 18:04:58 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:58 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-07 18:04:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:58 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 18:04:58 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:58 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-07 18:04:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:58 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-07 18:04:58 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:58 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-07 18:04:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:58 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-07 18:04:59 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 18:04:59 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 18:04:59 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 18:04:59 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:59 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-07 18:04:59 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:59 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-07 18:04:59 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-07 18:04:59 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-07 18:04:59 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-07 18:04:59 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:59 - Did not find named query MemberAction.findAllByEvent.count -2024-08-07 18:04:59 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:59 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-07 18:04:59 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 18:04:59 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(747470131872000)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(747470131872000)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(747470131872000)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(747470131872000)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(747470131872000).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 18:04:59 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:59 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-07 18:04:59 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:59 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-07 18:04:59 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 18:04:59 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 18:04:59 - Looking up named query MemberAction.findByAction -2024-08-07 18:04:59 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:59 - Did not find named query MemberAction.findByAction -2024-08-07 18:04:59 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:59 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'eventRepository' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-07 18:04:59 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:59 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-07 18:04:59 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:59 - Looking up named query Event.findByToken -2024-08-07 18:04:59 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:59 - Did not find named query Event.findByToken -2024-08-07 18:04:59 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:59 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-07 18:04:59 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-07 18:04:59 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-07 18:04:59 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'billActionService' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'actionRepository' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-07 18:04:59 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:59 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-07 18:04:59 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:59 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:59 - Did not find named query Action.findLastByEvent.count -2024-08-07 18:04:59 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:59 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-07 18:04:59 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-07 18:04:59 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-07 18:04:59 - Looking up named query Action.findByIdAndEvent -2024-08-07 18:04:59 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-07 18:04:59 - Did not find named query Action.findByIdAndEvent -2024-08-07 18:04:59 - Creating new EntityManager for shared EntityManager invocation -2024-08-07 18:04:59 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-07 18:04:59 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-07 18:04:59 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-07 18:04:59 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'eventService' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-07 18:04:59 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-07 18:04:59 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-07 18:04:59 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-07 18:04:59 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-07 18:04:59 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'memberActionService' -2024-08-07 18:04:59 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-07 18:04:59 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-07 18:04:59 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-07 18:04:59 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-07 18:04:59 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-07 18:04:59 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'actionController' -2024-08-07 18:04:59 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'billActionController' -2024-08-07 18:04:59 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'eventController' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'authService' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-07 18:04:59 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-07 18:04:59 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'memberActionController' -2024-08-07 18:04:59 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-07 18:04:59 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-07 18:04:59 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:59 - Loaded expression factory via original TCCL -2024-08-07 18:04:59 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-07 18:04:59 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-07 18:04:59 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-07 18:04:59 - Trying to load META-INF/validation.xml via user class loader -2024-08-07 18:04:59 - Trying to load META-INF/validation.xml via TCCL -2024-08-07 18:04:59 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-07 18:04:59 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-07 18:04:59 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-07 18:04:59 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-07 18:04:59 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-07 18:04:59 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-07 18:04:59 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-07 18:04:59 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-07 18:04:59 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-07 18:04:59 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'error' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-07 18:04:59 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-07 18:04:59 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-07 18:04:59 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-07 18:04:59 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-07 18:04:59 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:59 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:04:59 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-07 18:04:59 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:59 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:04:59 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'localeResolver' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'themeResolver' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-07 18:04:59 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 18:04:59 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:04:59 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:04:59 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-07 18:04:59 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-07 18:04:59 - - s.h.p.EventController: - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) -2024-08-07 18:04:59 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-07 18:04:59 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-07 18:04:59 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-07 18:04:59 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:04:59 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-07 18:04:59 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:04:59 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:04:59 - 'beanNameHandlerMapping' {} -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-07 18:04:59 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:04:59 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'messageConverters' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-07 18:04:59 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-07 18:04:59 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:59 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:59 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'pageModule' -2024-08-07 18:04:59 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:59 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-07 18:04:59 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-07 18:04:59 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-07 18:04:59 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 18:04:59 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-07 18:04:59 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-07 18:04:59 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-07 18:04:59 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 18:04:59 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-07 18:04:59 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'sortResolver' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-07 18:04:59 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-07 18:04:59 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-07 18:04:59 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-07 18:04:59 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-07 18:04:59 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-07 18:04:59 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 18:04:59 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-07 18:04:59 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 18:04:59 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'viewResolver' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-07 18:04:59 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'transactionManager' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-07 18:04:59 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-07 18:04:59 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:59 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-07 18:04:59 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:59 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-07 18:04:59 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-07 18:04:59 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-07 18:04:59 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-07 18:04:59 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-07 18:04:59 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-07 18:04:59 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-07 18:04:59 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-07 18:04:59 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-07 18:04:59 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-07 18:04:59 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-07 18:04:59 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-07 18:04:59 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@d816dde' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-07 18:04:59 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-07 18:04:59 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-07 18:04:59 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-07 18:04:59 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-07 18:04:59 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-07 18:04:59 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 82 -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 82 -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-07 18:04:59 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 82 -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 84 -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 82 -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 82 -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 82 -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-07 18:04:59 - [javax.management.remote.rmi.RMIConnectionImpl@216894ed: connectionId=rmi://127.0.0.1 3] closing. -2024-08-07 18:04:59 - [javax.management.remote.rmi.RMIConnectionImpl@216894ed: connectionId=rmi://127.0.0.1 3] closed. -2024-08-07 18:04:59 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-07 18:04:59 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-07 18:04:59 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-07 18:04:59 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-07 18:04:59 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-07 18:04:59 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-07 18:04:59 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 18:04:59 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 18:04:59 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-07 18:04:59 - Using SLF4J as the default logging framework -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-07 18:04:59 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-07 18:04:59 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-07 18:04:59 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-07 18:04:59 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-07 18:04:59 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'observedAspect' -2024-08-07 18:04:59 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-07 18:04:59 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-07 18:04:59 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 18:04:59 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-07 18:04:59 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-07 18:04:59 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-07 18:04:59 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-07 18:04:59 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-07 18:04:59 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-07 18:04:59 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-07 18:04:59 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-07 18:04:59 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-07 18:04:59 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-07 18:04:59 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-07 18:04:59 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 18:04:59 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-07 18:04:59 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-07 18:04:59 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-07 18:04:59 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-07 18:04:59 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-07 18:04:59 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-07 18:04:59 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-07 18:04:59 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-07 18:04:59 - Registering beans for JMX exposure on startup -2024-08-07 18:04:59 - Auto-detecting user-defined JMX MBeans -2024-08-07 18:04:59 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-07 18:04:59 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-07 18:04:59 - Starting beans in phase -2147483647 -2024-08-07 18:04:59 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-07 18:04:59 - Starting beans in phase 2147481599 -2024-08-07 18:04:59 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-07 18:04:59 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-07 18:04:59 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-07 18:04:59 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-07 18:04:59 - Tomcat started on port 8080 (http) with context path '/' -2024-08-07 18:04:59 - Successfully started bean 'webServerStartStop' -2024-08-07 18:04:59 - Starting beans in phase 2147482623 -2024-08-07 18:04:59 - Successfully started bean 'webServerGracefulShutdown' -2024-08-07 18:04:59 - Starting beans in phase 2147483647 -2024-08-07 18:04:59 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-07 18:04:59 - Started HaengdongApplication in 2.108 seconds (process running for 2.298) -2024-08-07 18:04:59 - Application availability state LivenessState changed to CORRECT -2024-08-07 18:04:59 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 82 -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 84 -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-07 18:04:59 - RMI TCP Connection(1)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - [javax.management.remote.rmi.RMIConnectionImpl@48bf0136: connectionId=rmi://127.0.0.1 4] closing. -2024-08-07 18:04:59 - [javax.management.remote.rmi.RMIConnectionImpl@48bf0136: connectionId=rmi://127.0.0.1 4] closed. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:50497] -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:50498] -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 84 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 84 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - [javax.management.remote.rmi.RMIConnectionImpl@7d643a11: connectionId=rmi://127.0.0.1 5] closing. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - [javax.management.remote.rmi.RMIConnectionImpl@7d643a11: connectionId=rmi://127.0.0.1 5] closed. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 84 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - [javax.management.remote.rmi.RMIConnectionImpl@4ea1fae: connectionId=rmi://127.0.0.1 6] closing. -2024-08-07 18:04:59 - [javax.management.remote.rmi.RMIConnectionImpl@4ea1fae: connectionId=rmi://127.0.0.1 6] closed. -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 84 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - [javax.management.remote.rmi.RMIConnectionImpl@3bf1fc6a: connectionId=rmi://127.0.0.1 7] closing. -2024-08-07 18:04:59 - [javax.management.remote.rmi.RMIConnectionImpl@3bf1fc6a: connectionId=rmi://127.0.0.1 7] closed. -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - [javax.management.remote.rmi.RMIConnectionImpl@bf9bcff: connectionId=rmi://127.0.0.1 8] closing. -2024-08-07 18:04:59 - [javax.management.remote.rmi.RMIConnectionImpl@bf9bcff: connectionId=rmi://127.0.0.1 8] closed. -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 82 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 82 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 84 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 84 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - [javax.management.remote.rmi.RMIConnectionImpl@c33bd05: connectionId=rmi://127.0.0.1 9] closing. -2024-08-07 18:04:59 - [javax.management.remote.rmi.RMIConnectionImpl@c33bd05: connectionId=rmi://127.0.0.1 9] closed. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - [javax.management.remote.rmi.RMIConnectionImpl@26aee680: connectionId=rmi://127.0.0.1 10] closing. -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - [javax.management.remote.rmi.RMIConnectionImpl@26aee680: connectionId=rmi://127.0.0.1 10] closed. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 84 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 84 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-07 18:04:59 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-07 18:04:59 - Fetching JDBC Connection from DataSource -2024-08-07 18:04:59 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-07 18:04:59 - Initializing Servlet 'dispatcherServlet' -2024-08-07 18:04:59 - Detected StandardServletMultipartResolver -2024-08-07 18:04:59 - Detected AcceptHeaderLocaleResolver -2024-08-07 18:04:59 - Detected FixedThemeResolver -2024-08-07 18:04:59 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@2295535f -2024-08-07 18:04:59 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@77c77a64 -2024-08-07 18:04:59 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-07 18:04:59 - Completed initialization in 0 ms -2024-08-07 18:04:59 - Fetching JDBC Connection from DataSource -2024-08-07 18:04:59 - RMI TCP Connection(2)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - [javax.management.remote.rmi.RMIConnectionImpl@5cc29aca: connectionId=rmi://127.0.0.1 12] closing. -2024-08-07 18:04:59 - [javax.management.remote.rmi.RMIConnectionImpl@5cc29aca: connectionId=rmi://127.0.0.1 12] closed. -2024-08-07 18:04:59 - RMI TCP Connection(3)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:04:59 - [javax.management.remote.rmi.RMIConnectionImpl@11c41b2c: connectionId=rmi://127.0.0.1 11] closing. -2024-08-07 18:04:59 - [javax.management.remote.rmi.RMIConnectionImpl@11c41b2c: connectionId=rmi://127.0.0.1 11] closed. -2024-08-07 18:05:12 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.986887587240780976/conf/jaspic-providers.xml] -2024-08-07 18:05:12 - POST "/api/events", parameters={} -2024-08-07 18:05:12 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-07 18:05:12 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:05:12 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=도메인, password=1234]] -2024-08-07 18:05:12 - Found thread-bound EntityManager [SessionImpl(907877108<open>)] for JPA transaction -2024-08-07 18:05:12 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-07 18:05:12 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 18:05:12 - begin -2024-08-07 18:05:12 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@1b57a728] -2024-08-07 18:05:12 - Found thread-bound EntityManager [SessionImpl(907877108<open>)] for JPA transaction -2024-08-07 18:05:12 - Participating in existing transaction -2024-08-07 18:05:12 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-07 18:05:12 - Executing identity-insert immediately -2024-08-07 18:05:12 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-07 18:05:12 - Initializer list is empty -2024-08-07 18:05:12 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@40940190 -2024-08-07 18:05:12 - Extracted JDBC value [0] - [1] -2024-08-07 18:05:12 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@485afcbf -2024-08-07 18:05:12 - Initiating transaction commit -2024-08-07 18:05:12 - Committing JPA transaction on EntityManager [SessionImpl(907877108<open>)] -2024-08-07 18:05:12 - committing -2024-08-07 18:05:12 - Processing flush-time cascades -2024-08-07 18:05:12 - Dirty checking collections -2024-08-07 18:05:12 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-07 18:05:12 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-07 18:05:12 - Listing entities: -2024-08-07 18:05:12 - server.haengdong.domain.event.Event{password=1234, name=도메인, id=1, token=f249f2d1-0cf6-4084-873a-a9b98a3240a6} -2024-08-07 18:05:12 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 18:05:12 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 18:05:12 - Writing [EventResponse[eventId=f249f2d1-0cf6-4084-873a-a9b98a3240a6]] -2024-08-07 18:05:12 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:05:12 - Completed 200 OK -2024-08-07 18:05:14 - OPTIONS "/api/events/f249f2d1-0cf6-4084-873a-a9b98a3240a6", parameters={} -2024-08-07 18:05:14 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 18:05:14 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:05:14 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:05:14 - Completed 200 OK -2024-08-07 18:05:14 - OPTIONS "/api/events/f249f2d1-0cf6-4084-873a-a9b98a3240a6/actions", parameters={} -2024-08-07 18:05:14 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 18:05:14 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:05:14 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:05:14 - Completed 200 OK -2024-08-07 18:05:14 - GET "/api/events/f249f2d1-0cf6-4084-873a-a9b98a3240a6", parameters={} -2024-08-07 18:05:14 - Mapped to server.haengdong.presentation.EventController#findEvent(String) -2024-08-07 18:05:14 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:05:14 - GET "/api/events/f249f2d1-0cf6-4084-873a-a9b98a3240a6/actions", parameters={} -2024-08-07 18:05:14 - Mapped to server.haengdong.presentation.EventController#findActions(String) -2024-08-07 18:05:14 - Found thread-bound EntityManager [SessionImpl(361195642<open>)] for JPA transaction -2024-08-07 18:05:14 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:05:14 - Creating new transaction with name [server.haengdong.application.EventService.findEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 18:05:14 - Found thread-bound EntityManager [SessionImpl(1622572383<open>)] for JPA transaction -2024-08-07 18:05:14 - Creating new transaction with name [server.haengdong.application.EventService.findActions]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-07 18:05:14 - Setting JDBC Connection [HikariProxyConnection@1686758801 wrapping conn1: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 18:05:14 - Setting JDBC Connection [HikariProxyConnection@112416408 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-07 18:05:14 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 18:05:14 - begin -2024-08-07 18:05:14 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-07 18:05:14 - begin -2024-08-07 18:05:14 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@3d90d9b] -2024-08-07 18:05:14 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@4c271cb8] -2024-08-07 18:05:14 - Created new SQL alias : e1_0 -2024-08-07 18:05:14 - Created new SQL alias : e1_0 -2024-08-07 18:05:14 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(747470148927833))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 18:05:14 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(747470148927833))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-07 18:05:14 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@f604869 -2024-08-07 18:05:14 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@40acf766 -2024-08-07 18:05:14 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(747470148927833).token) -2024-08-07 18:05:14 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(747470148927833).token) -2024-08-07 18:05:14 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(747470148927833)] - | +-BasicFetch [server.haengdong.domain.event.Event(747470148927833).name] - | +-BasicFetch [server.haengdong.domain.event.Event(747470148927833).password] - | \-BasicFetch [server.haengdong.domain.event.Event(747470148927833).token] - -2024-08-07 18:05:14 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(747470148927833)] - | +-BasicFetch [server.haengdong.domain.event.Event(747470148927833).name] - | +-BasicFetch [server.haengdong.domain.event.Event(747470148927833).password] - | \-BasicFetch [server.haengdong.domain.event.Event(747470148927833).token] - -2024-08-07 18:05:14 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(747470148927833)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 18:05:14 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(747470148927833)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-07 18:05:14 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 18:05:14 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 18:05:14 - Initializer list: - server.haengdong.domain.event.Event(747470148927833) -> EntityResultInitializer(server.haengdong.domain.event.Event(747470148927833))@999536725 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 18:05:14 - Initializer list: - server.haengdong.domain.event.Event(747470148927833) -> EntityResultInitializer(server.haengdong.domain.event.Event(747470148927833))@1428111628 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-07 18:05:14 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 18:05:14 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-07 18:05:14 - Extracted JDBC value [0] - [1] -2024-08-07 18:05:14 - Extracted JDBC value [0] - [1] -2024-08-07 18:05:14 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(747470148927833)): 1 -2024-08-07 18:05:14 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(747470148927833)): 1 -2024-08-07 18:05:14 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(747470148927833)#1] : 717200251 -2024-08-07 18:05:14 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(747470148927833)#1] : 1739915881 -2024-08-07 18:05:14 - Extracted JDBC value [1] - [도메인] -2024-08-07 18:05:14 - Extracted JDBC value [1] - [도메인] -2024-08-07 18:05:14 - Extracted JDBC value [2] - [1234] -2024-08-07 18:05:14 - Extracted JDBC value [2] - [1234] -2024-08-07 18:05:14 - Extracted JDBC value [3] - [f249f2d1-0cf6-4084-873a-a9b98a3240a6] -2024-08-07 18:05:14 - Extracted JDBC value [3] - [f249f2d1-0cf6-4084-873a-a9b98a3240a6] -2024-08-07 18:05:14 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(747470148927833)#1 -2024-08-07 18:05:14 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(747470148927833)#1 -2024-08-07 18:05:14 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@59a13fdc -2024-08-07 18:05:14 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@7b28ced2 -2024-08-07 18:05:14 - Initiating transaction commit -2024-08-07 18:05:14 - Committing JPA transaction on EntityManager [SessionImpl(361195642<open>)] -2024-08-07 18:05:14 - committing -2024-08-07 18:05:14 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@112416408 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-07 18:05:14 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 18:05:14 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 18:05:14 - Writing [EventDetailResponse[eventName=도메인]] -2024-08-07 18:05:14 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:05:14 - Completed 200 OK -2024-08-07 18:05:14 - Created new SQL alias : ba1_0 -2024-08-07 18:05:14 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction(747469997699041))] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-07 18:05:14 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2a7aaacd] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 18:05:14 - Created new SQL alias : a1_0 -2024-08-07 18:05:14 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@17e8f78c] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action.event] for NavigablePath [server.haengdong.domain.action.BillAction.action.event] -2024-08-07 18:05:14 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2a7aaacd] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-07 18:05:14 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.JpaCriteriaParameter@75a510f8 -2024-08-07 18:05:14 - Created new SQL alias : e1_0 -2024-08-07 18:05:14 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@2d51c924 -2024-08-07 18:05:14 - Determining mapping-model type for SqmPath : SqmSingularJoin(server.haengdong.domain.action.BillAction(747469997699041).action(747469997721458).event(747469997729166) : event) -2024-08-07 18:05:14 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction(747469997699041)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.BillAction(747469997699041).action] - | +-BasicFetch [server.haengdong.domain.action.BillAction(747469997699041).price] - | \-BasicFetch [server.haengdong.domain.action.BillAction(747469997699041).title] - -2024-08-07 18:05:14 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction(747469997699041)) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction(747469997699041).action(747469997721458)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.BillAction(747469997699041).action(747469997721458).event(747469997729166)) { - primaryTableReference : event as e1_0 - } - } - } - } - } - } - } - -2024-08-07 18:05:14 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 18:05:14 - Initializer list: - server.haengdong.domain.action.BillAction(747469997699041).action.event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.BillAction(747469997699041).action.event)@1252887487 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@1015059555) - server.haengdong.domain.action.BillAction(747469997699041) -> EntityResultInitializer(server.haengdong.domain.action.BillAction(747469997699041))@468832377 (SingleTableEntityPersister(server.haengdong.domain.action.BillAction)) - server.haengdong.domain.action.BillAction(747469997699041).action -> EntityJoinedFetchInitializer(server.haengdong.domain.action.BillAction(747469997699041).action)@759324024 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.BillAction.action])@185912092) - -2024-08-07 18:05:14 - - select - ba1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ba1_0.price, - ba1_0.title - from - bill_action ba1_0 - left join - action a1_0 - on a1_0.id=ba1_0.action_id - left join - event e1_0 - on e1_0.id=a1_0.event_id - where - e1_0.id=? -2024-08-07 18:05:14 - Created new SQL alias : ma1_0 -2024-08-07 18:05:14 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction(m))] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-07 18:05:14 - Created new SQL alias : a1_0 -2024-08-07 18:05:14 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7d9c0b47] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-07 18:05:14 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7ab927d3] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 18:05:14 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1963313c] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-07 18:05:14 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1963313c] for NavigablePath [server.haengdong.domain.action.MemberAction(m).action(747470131872000).event] overrode previous registration : org.hibernate.sql.ast.tree.from.LazyTableGroup@7ab927d3 -2024-08-07 18:05:14 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 18:05:14 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-07 18:05:14 - Determining mapping-model type for SqmPath : SqmEntityValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action(747470131872000).event) -2024-08-07 18:05:14 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction(m)] - | +-EntityFetchJoinedImpl [server.haengdong.domain.action.MemberAction(m).action(747470131872000)] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction(m).memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction(m).status] - -2024-08-07 18:05:14 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction(m)) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction(m).action(747470131872000)) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.MemberAction(m).action(747470131872000).event) { - } - join LazyTableGroup (e2 : server.haengdong.domain.action.MemberAction(m).action(747470131872000).event) { - } - } - } - } - } - } - } - -2024-08-07 18:05:14 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-07 18:05:14 - Initializer list: - server.haengdong.domain.action.MemberAction(m).action(747470131872000) -> EntityJoinedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(747470131872000))@931983247 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.MemberAction.action])@1415187561) - server.haengdong.domain.action.MemberAction(m).action(747470131872000).event -> EntityDelayedFetchInitializer(server.haengdong.domain.action.MemberAction(m).action(747470131872000).event)@1412443407 (ToOneAttributeMapping(NavigableRole[server.haengdong.domain.action.Action.event])@1015059555) - server.haengdong.domain.action.MemberAction(m) -> EntityResultInitializer(server.haengdong.domain.action.MemberAction(m))@376525594 (SingleTableEntityPersister(server.haengdong.domain.action.MemberAction)) - -2024-08-07 18:05:14 - - select - ma1_0.id, - a1_0.id, - a1_0.event_id, - a1_0.sequence, - ma1_0.member_group_id, - ma1_0.member_name, - ma1_0.status - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-07 18:05:14 - Initiating transaction commit -2024-08-07 18:05:14 - Committing JPA transaction on EntityManager [SessionImpl(1622572383<open>)] -2024-08-07 18:05:14 - committing -2024-08-07 18:05:14 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1686758801 wrapping conn1: url=jdbc:h2:mem:database user=SA] -2024-08-07 18:05:14 - Not closing pre-bound JPA EntityManager after transaction -2024-08-07 18:05:14 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 18:05:14 - Writing [StepsResponse[steps=[]]] -2024-08-07 18:05:14 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:05:14 - Completed 200 OK -2024-08-07 18:05:19 - OPTIONS "/api/events/f249f2d1-0cf6-4084-873a-a9b98a3240a6/member-actions", parameters={} -2024-08-07 18:05:19 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 18:05:19 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:05:19 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-07 18:05:19 - Completed 200 OK -2024-08-07 18:05:19 - POST "/api/events/f249f2d1-0cf6-4084-873a-a9b98a3240a6/member-actions", parameters={} -2024-08-07 18:05:19 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-07 18:05:19 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-07 18:05:19 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-07 18:05:19 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-07 18:05:19 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-07 18:05:19 - Completed 401 UNAUTHORIZED -2024-08-07 18:05:28 - RMI TCP Connection(1)-127.0.0.1: (port 50494) connection closed -2024-08-07 18:05:28 - RMI TCP Connection(3)-127.0.0.1: (port 50494) connection closed -2024-08-07 18:05:28 - RMI TCP Connection(2)-127.0.0.1: (port 50494) connection closed -2024-08-07 18:05:28 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=50497,localport=50494] -2024-08-07 18:05:28 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=50498,localport=50494] -2024-08-07 18:05:28 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=50496,localport=50494] -2024-08-07 18:05:28 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=50498,localport=50494] -2024-08-07 18:05:28 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=50497,localport=50494] -2024-08-07 18:05:28 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=50496,localport=50494] -2024-08-07 18:05:28 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 18:05:28 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 18:05:56 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:50505] -2024-08-07 18:05:56 - RMI TCP Connection(4)-127.0.0.1: (port 50494) op = 80 -2024-08-07 18:05:56 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:05:56 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:05:56 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:05:56 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:05:56 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@251a90ce -2024-08-07 18:05:58 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 18:05:58 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 18:06:11 - RMI TCP Connection(4)-127.0.0.1: (port 50494) connection closed -2024-08-07 18:06:11 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=50505,localport=50494] -2024-08-07 18:06:11 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=50505,localport=50494] -2024-08-07 18:06:28 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 18:06:28 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-07 18:06:41 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-07 18:06:41 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b, started on Wed Aug 07 18:04:57 KST 2024 -2024-08-07 18:06:41 - Stopping beans in phase 2147483647 -2024-08-07 18:06:41 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-07 18:06:41 - Stopping beans in phase 2147482623 -2024-08-07 18:06:41 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-07 18:06:41 - Stopping beans in phase 2147481599 -2024-08-07 18:06:41 - Bean 'webServerStartStop' completed its stop procedure -2024-08-07 18:06:41 - Stopping beans in phase -2147483647 -2024-08-07 18:06:41 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-07 18:06:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-07 18:06:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-07 18:06:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-07 18:06:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-07 18:06:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-07 18:06:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-07 18:06:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-07 18:06:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-07 18:06:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-07 18:06:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-07 18:06:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-07 18:06:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-07 18:06:41 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-07 18:06:41 - Unregistering JMX-exposed beans on shutdown -2024-08-07 18:06:41 - Unregistering JMX-exposed beans -2024-08-07 18:06:41 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-07 18:06:41 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-07 18:06:41 - HHH000031: Closing -2024-08-07 18:06:41 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@1a2c7c95] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@3749c6ac] -2024-08-07 18:06:41 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-07 18:06:41 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-07 18:06:41 - HikariPool-1 - Shutdown initiated... -2024-08-07 18:06:41 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-07 18:06:41 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:06:41 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:06:41 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:06:41 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:06:41 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:06:41 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:06:41 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:06:41 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:06:41 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:06:41 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-07 18:06:41 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-07 18:06:41 - HikariPool-1 - Shutdown completed. -2024-08-07 18:06:41 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed diff --git a/logs/spring-boot-application.log b/logs/spring-boot-application.log deleted file mode 100644 index 51c539eba..000000000 --- a/logs/spring-boot-application.log +++ /dev/null @@ -1,69286 +0,0 @@ -2024-08-08 00:28:18 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-08 00:28:18 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-08 00:28:18 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:28:18 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:28:18 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:28:18 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:28:18 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:28:18 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:28:18 - Loaded expression factory via original TCCL -2024-08-08 00:28:18 - Starting HaengdongApplication using Java 17.0.12 with PID 86990 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-08 00:28:18 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-08 00:28:18 - No active profile set, falling back to 1 default profile: "default" -2024-08-08 00:28:18 - Loading source class server.haengdong.HaengdongApplication -2024-08-08 00:28:18 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-08 00:28:18 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-08 00:28:18 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-08 00:28:18 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:28:18 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:28:18 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:28:18 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:28:18 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:28:18 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:28:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-08 00:28:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-08 00:28:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-08 00:28:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-08 00:28:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-08 00:28:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-08 00:28:18 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 00:28:18 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 00:28:18 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 00:28:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-08 00:28:18 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 00:28:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-08 00:28:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-08 00:28:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-08 00:28:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-08 00:28:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-08 00:28:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-08 00:28:18 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-08 00:28:18 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-08 00:28:18 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-08 00:28:18 - Scanning for JPA repositories in packages server.haengdong. -2024-08-08 00:28:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 00:28:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 00:28:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 00:28:18 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 00:28:18 - Finished Spring Data repository scanning in 23 ms. Found 4 JPA repository interfaces. -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-08 00:28:19 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-08 00:28:19 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-08 00:28:19 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 00:28:19 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-08 00:28:19 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 00:28:19 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 00:28:19 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-08 00:28:19 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-08 00:28:19 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@491cafec] -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-08 00:28:19 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-08 00:28:19 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-08 00:28:19 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-08 00:28:19 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-08 00:28:19 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-08 00:28:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-08 00:28:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-08 00:28:19 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 00:28:19 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:28:19 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:28:19 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:28:19 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-08 00:28:19 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 00:28:19 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 00:28:19 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-08 00:28:19 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-08 00:28:19 - Tomcat initialized with port 8080 (http) -2024-08-08 00:28:19 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@9690008] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@9690008] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.mapper.MapperListener@1a2e563e] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.mapper.MapperListener@1a2e563e] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-08 00:28:19 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-08 00:28:19 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@9690008] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@9690008] to [STARTING] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@9690008] to [STARTED] -2024-08-08 00:28:19 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-08 00:28:19 - Starting service [Tomcat] -2024-08-08 00:28:19 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-08 00:28:19 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-08 00:28:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@26c7b1c6] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@26c7b1c6] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@26c7b1c6] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@70f148dc] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@70f148dc] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@70f148dc] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@70f148dc] to [STARTING] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@70f148dc] to [STARTED] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@26c7b1c6] to [STARTING] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@26c7b1c6] to [STARTED] -2024-08-08 00:28:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:28:19 - Starting this Loader -2024-08-08 00:28:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:28:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:28:19 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-08 00:28:19 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4662752a] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4662752a] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4662752a] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4662752a] to [STARTING] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4662752a] to [STARTED] -2024-08-08 00:28:19 - Initializing Spring embedded WebApplicationContext -2024-08-08 00:28:19 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-08 00:28:19 - Root WebApplicationContext: initialization completed in 800 ms -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-08 00:28:19 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-08 00:28:19 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-08 00:28:19 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-08 00:28:19 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:28:19 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-08 00:28:19 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'h2Console' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'dataSource' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-08 00:28:19 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-08 00:28:19 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-08 00:28:19 - HikariPool-1 - configuration: -2024-08-08 00:28:19 - allowPoolSuspension.............false -2024-08-08 00:28:19 - autoCommit......................true -2024-08-08 00:28:19 - catalog.........................none -2024-08-08 00:28:19 - connectionInitSql...............none -2024-08-08 00:28:19 - connectionTestQuery.............none -2024-08-08 00:28:19 - connectionTimeout...............30000 -2024-08-08 00:28:19 - dataSource......................none -2024-08-08 00:28:19 - dataSourceClassName.............none -2024-08-08 00:28:19 - dataSourceJNDI..................none -2024-08-08 00:28:19 - dataSourceProperties............{password=<masked>} -2024-08-08 00:28:19 - driverClassName................."org.h2.Driver" -2024-08-08 00:28:19 - exceptionOverrideClassName......none -2024-08-08 00:28:19 - healthCheckProperties...........{} -2024-08-08 00:28:19 - healthCheckRegistry.............none -2024-08-08 00:28:19 - idleTimeout.....................600000 -2024-08-08 00:28:19 - initializationFailTimeout.......1 -2024-08-08 00:28:19 - isolateInternalQueries..........false -2024-08-08 00:28:19 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-08 00:28:19 - keepaliveTime...................0 -2024-08-08 00:28:19 - leakDetectionThreshold..........0 -2024-08-08 00:28:19 - maxLifetime.....................1800000 -2024-08-08 00:28:19 - maximumPoolSize.................10 -2024-08-08 00:28:19 - metricRegistry..................none -2024-08-08 00:28:19 - metricsTrackerFactory...........none -2024-08-08 00:28:19 - minimumIdle.....................10 -2024-08-08 00:28:19 - password........................<masked> -2024-08-08 00:28:19 - poolName........................"HikariPool-1" -2024-08-08 00:28:19 - readOnly........................false -2024-08-08 00:28:19 - registerMbeans..................false -2024-08-08 00:28:19 - scheduledExecutor...............none -2024-08-08 00:28:19 - schema..........................none -2024-08-08 00:28:19 - threadFactory...................internal -2024-08-08 00:28:19 - transactionIsolation............default -2024-08-08 00:28:19 - username........................"sa" -2024-08-08 00:28:19 - validationTimeout...............5000 -2024-08-08 00:28:19 - HikariPool-1 - Starting... -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:59891] -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 84 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:19 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:19 - [javax.management.remote.rmi.RMIConnectionImpl@b9749f: connectionId=rmi://127.0.0.1 1] closing. -2024-08-08 00:28:19 - [javax.management.remote.rmi.RMIConnectionImpl@b9749f: connectionId=rmi://127.0.0.1 1] closed. -2024-08-08 00:28:19 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-08 00:28:19 - HikariPool-1 - Start completed. -2024-08-08 00:28:19 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-08 00:28:19 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-08 00:28:19 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:28:19 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-08 00:28:19 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:28:19 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-08 00:28:19 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-08 00:28:19 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-08 00:28:19 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-08 00:28:19 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-08 00:28:19 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5ba184fc] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5ba184fc] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5ba184fc] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5ba184fc] to [STARTING] -2024-08-08 00:28:19 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5ba184fc] to [STARTED] -2024-08-08 00:28:19 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:28:19 - Filter 'requestContextFilter' configured for use -2024-08-08 00:28:19 - Filter 'webMvcObservationFilter' configured for use -2024-08-08 00:28:19 - Filter 'characterEncodingFilter' configured for use -2024-08-08 00:28:19 - Filter 'formContentFilter' configured for use -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:28:19 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:28:19 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:28:19 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-08 00:28:19 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.mapper.MapperListener@1a2e563e] to [STARTING_PREP] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.mapper.MapperListener@1a2e563e] to [STARTING] -2024-08-08 00:28:19 - Registered host [localhost] -2024-08-08 00:28:19 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-08 00:28:19 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-08 00:28:19 - Register Context [] for service [StandardService[Tomcat]] -2024-08-08 00:28:19 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-08 00:28:19 - Setting state for [org.apache.catalina.mapper.MapperListener@1a2e563e] to [STARTED] -2024-08-08 00:28:19 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-08 00:28:19 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-08 00:28:19 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-08 00:28:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:28:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@372b0d86' -2024-08-08 00:28:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-08 00:28:19 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-08 00:28:19 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-08 00:28:19 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-08 00:28:19 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-08 00:28:19 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@372b0d86' -2024-08-08 00:28:19 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:28:19 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-08 00:28:19 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-08 00:28:19 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-08 00:28:19 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-08 00:28:19 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-08 00:28:19 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-08 00:28:19 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-08 00:28:19 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-08 00:28:19 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-08 00:28:19 - HHH000206: 'hibernate.properties' not found -2024-08-08 00:28:19 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-08 00:28:19 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-08 00:28:19 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-08 00:28:19 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-08 00:28:19 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 00:28:19 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 00:28:19 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-08 00:28:19 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-08 00:28:19 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-08 00:28:19 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 00:28:19 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-08 00:28:19 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-08 00:28:19 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 00:28:19 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-08 00:28:19 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-08 00:28:19 - HHH000026: Second-level cache disabled -2024-08-08 00:28:19 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-08 00:28:19 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-08 00:28:19 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-08 00:28:19 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-08 00:28:19 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-08 00:28:19 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-08 00:28:19 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-08 00:28:19 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-08 00:28:19 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-08 00:28:19 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-08 00:28:19 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-08 00:28:19 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-08 00:28:19 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-08 00:28:19 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-08 00:28:19 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-08 00:28:19 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-08 00:28:19 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-08 00:28:19 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-08 00:28:19 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-08 00:28:19 - Adding type registration image -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-08 00:28:19 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-08 00:28:19 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-08 00:28:19 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-08 00:28:19 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-08 00:28:19 - Adding type registration short -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-08 00:28:19 - Adding type registration short -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-08 00:28:19 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-08 00:28:19 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-08 00:28:19 - Adding type registration int -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-08 00:28:19 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-08 00:28:19 - Adding type registration long -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-08 00:28:19 - Adding type registration long -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-08 00:28:19 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-08 00:28:19 - Adding type registration float -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 00:28:19 - Adding type registration float -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 00:28:19 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 00:28:19 - Adding type registration double -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:28:19 - Adding type registration double -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:28:19 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:28:19 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-08 00:28:19 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-08 00:28:19 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 00:28:19 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 00:28:19 - Adding type registration character -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 00:28:19 - Adding type registration char -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 00:28:19 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 00:28:19 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 00:28:19 - Adding type registration string -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-08 00:28:19 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-08 00:28:19 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-08 00:28:19 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-08 00:28:19 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-08 00:28:19 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-08 00:28:19 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-08 00:28:19 - Adding type registration text -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 00:28:19 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 00:28:19 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 00:28:19 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 00:28:19 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-08 00:28:19 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-08 00:28:19 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 00:28:19 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 00:28:19 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-08 00:28:19 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-08 00:28:19 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 00:28:19 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-08 00:28:19 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-08 00:28:19 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-08 00:28:19 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 00:28:19 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 00:28:19 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 00:28:19 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 00:28:19 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 00:28:19 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 00:28:19 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 00:28:19 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 00:28:19 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 00:28:19 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-08 00:28:19 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-08 00:28:19 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-08 00:28:19 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-08 00:28:19 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-08 00:28:19 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-08 00:28:19 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-08 00:28:19 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-08 00:28:19 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-08 00:28:19 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 00:28:19 - Adding type registration date -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 00:28:19 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 00:28:19 - Adding type registration time -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-08 00:28:19 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-08 00:28:19 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-08 00:28:19 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-08 00:28:19 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-08 00:28:19 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 00:28:19 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 00:28:19 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 00:28:19 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 00:28:19 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-08 00:28:19 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-08 00:28:19 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-08 00:28:19 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-08 00:28:19 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-08 00:28:19 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-08 00:28:19 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-08 00:28:19 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-08 00:28:19 - Adding type registration class -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-08 00:28:19 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-08 00:28:19 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-08 00:28:19 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-08 00:28:19 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-08 00:28:19 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-08 00:28:19 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-08 00:28:19 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-08 00:28:19 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-08 00:28:19 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-08 00:28:19 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-08 00:28:19 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-08 00:28:19 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-08 00:28:19 - Adding type registration url -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-08 00:28:19 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-08 00:28:19 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-08 00:28:19 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-08 00:28:19 - Adding type registration object -> org.hibernate.type.JavaObjectType@1dfe5dd1 -2024-08-08 00:28:19 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@1dfe5dd1 -2024-08-08 00:28:19 - Adding type registration null -> org.hibernate.type.NullType@79445efb -2024-08-08 00:28:19 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@1592e540 -2024-08-08 00:28:19 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@3e2772a9 -2024-08-08 00:28:19 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@4449b273 -2024-08-08 00:28:19 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@1fa18f87 -2024-08-08 00:28:19 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@1d9bd1d6 -2024-08-08 00:28:19 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@18ac4af6 -2024-08-08 00:28:19 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@117fb9ba -2024-08-08 00:28:19 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@2b1d1a5 -2024-08-08 00:28:19 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@14b26e90] into BootstrapContext; was [null] -2024-08-08 00:28:19 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@14b26e90) [was null] -2024-08-08 00:28:19 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@395eb363] into BootstrapContext; was [null] -2024-08-08 00:28:19 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@1e194966] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@160546b1] -2024-08-08 00:28:19 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-08 00:28:19 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-08 00:28:19 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-08 00:28:19 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-08 00:28:19 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-08 00:28:19 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@14b26e90] -2024-08-08 00:28:19 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@14b26e90] -2024-08-08 00:28:19 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-08 00:28:19 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-08 00:28:19 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 00:28:19 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 00:28:19 - JDBC version : 4.2 -2024-08-08 00:28:19 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-08 00:28:19 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-08 00:28:19 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-08 00:28:19 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-08 00:28:19 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-08 00:28:19 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 00:28:19 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 00:28:19 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-08 00:28:19 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-08 00:28:19 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 00:28:19 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 00:28:19 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@34647f58] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@14b96c1e] -2024-08-08 00:28:19 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-08 00:28:19 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-08 00:28:19 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-08 00:28:19 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-08 00:28:19 - Import with entity name Action -2024-08-08 00:28:19 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-08 00:28:19 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:28:19 - Binding column: AnnotatedColumn() -2024-08-08 00:28:19 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:28:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:28:19 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-08 00:28:19 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-08 00:28:19 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:28:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-08 00:28:19 - building BasicValue for id -2024-08-08 00:28:19 - Skipping column re-registration: action.id -2024-08-08 00:28:19 - Building property id -2024-08-08 00:28:19 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:28:19 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:28:19 - Binding column: AnnotatedColumn() -2024-08-08 00:28:19 - Building property event -2024-08-08 00:28:19 - Binding column: AnnotatedColumn() -2024-08-08 00:28:19 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 00:28:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-08 00:28:19 - building BasicValue for sequence -2024-08-08 00:28:19 - Skipping column re-registration: action.sequence -2024-08-08 00:28:19 - Building property sequence -2024-08-08 00:28:19 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:28:19 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-08 00:28:19 - Import with entity name BillAction -2024-08-08 00:28:19 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-08 00:28:19 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:28:19 - Binding column: AnnotatedColumn() -2024-08-08 00:28:19 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:28:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:28:19 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:28:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-08 00:28:19 - building BasicValue for id -2024-08-08 00:28:19 - Skipping column re-registration: bill_action.id -2024-08-08 00:28:19 - Building property id -2024-08-08 00:28:19 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:28:19 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:28:19 - Binding column: AnnotatedColumn() -2024-08-08 00:28:19 - Building property action -2024-08-08 00:28:19 - Binding column: AnnotatedColumn() -2024-08-08 00:28:19 - MetadataSourceProcessor property price with lazy=false -2024-08-08 00:28:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-08 00:28:19 - building BasicValue for price -2024-08-08 00:28:19 - Skipping column re-registration: bill_action.price -2024-08-08 00:28:19 - Building property price -2024-08-08 00:28:19 - Binding column: AnnotatedColumn() -2024-08-08 00:28:19 - MetadataSourceProcessor property title with lazy=false -2024-08-08 00:28:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-08 00:28:19 - building BasicValue for title -2024-08-08 00:28:19 - Skipping column re-registration: bill_action.title -2024-08-08 00:28:19 - Building property title -2024-08-08 00:28:19 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:28:19 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-08 00:28:19 - Import with entity name MemberAction -2024-08-08 00:28:19 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-08 00:28:19 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:28:19 - Binding column: AnnotatedColumn() -2024-08-08 00:28:19 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:28:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:28:19 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:28:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-08 00:28:19 - building BasicValue for id -2024-08-08 00:28:19 - Skipping column re-registration: member_action.id -2024-08-08 00:28:19 - Building property id -2024-08-08 00:28:19 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:28:19 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:28:19 - Binding column: AnnotatedColumn() -2024-08-08 00:28:19 - Building property action -2024-08-08 00:28:19 - Binding column: AnnotatedColumn() -2024-08-08 00:28:19 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-08 00:28:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-08 00:28:19 - building BasicValue for memberGroupId -2024-08-08 00:28:19 - Skipping column re-registration: member_action.member_group_id -2024-08-08 00:28:19 - Building property memberGroupId -2024-08-08 00:28:19 - Binding column: AnnotatedColumn() -2024-08-08 00:28:19 - MetadataSourceProcessor property memberName with lazy=false -2024-08-08 00:28:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-08 00:28:19 - building BasicValue for memberName -2024-08-08 00:28:19 - Skipping column re-registration: member_action.member_name -2024-08-08 00:28:19 - Building property memberName -2024-08-08 00:28:19 - Binding column: AnnotatedColumn() -2024-08-08 00:28:19 - MetadataSourceProcessor property status with lazy=false -2024-08-08 00:28:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-08 00:28:19 - building BasicValue for status -2024-08-08 00:28:19 - Skipping column re-registration: member_action.status -2024-08-08 00:28:19 - Building property status -2024-08-08 00:28:19 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:28:19 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-08 00:28:19 - Import with entity name Event -2024-08-08 00:28:19 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-08 00:28:19 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:28:19 - Binding column: AnnotatedColumn() -2024-08-08 00:28:19 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:28:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:28:19 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:28:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-08 00:28:19 - building BasicValue for id -2024-08-08 00:28:19 - Skipping column re-registration: event.id -2024-08-08 00:28:19 - Building property id -2024-08-08 00:28:19 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:28:19 - Binding column: AnnotatedColumn() -2024-08-08 00:28:19 - MetadataSourceProcessor property name with lazy=false -2024-08-08 00:28:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-08 00:28:19 - building BasicValue for name -2024-08-08 00:28:19 - Skipping column re-registration: event.name -2024-08-08 00:28:19 - Building property name -2024-08-08 00:28:19 - Binding column: AnnotatedColumn() -2024-08-08 00:28:19 - MetadataSourceProcessor property password with lazy=false -2024-08-08 00:28:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-08 00:28:19 - building BasicValue for password -2024-08-08 00:28:19 - Skipping column re-registration: event.password -2024-08-08 00:28:19 - Building property password -2024-08-08 00:28:19 - Binding column: AnnotatedColumn() -2024-08-08 00:28:19 - MetadataSourceProcessor property token with lazy=false -2024-08-08 00:28:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-08 00:28:19 - building BasicValue for token -2024-08-08 00:28:19 - Skipping column re-registration: event.token -2024-08-08 00:28:19 - Building property token -2024-08-08 00:28:19 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 00:28:19 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-08 00:28:19 - Import with entity name EventStep -2024-08-08 00:28:19 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-08 00:28:19 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:28:19 - Binding column: AnnotatedColumn() -2024-08-08 00:28:19 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:28:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:28:19 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:28:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-08 00:28:19 - building BasicValue for id -2024-08-08 00:28:19 - Skipping column re-registration: event_step.id -2024-08-08 00:28:19 - Building property id -2024-08-08 00:28:19 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:28:19 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:28:19 - Binding column: AnnotatedColumn() -2024-08-08 00:28:19 - Building property event -2024-08-08 00:28:19 - Binding column: AnnotatedColumn() -2024-08-08 00:28:19 - MetadataSourceProcessor property name with lazy=false -2024-08-08 00:28:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-08 00:28:19 - building BasicValue for name -2024-08-08 00:28:19 - Skipping column re-registration: event_step.name -2024-08-08 00:28:19 - Building property name -2024-08-08 00:28:19 - Binding column: AnnotatedColumn() -2024-08-08 00:28:19 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 00:28:19 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-08 00:28:19 - building BasicValue for sequence -2024-08-08 00:28:19 - Skipping column re-registration: event_step.sequence -2024-08-08 00:28:19 - Building property sequence -2024-08-08 00:28:19 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 00:28:19 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:28:19 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 00:28:19 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:28:19 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-08 00:28:19 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-08 00:28:19 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:28:19 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-08 00:28:19 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-08 00:28:19 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-08 00:28:19 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:28:19 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 00:28:19 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-08 00:28:19 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-08 00:28:19 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:28:19 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 00:28:19 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 00:28:19 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-08 00:28:19 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-08 00:28:19 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-08 00:28:19 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-08 00:28:19 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-08 00:28:19 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:28:19 - Building session factory -2024-08-08 00:28:19 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:28:19 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@7957aa57, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@7b92ea9d, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.13647499926123979394, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=86990, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.13647499926123979394, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@6b3bc1f6, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-08 00:28:19 - Session factory constructed with filter configurations : {} -2024-08-08 00:28:19 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:28:19 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:28:19 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:28:19 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:28:19 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:28:19 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:28:19 - Loaded expression factory via original TCCL -2024-08-08 00:28:19 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:28:19 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:28:19 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:28:19 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:28:19 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:28:19 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:28:19 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:28:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:28:19 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:28:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:28:19 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:28:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:28:19 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:28:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:28:19 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:28:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:28:19 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 82 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 82 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 82 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 84 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 82 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 82 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:19 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 82 -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-08 00:28:19 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:19 - [javax.management.remote.rmi.RMIConnectionImpl@4cef60f6: connectionId=rmi://127.0.0.1 2] closing. -2024-08-08 00:28:19 - [javax.management.remote.rmi.RMIConnectionImpl@4cef60f6: connectionId=rmi://127.0.0.1 2] closed. -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@59d09ff3] under count; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@49322d04] under every; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@b6b746b] under any; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@394b9e22] under sinh; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6e0f259e] under cosh; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4fe9adfb] under tanh; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@f8fe81e] under pi; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6ad0cd43] under log; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-08 00:28:19 - Registering alternate key : length -> character_length -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@33214124] under position; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@862624f] under overlay; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@7c8a91e2] under trim; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@79b0956e] under cast; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@35451ba6] under collate; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@2a7392a3] under extract; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@5382a35f] under ifnull; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@4a7c72af] under pad; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@1b53e6fc] under str; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@4419cd6e] under format; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@2fccd98f] under timestampadd; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@261099e1] under timestampdiff; prior registration was null -2024-08-08 00:28:19 - Registering alternate key : dateadd -> timestampadd -2024-08-08 00:28:19 - Registering alternate key : datediff -> timestampdiff -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7d7c05fa] under current_date; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7dbbf730] under current_time; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7c4a5ef2] under current_timestamp; prior registration was null -2024-08-08 00:28:19 - Registering alternate key : current date -> current_date -2024-08-08 00:28:19 - Registering alternate key : current time -> current_time -2024-08-08 00:28:19 - Registering alternate key : current timestamp -> current_timestamp -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@299dd381] under local_date; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@34d3409d] under local_time; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16732340] under local_datetime; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@38e052b2] under offset_datetime; prior registration was null -2024-08-08 00:28:19 - Registering alternate key : local date -> local_date -2024-08-08 00:28:19 - Registering alternate key : local time -> local_time -2024-08-08 00:28:19 - Registering alternate key : local datetime -> local_datetime -2024-08-08 00:28:19 - Registering alternate key : offset datetime -> offset_datetime -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7fa68ff4] under instant; prior registration was null -2024-08-08 00:28:19 - Registering alternate key : current_instant -> instant -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@2f64f99f] under sql; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@16c1d11] under count; prior registration was org.hibernate.dialect.function.CountFunction@59d09ff3 -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@2fc40856] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@f8fe81e -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5543d800] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-08 00:28:19 - Registering alternate key : day -> day_of_month -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@34d3409d -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@16732340 -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@7a2fd94c] under trunc; prior registration was null -2024-08-08 00:28:19 - Registering alternate key : truncate -> trunc -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@637c8632] under date_trunc; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-08 00:28:19 - Registering alternate key : chr -> char -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@156eeff1] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@33214124 -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@34001c5d] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-08 00:28:19 - Registering alternate key : every -> bool_and -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-08 00:28:19 - Registering alternate key : any -> bool_or -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@30e15628] under format; prior registration was org.hibernate.dialect.function.FormatFunction@4419cd6e -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@34f8ce89] under listagg; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@10bcbbce] under mode; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@27234b7c] under percentile_cont; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@125a8ab6] under percentile_disc; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@7730da00] under rank; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@52d01430] under dense_rank; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@3fdede3a] under percent_rank; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@41948c13] under cume_dist; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@5a45c218] under array; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@2c6efee3] under array_list; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@6aa18912] under array_agg; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@7c6fc278] under array_position; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@7a78d2aa] under array_positions; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@78f35e39] under array_positions_list; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@11896124] under array_length; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@20462820] under array_concat; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@5b5a89d1] under array_prepend; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@267b678f] under array_append; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@4edd8a0a] under array_contains; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@1a73f3d1] under array_contains_nullable; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@1018f702] under array_overlaps; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@5400db7e] under array_overlaps_nullable; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@73905dff] under array_get; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@12478b4e] under array_set; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@774189d0] under array_remove; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@7f584d0c] under array_remove_index; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4c599679] under array_slice; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@1bcf2c64] under array_replace; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@b5bddfe] under array_trim; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@5570dc21] under array_fill; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@1477d4e6] under array_fill_list; prior registration was null -2024-08-08 00:28:19 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@48da5106] under array_to_string; prior registration was null -2024-08-08 00:28:19 - abs(NUMERIC arg) -2024-08-08 00:28:19 - Double acos(NUMERIC arg) -2024-08-08 00:28:19 - Boolean any(BOOLEAN predicate) -2024-08-08 00:28:19 - array( ... ) -2024-08-08 00:28:19 - array_agg(arg) -2024-08-08 00:28:19 - array_append( ... ) -2024-08-08 00:28:19 - array_concat( ... ) -2024-08-08 00:28:19 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 00:28:19 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 00:28:19 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-08 00:28:19 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-08 00:28:19 - array_get(ARRAY array, INTEGER index) -2024-08-08 00:28:19 - Integer array_length(ARRAY array) -2024-08-08 00:28:19 - array_list( ... ) -2024-08-08 00:28:19 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-08 00:28:19 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-08 00:28:19 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-08 00:28:19 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-08 00:28:19 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-08 00:28:19 - array_prepend( ... ) -2024-08-08 00:28:19 - array_remove( ... ) -2024-08-08 00:28:19 - array_remove_index( ... ) -2024-08-08 00:28:19 - array_replace( ... ) -2024-08-08 00:28:19 - array_set( ... ) -2024-08-08 00:28:19 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-08 00:28:19 - String array_to_string( ... ) -2024-08-08 00:28:19 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-08 00:28:19 - Integer ascii(STRING arg) -2024-08-08 00:28:19 - Double asin(NUMERIC arg) -2024-08-08 00:28:19 - Double atan(NUMERIC arg) -2024-08-08 00:28:19 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-08 00:28:19 - avg(NUMERIC arg) -2024-08-08 00:28:19 - bit_and(arg) -2024-08-08 00:28:19 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-08 00:28:19 - bit_or(arg) -2024-08-08 00:28:19 - bitand(arg0, arg1) -2024-08-08 00:28:19 - bitnot(arg) -2024-08-08 00:28:19 - bitor(arg0, arg1) -2024-08-08 00:28:19 - bitxor(arg0, arg1) -2024-08-08 00:28:19 - Boolean bool_and(BOOLEAN predicate) -2024-08-08 00:28:19 - Boolean bool_or(BOOLEAN predicate) -2024-08-08 00:28:19 - cast(arg as Type) -2024-08-08 00:28:19 - ceiling(NUMERIC arg) -2024-08-08 00:28:19 - Character char(INTEGER arg) -2024-08-08 00:28:19 - Integer character_length(STRING_OR_CLOB arg) -2024-08-08 00:28:19 - Character chr(INTEGER arg) -2024-08-08 00:28:19 - coalesce(arg0[, arg1[, ...]]) -2024-08-08 00:28:19 - String collate(STRING string as COLLATION collation) -2024-08-08 00:28:19 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-08 00:28:19 - Double cos(NUMERIC arg) -2024-08-08 00:28:19 - Double cosh(NUMERIC arg) -2024-08-08 00:28:19 - Double cot(NUMERIC arg) -2024-08-08 00:28:19 - Long count([distinct ]{arg|*}) -2024-08-08 00:28:19 - Double cume_dist([arg0[, ...]]) -2024-08-08 00:28:19 - Date curdate() -2024-08-08 00:28:19 - Date current date -2024-08-08 00:28:19 - Time current time -2024-08-08 00:28:19 - Timestamp current timestamp -2024-08-08 00:28:19 - Date current_date -2024-08-08 00:28:19 - Instant current_instant -2024-08-08 00:28:19 - Time current_time -2024-08-08 00:28:19 - Timestamp current_timestamp -2024-08-08 00:28:19 - Time curtime() -2024-08-08 00:28:19 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-08 00:28:19 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 00:28:19 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 00:28:19 - Integer day(DATE arg) -2024-08-08 00:28:19 - Integer day_of_month(DATE arg) -2024-08-08 00:28:19 - Integer day_of_week(DATE arg) -2024-08-08 00:28:19 - Integer day_of_year(DATE arg) -2024-08-08 00:28:19 - String dayname(DATE arg) -2024-08-08 00:28:19 - Double degrees(NUMERIC arg) -2024-08-08 00:28:19 - Long dense_rank([arg0[, ...]]) -2024-08-08 00:28:19 - Boolean every(BOOLEAN predicate) -2024-08-08 00:28:19 - Double exp(NUMERIC arg) -2024-08-08 00:28:19 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-08 00:28:19 - first_valueANY value -2024-08-08 00:28:19 - floor(NUMERIC arg) -2024-08-08 00:28:19 - String format(TEMPORAL datetime as STRING pattern) -2024-08-08 00:28:19 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 00:28:19 - Integer hour(TIME arg) -2024-08-08 00:28:19 - ifnull(arg0, arg1) -2024-08-08 00:28:19 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-08 00:28:19 - Instant instant -2024-08-08 00:28:19 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-08 00:28:19 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-08 00:28:19 - last_valueANY value -2024-08-08 00:28:19 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-08 00:28:19 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 00:28:19 - String left(STRING string, INTEGER length) -2024-08-08 00:28:19 - Integer length(STRING_OR_CLOB arg) -2024-08-08 00:28:19 - String listagg(STRING arg0, STRING arg1) -2024-08-08 00:28:19 - Double ln(NUMERIC arg) -2024-08-08 00:28:19 - LocalDate local date -2024-08-08 00:28:19 - LocalDateTime local datetime -2024-08-08 00:28:19 - LocalTime local time -2024-08-08 00:28:19 - LocalDate local_date -2024-08-08 00:28:19 - LocalDateTime local_datetime -2024-08-08 00:28:19 - LocalTime local_time -2024-08-08 00:28:19 - Time localtime -2024-08-08 00:28:19 - Timestamp localtimestamp -2024-08-08 00:28:19 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-08 00:28:19 - Double log(NUMERIC base, NUMERIC arg) -2024-08-08 00:28:19 - Double log10(NUMERIC arg) -2024-08-08 00:28:19 - String lower(STRING string) -2024-08-08 00:28:19 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 00:28:19 - String ltrim(STRING string) -2024-08-08 00:28:19 - max(COMPARABLE arg) -2024-08-08 00:28:19 - Double median(NUMERIC arg) -2024-08-08 00:28:19 - Integer microsecond(TIME arg) -2024-08-08 00:28:19 - min(COMPARABLE arg) -2024-08-08 00:28:19 - Integer minute(TIME arg) -2024-08-08 00:28:19 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-08 00:28:19 - mode() -2024-08-08 00:28:19 - Integer month(DATE arg) -2024-08-08 00:28:19 - String monthname(DATE arg) -2024-08-08 00:28:19 - Timestamp now() -2024-08-08 00:28:19 - nth_valueANY value, INTEGER nth -2024-08-08 00:28:19 - nullif(arg0, arg1) -2024-08-08 00:28:19 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-08 00:28:19 - OffsetDateTime offset datetime -2024-08-08 00:28:19 - OffsetDateTime offset_datetime -2024-08-08 00:28:19 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-08 00:28:19 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-08 00:28:19 - Double percent_rank([arg0[, ...]]) -2024-08-08 00:28:19 - percentile_cont(NUMERIC arg) -2024-08-08 00:28:19 - percentile_disc(NUMERIC arg) -2024-08-08 00:28:19 - Double pi -2024-08-08 00:28:19 - Integer position(STRING pattern in STRING string) -2024-08-08 00:28:19 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-08 00:28:19 - Integer quarter(DATE arg) -2024-08-08 00:28:19 - Double radians(NUMERIC arg) -2024-08-08 00:28:19 - Double rand([INTEGER seed]) -2024-08-08 00:28:19 - Long rank([arg0[, ...]]) -2024-08-08 00:28:19 - String repeat(STRING string, INTEGER times) -2024-08-08 00:28:19 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-08 00:28:19 - String right(STRING string, INTEGER length) -2024-08-08 00:28:19 - round(NUMERIC number[, INTEGER places]) -2024-08-08 00:28:19 - Long row_number() -2024-08-08 00:28:19 - Long rownum() -2024-08-08 00:28:19 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 00:28:19 - String rtrim(STRING string) -2024-08-08 00:28:19 - Integer second(TIME arg) -2024-08-08 00:28:19 - Integer sign(NUMERIC arg) -2024-08-08 00:28:19 - Double sin(NUMERIC arg) -2024-08-08 00:28:19 - Double sinh(NUMERIC arg) -2024-08-08 00:28:19 - String soundex(arg) -2024-08-08 00:28:19 - String space(INTEGER arg) -2024-08-08 00:28:19 - Object sql -2024-08-08 00:28:19 - Double sqrt(NUMERIC arg) -2024-08-08 00:28:19 - Double stddev_pop(NUMERIC arg) -2024-08-08 00:28:19 - Double stddev_samp(NUMERIC arg) -2024-08-08 00:28:19 - String str(arg) -2024-08-08 00:28:19 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-08 00:28:19 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-08 00:28:19 - sum(arg) -2024-08-08 00:28:19 - Timestamp sysdate -2024-08-08 00:28:19 - Double tan(NUMERIC arg) -2024-08-08 00:28:19 - Double tanh(NUMERIC arg) -2024-08-08 00:28:19 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 00:28:19 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 00:28:19 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-08 00:28:19 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-08 00:28:19 - trunc( ... ) -2024-08-08 00:28:19 - truncate( ... ) -2024-08-08 00:28:19 - String upper(STRING string) -2024-08-08 00:28:19 - Double var_pop(NUMERIC arg) -2024-08-08 00:28:19 - Double var_samp(NUMERIC arg) -2024-08-08 00:28:19 - Integer week(DATE arg) -2024-08-08 00:28:19 - Integer year(DATE arg) -2024-08-08 00:28:19 - Starting QueryInterpretationCache(2048) -2024-08-08 00:28:19 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:28:19 - Configured EntityCopyObserver strategy: disallow -2024-08-08 00:28:19 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:28:19 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:28:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-08 00:28:20 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:28:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:28:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-08 00:28:20 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:28:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:28:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-08 00:28:20 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:28:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:28:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-08 00:28:20 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:28:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:28:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-08 00:28:20 - Starting post-init callbacks -2024-08-08 00:28:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-08 00:28:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-08 00:28:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-08 00:28:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-08 00:28:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-08 00:28:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-08 00:28:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-08 00:28:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-08 00:28:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-08 00:28:20 - Created new SQL alias : ba1_0 -2024-08-08 00:28:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-08 00:28:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@38dc1c50] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-08 00:28:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-08 00:28:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-08 00:28:20 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-08 00:28:20 - Version select: select id from bill_action where id=? -2024-08-08 00:28:20 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-08 00:28:20 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-08 00:28:20 - Delete (0): delete from bill_action where id=? -2024-08-08 00:28:20 - Created new SQL alias : ma1_0 -2024-08-08 00:28:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-08 00:28:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@435e224d] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-08 00:28:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-08 00:28:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-08 00:28:20 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-08 00:28:20 - Version select: select id from member_action where id=? -2024-08-08 00:28:20 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-08 00:28:20 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-08 00:28:20 - Delete (0): delete from member_action where id=? -2024-08-08 00:28:20 - Created new SQL alias : e1_0 -2024-08-08 00:28:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-08 00:28:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-08 00:28:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-08 00:28:20 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-08 00:28:20 - Version select: select id from event where id=? -2024-08-08 00:28:20 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-08 00:28:20 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-08 00:28:20 - Delete (0): delete from event where id=? -2024-08-08 00:28:20 - Created new SQL alias : a1_0 -2024-08-08 00:28:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-08 00:28:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6c75c5e8] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-08 00:28:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-08 00:28:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-08 00:28:20 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-08 00:28:20 - Version select: select id from action where id=? -2024-08-08 00:28:20 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-08 00:28:20 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-08 00:28:20 - Delete (0): delete from action where id=? -2024-08-08 00:28:20 - Created new SQL alias : es1_0 -2024-08-08 00:28:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-08 00:28:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@39c93af6] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-08 00:28:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-08 00:28:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-08 00:28:20 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-08 00:28:20 - Version select: select id from event_step where id=? -2024-08-08 00:28:20 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-08 00:28:20 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-08 00:28:20 - Delete (0): delete from event_step where id=? -2024-08-08 00:28:20 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-08 00:28:20 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@34647f58] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@3bede349] -2024-08-08 00:28:20 - Checking 0 named HQL queries -2024-08-08 00:28:20 - Checking 0 named SQL queries -2024-08-08 00:28:20 - - drop table if exists action cascade -2024-08-08 00:28:20 - - drop table if exists bill_action cascade -2024-08-08 00:28:20 - - drop table if exists event cascade -2024-08-08 00:28:20 - - drop table if exists event_step cascade -2024-08-08 00:28:20 - - drop table if exists member_action cascade -2024-08-08 00:28:20 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-08 00:28:20 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-08 00:28:20 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-08 00:28:20 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-08 00:28:20 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-08 00:28:20 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-08 00:28:20 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-08 00:28:20 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-08 00:28:20 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-08 00:28:20 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@5b8ba1d2 -2024-08-08 00:28:20 - Registering SessionFactory: 46657f3b-4c39-414c-bf77-12c106e46dd7 (<unnamed>) -2024-08-08 00:28:20 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-08 00:28:20 - Instantiated SessionFactory -2024-08-08 00:28:20 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'actionService' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-08 00:28:20 - Initializing JpaMetamodelMappingContext… -2024-08-08 00:28:20 - Finished initializing JpaMetamodelMappingContext -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - Statistics initialized [enabled=false] -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-08 00:28:20 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-08 00:28:20 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - Looking up named query BillAction.findByAction_Event -2024-08-08 00:28:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:28:20 - Did not find named query BillAction.findByAction_Event -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - Looking up named query BillAction.findByAction_Id -2024-08-08 00:28:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:28:20 - Did not find named query BillAction.findByAction_Id -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-08 00:28:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:28:20 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-08 00:28:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:28:20 - Did not find named query MemberAction.findAllByEvent.count -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-08 00:28:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:28:20 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(766762861761708)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(766762861761708)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(766762861761708)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(766762861761708)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(766762861761708).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:28:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:28:20 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-08 00:28:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:28:20 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:28:20 - Looking up named query MemberAction.findByAction -2024-08-08 00:28:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:28:20 - Did not find named query MemberAction.findByAction -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 00:28:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:28:20 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 00:28:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:28:20 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:28:20 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-08 00:28:20 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 00:28:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:28:20 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 00:28:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:28:20 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-08 00:28:20 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 00:28:20 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-08 00:28:20 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 00:28:20 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 82 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 82 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 82 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 84 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 82 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 82 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 82 -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'eventRepository' -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - [javax.management.remote.rmi.RMIConnectionImpl@74ef0443: connectionId=rmi://127.0.0.1 3] closing. -2024-08-08 00:28:20 - [javax.management.remote.rmi.RMIConnectionImpl@74ef0443: connectionId=rmi://127.0.0.1 3] closed. -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - Looking up named query Event.findByToken -2024-08-08 00:28:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:28:20 - Did not find named query Event.findByToken -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-08 00:28:20 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-08 00:28:20 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:28:20 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'billActionService' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'actionRepository' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:28:20 - Did not find named query Action.findLastByEvent.count -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-08 00:28:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:28:20 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:28:20 - Looking up named query Action.findByIdAndEvent -2024-08-08 00:28:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:28:20 - Did not find named query Action.findByIdAndEvent -2024-08-08 00:28:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:28:20 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-08 00:28:20 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-08 00:28:20 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-08 00:28:20 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'eventService' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-08 00:28:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-08 00:28:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-08 00:28:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-08 00:28:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-08 00:28:20 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'memberActionService' -2024-08-08 00:28:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-08 00:28:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:28:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-08 00:28:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 00:28:20 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-08 00:28:20 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'actionController' -2024-08-08 00:28:20 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'billActionController' -2024-08-08 00:28:20 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'eventController' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'authService' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-08 00:28:20 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-08 00:28:20 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'memberActionController' -2024-08-08 00:28:20 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-08 00:28:20 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-08 00:28:20 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:28:20 - Loaded expression factory via original TCCL -2024-08-08 00:28:20 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-08 00:28:20 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-08 00:28:20 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:28:20 - Trying to load META-INF/validation.xml via user class loader -2024-08-08 00:28:20 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:28:20 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:28:20 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:28:20 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:28:20 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:28:20 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:28:20 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:28:20 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:28:20 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:28:20 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:28:20 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'error' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-08 00:28:20 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@372b0d86' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@372b0d86' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-08 00:28:20 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-08 00:28:20 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-08 00:28:20 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-08 00:28:20 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:28:20 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:28:20 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-08 00:28:20 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:28:20 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:28:20 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'localeResolver' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'themeResolver' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-08 00:28:20 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:28:20 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:28:20 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:28:20 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-08 00:28:20 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-08 00:28:20 - - s.h.p.EventController: - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) -2024-08-08 00:28:20 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-08 00:28:20 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-08 00:28:20 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-08 00:28:20 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:28:20 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-08 00:28:20 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:28:20 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:28:20 - 'beanNameHandlerMapping' {} -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-08 00:28:20 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:28:20 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'messageConverters' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-08 00:28:20 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-08 00:28:20 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:28:20 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:28:20 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'pageModule' -2024-08-08 00:28:20 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:28:20 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 00:28:20 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-08 00:28:20 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-08 00:28:20 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:28:20 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:28:20 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:28:20 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-08 00:28:20 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:28:20 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-08 00:28:20 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'sortResolver' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-08 00:28:20 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-08 00:28:20 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-08 00:28:20 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-08 00:28:20 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-08 00:28:20 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-08 00:28:20 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:28:20 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-08 00:28:20 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 00:28:20 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@372b0d86' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-08 00:28:20 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'transactionManager' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-08 00:28:20 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-08 00:28:20 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:28:20 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-08 00:28:20 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:28:20 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-08 00:28:20 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-08 00:28:20 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-08 00:28:20 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-08 00:28:20 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-08 00:28:20 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-08 00:28:20 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-08 00:28:20 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-08 00:28:20 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-08 00:28:20 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-08 00:28:20 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-08 00:28:20 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-08 00:28:20 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@372b0d86' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-08 00:28:20 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:28:20 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-08 00:28:20 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-08 00:28:20 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-08 00:28:20 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-08 00:28:20 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-08 00:28:20 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-08 00:28:20 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-08 00:28:20 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-08 00:28:20 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-08 00:28:20 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 00:28:20 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-08 00:28:20 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:28:20 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:28:20 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 00:28:20 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-08 00:28:20 - Using SLF4J as the default logging framework -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-08 00:28:20 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-08 00:28:20 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-08 00:28:20 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-08 00:28:20 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-08 00:28:20 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'observedAspect' -2024-08-08 00:28:20 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-08 00:28:20 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-08 00:28:20 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 00:28:20 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-08 00:28:20 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 00:28:20 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-08 00:28:20 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-08 00:28:20 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-08 00:28:20 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-08 00:28:20 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-08 00:28:20 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-08 00:28:20 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-08 00:28:20 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 00:28:20 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:28:20 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:28:20 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-08 00:28:20 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-08 00:28:20 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-08 00:28:20 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:28:20 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:28:20 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-08 00:28:20 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-08 00:28:20 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-08 00:28:20 - Registering beans for JMX exposure on startup -2024-08-08 00:28:20 - Auto-detecting user-defined JMX MBeans -2024-08-08 00:28:20 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-08 00:28:20 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-08 00:28:20 - Starting beans in phase -2147483647 -2024-08-08 00:28:20 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-08 00:28:20 - Starting beans in phase 2147481599 -2024-08-08 00:28:20 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-08 00:28:20 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-08 00:28:20 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-08 00:28:20 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-08 00:28:20 - Tomcat started on port 8080 (http) with context path '/' -2024-08-08 00:28:20 - Successfully started bean 'webServerStartStop' -2024-08-08 00:28:20 - Starting beans in phase 2147482623 -2024-08-08 00:28:20 - Successfully started bean 'webServerGracefulShutdown' -2024-08-08 00:28:20 - Starting beans in phase 2147483647 -2024-08-08 00:28:20 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-08 00:28:20 - Started HaengdongApplication in 2.494 seconds (process running for 2.72) -2024-08-08 00:28:20 - Application availability state LivenessState changed to CORRECT -2024-08-08 00:28:20 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 82 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 84 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 82 -2024-08-08 00:28:20 - RMI TCP Connection(1)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - [javax.management.remote.rmi.RMIConnectionImpl@4e0fbb52: connectionId=rmi://127.0.0.1 4] closing. -2024-08-08 00:28:20 - [javax.management.remote.rmi.RMIConnectionImpl@4e0fbb52: connectionId=rmi://127.0.0.1 4] closed. -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:59892] -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:59893] -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 84 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 84 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - [javax.management.remote.rmi.RMIConnectionImpl@54852f23: connectionId=rmi://127.0.0.1 6] closing. -2024-08-08 00:28:20 - [javax.management.remote.rmi.RMIConnectionImpl@54852f23: connectionId=rmi://127.0.0.1 6] closed. -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 84 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:20 - [javax.management.remote.rmi.RMIConnectionImpl@f150dfa: connectionId=rmi://127.0.0.1 5] closing. -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - [javax.management.remote.rmi.RMIConnectionImpl@f150dfa: connectionId=rmi://127.0.0.1 5] closed. -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - [javax.management.remote.rmi.RMIConnectionImpl@148cc733: connectionId=rmi://127.0.0.1 7] closing. -2024-08-08 00:28:20 - [javax.management.remote.rmi.RMIConnectionImpl@148cc733: connectionId=rmi://127.0.0.1 7] closed. -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 84 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 82 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - [javax.management.remote.rmi.RMIConnectionImpl@d30712d: connectionId=rmi://127.0.0.1 8] closing. -2024-08-08 00:28:20 - [javax.management.remote.rmi.RMIConnectionImpl@d30712d: connectionId=rmi://127.0.0.1 8] closed. -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 82 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 84 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:20 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 84 -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:20 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - [javax.management.remote.rmi.RMIConnectionImpl@21c8b374: connectionId=rmi://127.0.0.1 9] closing. -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:21 - [javax.management.remote.rmi.RMIConnectionImpl@21c8b374: connectionId=rmi://127.0.0.1 9] closed. -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - [javax.management.remote.rmi.RMIConnectionImpl@36704cd1: connectionId=rmi://127.0.0.1 10] closing. -2024-08-08 00:28:21 - [javax.management.remote.rmi.RMIConnectionImpl@36704cd1: connectionId=rmi://127.0.0.1 10] closed. -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 84 -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 84 -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-08 00:28:21 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-08 00:28:21 - Fetching JDBC Connection from DataSource -2024-08-08 00:28:21 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-08 00:28:21 - Initializing Servlet 'dispatcherServlet' -2024-08-08 00:28:21 - Detected StandardServletMultipartResolver -2024-08-08 00:28:21 - Detected AcceptHeaderLocaleResolver -2024-08-08 00:28:21 - Detected FixedThemeResolver -2024-08-08 00:28:21 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@7e3ccedb -2024-08-08 00:28:21 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@5920c4ed -2024-08-08 00:28:21 - Fetching JDBC Connection from DataSource -2024-08-08 00:28:21 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-08 00:28:21 - Completed initialization in 1 ms -2024-08-08 00:28:21 - RMI TCP Connection(2)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - [javax.management.remote.rmi.RMIConnectionImpl@17913585: connectionId=rmi://127.0.0.1 11] closing. -2024-08-08 00:28:21 - [javax.management.remote.rmi.RMIConnectionImpl@17913585: connectionId=rmi://127.0.0.1 11] closed. -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 82 -2024-08-08 00:28:21 - RMI TCP Connection(3)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:28:21 - [javax.management.remote.rmi.RMIConnectionImpl@67c9ad30: connectionId=rmi://127.0.0.1 12] closing. -2024-08-08 00:28:21 - [javax.management.remote.rmi.RMIConnectionImpl@67c9ad30: connectionId=rmi://127.0.0.1 12] closed. -2024-08-08 00:28:26 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.13647499926123979394/conf/jaspic-providers.xml] -2024-08-08 00:28:26 - OPTIONS "/api/events", parameters={} -2024-08-08 00:28:26 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:28:26 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:28:26 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:28:26 - Completed 200 OK -2024-08-08 00:28:26 - POST "/api/events", parameters={} -2024-08-08 00:28:26 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:28:26 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:28:26 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=토다리, password=0987]] -2024-08-08 00:28:26 - Found thread-bound EntityManager [SessionImpl(208379032<open>)] for JPA transaction -2024-08-08 00:28:26 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-08 00:28:26 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:28:26 - begin -2024-08-08 00:28:26 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@57789cb5] -2024-08-08 00:28:26 - Found thread-bound EntityManager [SessionImpl(208379032<open>)] for JPA transaction -2024-08-08 00:28:26 - Participating in existing transaction -2024-08-08 00:28:26 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-08 00:28:26 - Executing identity-insert immediately -2024-08-08 00:28:26 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-08 00:28:26 - Initializer list is empty -2024-08-08 00:28:26 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@68254095 -2024-08-08 00:28:26 - Extracted JDBC value [0] - [1] -2024-08-08 00:28:26 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@77457b3 -2024-08-08 00:28:26 - Initiating transaction commit -2024-08-08 00:28:26 - Committing JPA transaction on EntityManager [SessionImpl(208379032<open>)] -2024-08-08 00:28:26 - committing -2024-08-08 00:28:26 - Processing flush-time cascades -2024-08-08 00:28:26 - Dirty checking collections -2024-08-08 00:28:26 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-08 00:28:26 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-08 00:28:26 - Listing entities: -2024-08-08 00:28:26 - server.haengdong.domain.event.Event{password=0987, name=토다리, id=1, token=044cbb6b-044b-45fd-8582-1e93342e5a83} -2024-08-08 00:28:26 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:28:26 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:28:26 - Writing [EventResponse[eventId=044cbb6b-044b-45fd-8582-1e93342e5a83]] -2024-08-08 00:28:26 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:28:26 - Completed 200 OK -2024-08-08 00:28:49 - RMI TCP Connection(3)-127.0.0.1: (port 59890) connection closed -2024-08-08 00:28:49 - RMI TCP Connection(2)-127.0.0.1: (port 59890) connection closed -2024-08-08 00:28:49 - RMI TCP Connection(1)-127.0.0.1: (port 59890) connection closed -2024-08-08 00:28:49 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=59891,localport=59890] -2024-08-08 00:28:49 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=59892,localport=59890] -2024-08-08 00:28:49 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=59893,localport=59890] -2024-08-08 00:28:49 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=59892,localport=59890] -2024-08-08 00:28:49 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=59891,localport=59890] -2024-08-08 00:28:49 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=59893,localport=59890] -2024-08-08 00:28:49 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:28:49 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:28:53 - OPTIONS "/api/events/044cbb6b-044b-45fd-8582-1e93342e5a83/bill-actions", parameters={} -2024-08-08 00:28:53 - Mapped to server.haengdong.presentation.BillActionController#saveAllBillAction(String, BillActionsSaveRequest) -2024-08-08 00:28:53 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-08 00:28:53 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:28:53 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-08 00:28:53 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-08 00:28:53 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:28:53 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:28:53 - Exiting from "ERROR" dispatch, status 500 -2024-08-08 00:29:00 - OPTIONS "/api/events/044cbb6b-044b-45fd-8582-1e93342e5a83/bill-actions", parameters={} -2024-08-08 00:29:00 - Mapped to server.haengdong.presentation.BillActionController#saveAllBillAction(String, BillActionsSaveRequest) -2024-08-08 00:29:00 - Failed to complete request: server.haengdong.exception.AuthenticationException -2024-08-08 00:29:00 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: server.haengdong.exception.AuthenticationException] with root cause -server.haengdong.exception.AuthenticationException: null - at server.haengdong.infrastructure.auth.AuthenticationExtractor.extract(AuthenticationExtractor.java:13) - at server.haengdong.config.AdminInterceptor.validateToken(AdminInterceptor.java:37) - at server.haengdong.config.AdminInterceptor.preHandle(AdminInterceptor.java:31) - at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:146) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1084) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doOptions(FrameworkServlet.java:950) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:599) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:107) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:29:00 - "ERROR" dispatch for OPTIONS "/error", parameters={} -2024-08-08 00:29:00 - Mapped to org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController#error(HttpServletRequest) -2024-08-08 00:29:00 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:29:00 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:29:00 - Exiting from "ERROR" dispatch, status 500 -2024-08-08 00:29:12 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:59902] -2024-08-08 00:29:12 - RMI TCP Connection(4)-127.0.0.1: (port 59890) op = 80 -2024-08-08 00:29:12 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:29:12 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:29:12 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:29:12 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:29:12 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1ecf0ac6 -2024-08-08 00:29:19 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:29:19 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:29:20 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-08 00:29:20 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Thu Aug 08 00:28:18 KST 2024 -2024-08-08 00:29:20 - Stopping beans in phase 2147483647 -2024-08-08 00:29:20 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-08 00:29:20 - Stopping beans in phase 2147482623 -2024-08-08 00:29:20 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-08 00:29:20 - Stopping beans in phase 2147481599 -2024-08-08 00:29:20 - Bean 'webServerStartStop' completed its stop procedure -2024-08-08 00:29:20 - Stopping beans in phase -2147483647 -2024-08-08 00:29:20 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-08 00:29:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-08 00:29:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-08 00:29:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-08 00:29:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-08 00:29:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-08 00:29:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-08 00:29:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-08 00:29:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-08 00:29:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-08 00:29:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-08 00:29:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-08 00:29:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-08 00:29:20 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-08 00:29:20 - Unregistering JMX-exposed beans on shutdown -2024-08-08 00:29:20 - Unregistering JMX-exposed beans -2024-08-08 00:29:20 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-08 00:29:20 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 00:29:20 - HHH000031: Closing -2024-08-08 00:29:20 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@2891b8f9] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@3bede349] -2024-08-08 00:29:20 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-08 00:29:20 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-08 00:29:20 - HikariPool-1 - Shutdown initiated... -2024-08-08 00:29:20 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:29:20 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:29:20 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:29:20 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:29:20 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:29:20 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:29:20 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:29:20 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:29:20 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:29:20 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:29:20 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:29:20 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-08 00:29:20 - HikariPool-1 - Shutdown completed. -2024-08-08 00:29:20 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-08 00:29:22 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-08 00:29:22 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-08 00:29:22 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:29:22 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:29:22 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:29:22 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:29:22 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:29:22 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:29:22 - Loaded expression factory via original TCCL -2024-08-08 00:29:22 - Starting HaengdongApplication using Java 17.0.12 with PID 87067 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-08 00:29:22 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-08 00:29:22 - No active profile set, falling back to 1 default profile: "default" -2024-08-08 00:29:22 - Loading source class server.haengdong.HaengdongApplication -2024-08-08 00:29:22 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-08 00:29:22 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-08 00:29:22 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:29:22 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:29:22 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:29:22 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:29:22 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:29:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-08 00:29:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-08 00:29:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-08 00:29:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-08 00:29:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-08 00:29:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-08 00:29:22 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 00:29:22 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 00:29:22 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 00:29:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-08 00:29:22 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 00:29:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-08 00:29:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-08 00:29:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-08 00:29:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-08 00:29:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-08 00:29:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-08 00:29:22 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-08 00:29:22 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-08 00:29:22 - Scanning for JPA repositories in packages server.haengdong. -2024-08-08 00:29:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 00:29:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 00:29:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 00:29:22 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 00:29:22 - Finished Spring Data repository scanning in 15 ms. Found 4 JPA repository interfaces. -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-08 00:29:22 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-08 00:29:22 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-08 00:29:22 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 00:29:22 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-08 00:29:22 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 00:29:22 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 00:29:22 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-08 00:29:22 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-08 00:29:22 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@1d6a8386] -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-08 00:29:22 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-08 00:29:22 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 00:29:22 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-08 00:29:22 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-08 00:29:22 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-08 00:29:22 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-08 00:29:22 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-08 00:29:22 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-08 00:29:22 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:29:22 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:29:22 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-08 00:29:22 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 00:29:22 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 00:29:22 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 00:29:22 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:29:22 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:29:22 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:29:22 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-08 00:29:22 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 00:29:22 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 00:29:22 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-08 00:29:22 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-08 00:29:22 - Tomcat initialized with port 8080 (http) -2024-08-08 00:29:22 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [INITIALIZING] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [INITIALIZED] -2024-08-08 00:29:22 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-08 00:29:22 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-08 00:29:22 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [INITIALIZING] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [INITIALIZED] -2024-08-08 00:29:22 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-08 00:29:22 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-08 00:29:22 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-08 00:29:22 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-08 00:29:22 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-08 00:29:22 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-08 00:29:22 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [STARTING_PREP] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [STARTING] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [STARTED] -2024-08-08 00:29:22 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-08 00:29:22 - Starting service [Tomcat] -2024-08-08 00:29:22 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-08 00:29:22 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-08 00:29:22 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-08 00:29:22 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:29:22 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:29:22 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:29:22 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:29:22 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:29:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-08 00:29:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-08 00:29:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-08 00:29:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-08 00:29:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-08 00:29:22 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [INITIALIZING] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [INITIALIZED] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [STARTING_PREP] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [INITIALIZING] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [INITIALIZED] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [STARTING_PREP] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [STARTING] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [STARTED] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [STARTING] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [STARTED] -2024-08-08 00:29:22 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:29:22 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:29:22 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:29:22 - Starting this Loader -2024-08-08 00:29:22 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:29:22 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:29:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:29:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:29:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:29:22 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:29:22 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:29:22 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:29:22 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:29:22 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:29:22 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:29:22 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:29:22 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:29:22 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:29:22 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:29:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:29:22 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:29:22 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-08 00:29:22 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [INITIALIZING] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [INITIALIZED] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [STARTING_PREP] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [STARTING] -2024-08-08 00:29:22 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [STARTED] -2024-08-08 00:29:22 - Initializing Spring embedded WebApplicationContext -2024-08-08 00:29:22 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-08 00:29:22 - Root WebApplicationContext: initialization completed in 624 ms -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:29:22 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 00:29:22 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-08 00:29:22 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-08 00:29:22 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-08 00:29:22 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:29:23 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-08 00:29:23 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:29:23 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-08 00:29:23 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:29:23 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:29:23 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:29:23 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:29:23 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-08 00:29:23 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'h2Console' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 00:29:23 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'dataSource' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-08 00:29:23 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:29:23 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:29:23 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-08 00:29:23 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-08 00:29:23 - HikariPool-1 - configuration: -2024-08-08 00:29:23 - allowPoolSuspension.............false -2024-08-08 00:29:23 - autoCommit......................true -2024-08-08 00:29:23 - catalog.........................none -2024-08-08 00:29:23 - connectionInitSql...............none -2024-08-08 00:29:23 - connectionTestQuery.............none -2024-08-08 00:29:23 - connectionTimeout...............30000 -2024-08-08 00:29:23 - dataSource......................none -2024-08-08 00:29:23 - dataSourceClassName.............none -2024-08-08 00:29:23 - dataSourceJNDI..................none -2024-08-08 00:29:23 - dataSourceProperties............{password=<masked>} -2024-08-08 00:29:23 - driverClassName................."org.h2.Driver" -2024-08-08 00:29:23 - exceptionOverrideClassName......none -2024-08-08 00:29:23 - healthCheckProperties...........{} -2024-08-08 00:29:23 - healthCheckRegistry.............none -2024-08-08 00:29:23 - idleTimeout.....................600000 -2024-08-08 00:29:23 - initializationFailTimeout.......1 -2024-08-08 00:29:23 - isolateInternalQueries..........false -2024-08-08 00:29:23 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-08 00:29:23 - keepaliveTime...................0 -2024-08-08 00:29:23 - leakDetectionThreshold..........0 -2024-08-08 00:29:23 - maxLifetime.....................1800000 -2024-08-08 00:29:23 - maximumPoolSize.................10 -2024-08-08 00:29:23 - metricRegistry..................none -2024-08-08 00:29:23 - metricsTrackerFactory...........none -2024-08-08 00:29:23 - minimumIdle.....................10 -2024-08-08 00:29:23 - password........................<masked> -2024-08-08 00:29:23 - poolName........................"HikariPool-1" -2024-08-08 00:29:23 - readOnly........................false -2024-08-08 00:29:23 - registerMbeans..................false -2024-08-08 00:29:23 - scheduledExecutor...............none -2024-08-08 00:29:23 - schema..........................none -2024-08-08 00:29:23 - threadFactory...................internal -2024-08-08 00:29:23 - transactionIsolation............default -2024-08-08 00:29:23 - username........................"sa" -2024-08-08 00:29:23 - validationTimeout...............5000 -2024-08-08 00:29:23 - HikariPool-1 - Starting... -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:59910] -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 84 -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:23 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:23 - [javax.management.remote.rmi.RMIConnectionImpl@662d1a66: connectionId=rmi://127.0.0.1 1] closing. -2024-08-08 00:29:23 - [javax.management.remote.rmi.RMIConnectionImpl@662d1a66: connectionId=rmi://127.0.0.1 1] closed. -2024-08-08 00:29:23 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-08 00:29:23 - HikariPool-1 - Start completed. -2024-08-08 00:29:23 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-08 00:29:23 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-08 00:29:23 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:29:23 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-08 00:29:23 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:29:23 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:29:23 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:29:23 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-08 00:29:23 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-08 00:29:23 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-08 00:29:23 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 00:29:23 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-08 00:29:23 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-08 00:29:23 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-08 00:29:23 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 00:29:23 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 00:29:23 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 00:29:23 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 00:29:23 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 00:29:23 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 00:29:23 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 00:29:23 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 00:29:23 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 00:29:23 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 00:29:23 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-08 00:29:23 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-08 00:29:23 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 00:29:23 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-08 00:29:23 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-08 00:29:23 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-08 00:29:23 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 00:29:23 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 00:29:23 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 00:29:23 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 00:29:23 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 00:29:23 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 00:29:23 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 00:29:23 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 00:29:23 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 00:29:23 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 00:29:23 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-08 00:29:23 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-08 00:29:23 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:29:23 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:29:23 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:29:23 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@23469199] to [INITIALIZING] -2024-08-08 00:29:23 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@23469199] to [INITIALIZED] -2024-08-08 00:29:23 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@23469199] to [STARTING_PREP] -2024-08-08 00:29:23 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@23469199] to [STARTING] -2024-08-08 00:29:23 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@23469199] to [STARTED] -2024-08-08 00:29:23 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:29:23 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:29:23 - Filter 'requestContextFilter' configured for use -2024-08-08 00:29:23 - Filter 'webMvcObservationFilter' configured for use -2024-08-08 00:29:23 - Filter 'characterEncodingFilter' configured for use -2024-08-08 00:29:23 - Filter 'formContentFilter' configured for use -2024-08-08 00:29:23 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-08 00:29:23 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-08 00:29:23 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:29:23 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:29:23 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:29:23 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:29:23 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:29:23 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:29:23 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:29:23 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:29:23 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:29:23 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:29:23 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:29:23 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:29:23 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:29:23 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:29:23 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:29:23 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-08 00:29:23 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-08 00:29:23 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:29:23 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:29:23 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:29:23 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:29:23 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:29:23 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:29:23 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:29:23 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:29:23 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:29:23 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:29:23 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-08 00:29:23 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-08 00:29:23 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [STARTING_PREP] -2024-08-08 00:29:23 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [STARTING] -2024-08-08 00:29:23 - Registered host [localhost] -2024-08-08 00:29:23 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-08 00:29:23 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-08 00:29:23 - Register Context [] for service [StandardService[Tomcat]] -2024-08-08 00:29:23 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-08 00:29:23 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [STARTED] -2024-08-08 00:29:23 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-08 00:29:23 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 00:29:23 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-08 00:29:23 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 00:29:23 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-08 00:29:23 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:29:23 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:29:23 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-08 00:29:23 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-08 00:29:23 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:29:23 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:29:23 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-08 00:29:23 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-08 00:29:23 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-08 00:29:23 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-08 00:29:23 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-08 00:29:23 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-08 00:29:23 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-08 00:29:23 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-08 00:29:23 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-08 00:29:23 - HHH000206: 'hibernate.properties' not found -2024-08-08 00:29:23 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-08 00:29:23 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-08 00:29:23 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-08 00:29:23 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-08 00:29:23 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 00:29:23 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 00:29:23 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-08 00:29:23 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-08 00:29:23 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-08 00:29:23 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 00:29:23 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-08 00:29:23 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-08 00:29:23 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 00:29:23 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-08 00:29:23 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-08 00:29:23 - HHH000026: Second-level cache disabled -2024-08-08 00:29:23 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-08 00:29:23 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-08 00:29:23 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-08 00:29:23 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-08 00:29:23 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-08 00:29:23 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-08 00:29:23 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-08 00:29:23 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-08 00:29:23 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-08 00:29:23 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-08 00:29:23 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-08 00:29:23 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-08 00:29:23 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-08 00:29:23 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-08 00:29:23 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-08 00:29:23 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-08 00:29:23 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-08 00:29:23 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-08 00:29:23 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-08 00:29:23 - Adding type registration image -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-08 00:29:23 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-08 00:29:23 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-08 00:29:23 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-08 00:29:23 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-08 00:29:23 - Adding type registration short -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-08 00:29:23 - Adding type registration short -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-08 00:29:23 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-08 00:29:23 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-08 00:29:23 - Adding type registration int -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-08 00:29:23 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-08 00:29:23 - Adding type registration long -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-08 00:29:23 - Adding type registration long -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-08 00:29:23 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-08 00:29:23 - Adding type registration float -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-08 00:29:23 - Adding type registration float -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-08 00:29:23 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-08 00:29:23 - Adding type registration double -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-08 00:29:23 - Adding type registration double -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-08 00:29:23 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-08 00:29:23 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-08 00:29:23 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-08 00:29:23 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 00:29:23 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 00:29:23 - Adding type registration character -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:29:23 - Adding type registration char -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:29:23 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:29:23 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-08 00:29:23 - Adding type registration string -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 00:29:23 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 00:29:23 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 00:29:23 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 00:29:23 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 00:29:23 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 00:29:23 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-08 00:29:23 - Adding type registration text -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-08 00:29:23 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-08 00:29:23 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-08 00:29:23 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-08 00:29:23 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 00:29:23 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 00:29:23 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 00:29:23 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 00:29:23 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-08 00:29:23 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 00:29:23 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 00:29:23 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-08 00:29:23 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-08 00:29:23 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-08 00:29:23 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 00:29:23 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 00:29:23 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-08 00:29:23 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-08 00:29:23 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-08 00:29:23 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-08 00:29:23 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 00:29:23 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 00:29:23 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 00:29:23 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 00:29:23 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 00:29:23 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 00:29:23 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 00:29:23 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-08 00:29:23 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-08 00:29:23 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-08 00:29:23 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-08 00:29:23 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-08 00:29:23 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-08 00:29:23 - Adding type registration date -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-08 00:29:23 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-08 00:29:23 - Adding type registration time -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-08 00:29:23 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-08 00:29:23 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 00:29:23 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 00:29:23 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 00:29:23 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 00:29:23 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 00:29:23 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 00:29:23 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-08 00:29:23 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-08 00:29:23 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 00:29:23 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 00:29:23 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 00:29:23 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 00:29:23 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 00:29:23 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-08 00:29:23 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-08 00:29:23 - Adding type registration class -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-08 00:29:23 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-08 00:29:23 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-08 00:29:23 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-08 00:29:23 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-08 00:29:23 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-08 00:29:23 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-08 00:29:23 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-08 00:29:23 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-08 00:29:23 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-08 00:29:23 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-08 00:29:23 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-08 00:29:23 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-08 00:29:23 - Adding type registration url -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-08 00:29:23 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-08 00:29:23 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-08 00:29:23 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-08 00:29:23 - Adding type registration object -> org.hibernate.type.JavaObjectType@570ed9c -2024-08-08 00:29:23 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@570ed9c -2024-08-08 00:29:23 - Adding type registration null -> org.hibernate.type.NullType@1b8ee69d -2024-08-08 00:29:23 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@2b400bd0 -2024-08-08 00:29:23 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@fceab5d -2024-08-08 00:29:23 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@79445efb -2024-08-08 00:29:23 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@1592e540 -2024-08-08 00:29:23 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@3e2772a9 -2024-08-08 00:29:23 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@4449b273 -2024-08-08 00:29:23 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@1fa18f87 -2024-08-08 00:29:23 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@1d9bd1d6 -2024-08-08 00:29:23 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@37364634] into BootstrapContext; was [null] -2024-08-08 00:29:23 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@37364634) [was null] -2024-08-08 00:29:23 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@4f4d05b3] into BootstrapContext; was [null] -2024-08-08 00:29:23 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@2bd4780c] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@2c154508] -2024-08-08 00:29:23 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-08 00:29:23 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-08 00:29:23 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-08 00:29:23 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-08 00:29:23 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-08 00:29:23 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-08 00:29:23 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-08 00:29:23 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@37364634] -2024-08-08 00:29:23 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@37364634] -2024-08-08 00:29:23 - HikariPool-1 - After adding stats (total=7, active=1, idle=6, waiting=0) -2024-08-08 00:29:23 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 00:29:23 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 00:29:23 - JDBC version : 4.2 -2024-08-08 00:29:23 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-08 00:29:23 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-08 00:29:23 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-08 00:29:23 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-08 00:29:23 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-08 00:29:23 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-08 00:29:23 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 00:29:23 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 00:29:23 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-08 00:29:23 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-08 00:29:23 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 00:29:23 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 00:29:23 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@6738e8b2] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@609ad016] -2024-08-08 00:29:23 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-08 00:29:23 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-08 00:29:23 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-08 00:29:23 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-08 00:29:23 - Import with entity name Action -2024-08-08 00:29:23 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-08 00:29:23 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:29:23 - Binding column: AnnotatedColumn() -2024-08-08 00:29:23 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:29:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:29:23 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:29:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-08 00:29:23 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-08 00:29:23 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-08 00:29:23 - building BasicValue for id -2024-08-08 00:29:23 - Skipping column re-registration: action.id -2024-08-08 00:29:23 - Building property id -2024-08-08 00:29:23 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:29:23 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:29:23 - Binding column: AnnotatedColumn() -2024-08-08 00:29:23 - Building property event -2024-08-08 00:29:23 - Binding column: AnnotatedColumn() -2024-08-08 00:29:23 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 00:29:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-08 00:29:23 - building BasicValue for sequence -2024-08-08 00:29:23 - Skipping column re-registration: action.sequence -2024-08-08 00:29:23 - Building property sequence -2024-08-08 00:29:23 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:29:23 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-08 00:29:23 - Import with entity name BillAction -2024-08-08 00:29:23 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-08 00:29:23 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:29:23 - Binding column: AnnotatedColumn() -2024-08-08 00:29:23 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:29:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:29:23 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:29:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-08 00:29:23 - building BasicValue for id -2024-08-08 00:29:23 - Skipping column re-registration: bill_action.id -2024-08-08 00:29:23 - Building property id -2024-08-08 00:29:23 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:29:23 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:29:23 - Binding column: AnnotatedColumn() -2024-08-08 00:29:23 - Building property action -2024-08-08 00:29:23 - Binding column: AnnotatedColumn() -2024-08-08 00:29:23 - MetadataSourceProcessor property price with lazy=false -2024-08-08 00:29:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-08 00:29:23 - building BasicValue for price -2024-08-08 00:29:23 - Skipping column re-registration: bill_action.price -2024-08-08 00:29:23 - Building property price -2024-08-08 00:29:23 - Binding column: AnnotatedColumn() -2024-08-08 00:29:23 - MetadataSourceProcessor property title with lazy=false -2024-08-08 00:29:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-08 00:29:23 - building BasicValue for title -2024-08-08 00:29:23 - Skipping column re-registration: bill_action.title -2024-08-08 00:29:23 - Building property title -2024-08-08 00:29:23 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:29:23 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-08 00:29:23 - Import with entity name MemberAction -2024-08-08 00:29:23 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-08 00:29:23 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:29:23 - Binding column: AnnotatedColumn() -2024-08-08 00:29:23 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:29:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:29:23 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:29:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-08 00:29:23 - building BasicValue for id -2024-08-08 00:29:23 - Skipping column re-registration: member_action.id -2024-08-08 00:29:23 - Building property id -2024-08-08 00:29:23 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:29:23 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:29:23 - Binding column: AnnotatedColumn() -2024-08-08 00:29:23 - Building property action -2024-08-08 00:29:23 - Binding column: AnnotatedColumn() -2024-08-08 00:29:23 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-08 00:29:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-08 00:29:23 - building BasicValue for memberGroupId -2024-08-08 00:29:23 - Skipping column re-registration: member_action.member_group_id -2024-08-08 00:29:23 - Building property memberGroupId -2024-08-08 00:29:23 - Binding column: AnnotatedColumn() -2024-08-08 00:29:23 - MetadataSourceProcessor property memberName with lazy=false -2024-08-08 00:29:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-08 00:29:23 - building BasicValue for memberName -2024-08-08 00:29:23 - Skipping column re-registration: member_action.member_name -2024-08-08 00:29:23 - Building property memberName -2024-08-08 00:29:23 - Binding column: AnnotatedColumn() -2024-08-08 00:29:23 - MetadataSourceProcessor property status with lazy=false -2024-08-08 00:29:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-08 00:29:23 - building BasicValue for status -2024-08-08 00:29:23 - Skipping column re-registration: member_action.status -2024-08-08 00:29:23 - Building property status -2024-08-08 00:29:23 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:29:23 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-08 00:29:23 - Import with entity name Event -2024-08-08 00:29:23 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-08 00:29:23 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:29:23 - Binding column: AnnotatedColumn() -2024-08-08 00:29:23 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:29:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:29:23 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:29:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-08 00:29:23 - building BasicValue for id -2024-08-08 00:29:23 - Skipping column re-registration: event.id -2024-08-08 00:29:23 - Building property id -2024-08-08 00:29:23 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:29:23 - Binding column: AnnotatedColumn() -2024-08-08 00:29:23 - MetadataSourceProcessor property name with lazy=false -2024-08-08 00:29:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-08 00:29:23 - building BasicValue for name -2024-08-08 00:29:23 - Skipping column re-registration: event.name -2024-08-08 00:29:23 - Building property name -2024-08-08 00:29:23 - Binding column: AnnotatedColumn() -2024-08-08 00:29:23 - MetadataSourceProcessor property password with lazy=false -2024-08-08 00:29:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-08 00:29:23 - building BasicValue for password -2024-08-08 00:29:23 - Skipping column re-registration: event.password -2024-08-08 00:29:23 - Building property password -2024-08-08 00:29:23 - Binding column: AnnotatedColumn() -2024-08-08 00:29:23 - MetadataSourceProcessor property token with lazy=false -2024-08-08 00:29:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-08 00:29:23 - building BasicValue for token -2024-08-08 00:29:23 - Skipping column re-registration: event.token -2024-08-08 00:29:23 - Building property token -2024-08-08 00:29:23 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 00:29:23 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-08 00:29:23 - Import with entity name EventStep -2024-08-08 00:29:23 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-08 00:29:23 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:29:23 - Binding column: AnnotatedColumn() -2024-08-08 00:29:23 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:29:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:29:23 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:29:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-08 00:29:23 - building BasicValue for id -2024-08-08 00:29:23 - Skipping column re-registration: event_step.id -2024-08-08 00:29:23 - Building property id -2024-08-08 00:29:23 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:29:23 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:29:23 - Binding column: AnnotatedColumn() -2024-08-08 00:29:23 - Building property event -2024-08-08 00:29:23 - Binding column: AnnotatedColumn() -2024-08-08 00:29:23 - MetadataSourceProcessor property name with lazy=false -2024-08-08 00:29:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-08 00:29:23 - building BasicValue for name -2024-08-08 00:29:23 - Skipping column re-registration: event_step.name -2024-08-08 00:29:23 - Building property name -2024-08-08 00:29:23 - Binding column: AnnotatedColumn() -2024-08-08 00:29:23 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 00:29:23 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-08 00:29:23 - building BasicValue for sequence -2024-08-08 00:29:23 - Skipping column re-registration: event_step.sequence -2024-08-08 00:29:23 - Building property sequence -2024-08-08 00:29:23 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 00:29:23 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:29:23 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 00:29:23 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:29:23 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-08 00:29:23 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-08 00:29:23 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:29:23 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-08 00:29:23 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-08 00:29:23 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-08 00:29:23 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:29:23 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 00:29:23 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-08 00:29:23 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-08 00:29:23 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:29:23 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 00:29:23 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 00:29:23 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-08 00:29:23 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-08 00:29:23 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-08 00:29:23 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-08 00:29:23 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-08 00:29:23 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:29:23 - Building session factory -2024-08-08 00:29:23 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:29:23 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@2484c868, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@19d13d04, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.14223362606075937327, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=87067, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.14223362606075937327, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@30d5fc1b, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-08 00:29:23 - Session factory constructed with filter configurations : {} -2024-08-08 00:29:23 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:29:23 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:29:23 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:29:23 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:29:23 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:29:23 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:29:23 - Loaded expression factory via original TCCL -2024-08-08 00:29:23 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:29:23 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:29:23 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:29:23 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:29:23 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:29:23 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:29:23 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:29:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:29:23 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:29:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:29:23 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:29:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:29:23 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:29:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:29:23 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:29:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:29:23 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@7bc6b117] under count; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@5c43cb12] under every; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@5db66c3] under any; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@24ee6faa] under sinh; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6d4f266] under cosh; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6b756a62] under tanh; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@394b9e22] under pi; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6e0f259e] under log; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-08 00:29:23 - Registering alternate key : length -> character_length -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@31f5ffb9] under position; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@7fb9a83c] under overlay; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@3aa8c337] under trim; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@34ff08c6] under cast; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@e2344da] under collate; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@21d48c40] under extract; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@2fc0ad21] under ifnull; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@7901a5ab] under pad; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@3e24bab6] under str; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@288b8663] under format; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@3055f310] under timestampadd; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@575fe6da] under timestampdiff; prior registration was null -2024-08-08 00:29:23 - Registering alternate key : dateadd -> timestampadd -2024-08-08 00:29:23 - Registering alternate key : datediff -> timestampdiff -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@ed1d2cf] under current_date; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@b814e23] under current_time; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5f81507a] under current_timestamp; prior registration was null -2024-08-08 00:29:23 - Registering alternate key : current date -> current_date -2024-08-08 00:29:23 - Registering alternate key : current time -> current_time -2024-08-08 00:29:23 - Registering alternate key : current timestamp -> current_timestamp -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7d7c05fa] under local_date; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7dbbf730] under local_time; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7c4a5ef2] under local_datetime; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@299dd381] under offset_datetime; prior registration was null -2024-08-08 00:29:23 - Registering alternate key : local date -> local_date -2024-08-08 00:29:23 - Registering alternate key : local time -> local_time -2024-08-08 00:29:23 - Registering alternate key : local datetime -> local_datetime -2024-08-08 00:29:23 - Registering alternate key : offset datetime -> offset_datetime -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@34d3409d] under instant; prior registration was null -2024-08-08 00:29:23 - Registering alternate key : current_instant -> instant -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@515fff35] under sql; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@5eb9bf7d] under count; prior registration was org.hibernate.dialect.function.CountFunction@7bc6b117 -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@123d0816] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@394b9e22 -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4601a148] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-08 00:29:23 - Registering alternate key : day -> day_of_month -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@7dbbf730 -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@7c4a5ef2 -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@655f92a1] under trunc; prior registration was null -2024-08-08 00:29:23 - Registering alternate key : truncate -> trunc -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1d2d793d] under date_trunc; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-08 00:29:23 - Registering alternate key : chr -> char -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@57fec63f] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@31f5ffb9 -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7a2fd94c] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-08 00:29:23 - Registering alternate key : every -> bool_and -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-08 00:29:23 - Registering alternate key : any -> bool_or -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@637c8632] under format; prior registration was org.hibernate.dialect.function.FormatFunction@288b8663 -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@55d87b73] under listagg; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@4abfa2ff] under mode; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@38c1b1a7] under percentile_cont; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@73230721] under percentile_disc; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@792b9dd3] under rank; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@cbc3bf3] under dense_rank; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@31f9f9b3] under percent_rank; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@7730da00] under cume_dist; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@2b4ba2d9] under array; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@69f24965] under array_list; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@57ac236a] under array_agg; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@4113d9ab] under array_position; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@4423692a] under array_positions; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@180e33b0] under array_positions_list; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@270be080] under array_length; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@5b86f4cb] under array_concat; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@5f14590c] under array_prepend; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@46051269] under array_append; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@222eda8a] under array_contains; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@3331800f] under array_contains_nullable; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@4880a9d] under array_overlaps; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@48f2d51d] under array_overlaps_nullable; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@a84b6de] under array_get; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@75507e68] under array_set; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@7304ca87] under array_remove; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@3a012678] under array_remove_index; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@396c1228] under array_slice; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@32f45e15] under array_replace; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4e7151b3] under array_trim; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@5ca3acad] under array_fill; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@b75f3f4] under array_fill_list; prior registration was null -2024-08-08 00:29:23 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@72c175f1] under array_to_string; prior registration was null -2024-08-08 00:29:23 - abs(NUMERIC arg) -2024-08-08 00:29:23 - Double acos(NUMERIC arg) -2024-08-08 00:29:23 - Boolean any(BOOLEAN predicate) -2024-08-08 00:29:23 - array( ... ) -2024-08-08 00:29:23 - array_agg(arg) -2024-08-08 00:29:23 - array_append( ... ) -2024-08-08 00:29:23 - array_concat( ... ) -2024-08-08 00:29:23 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 00:29:23 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 00:29:23 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-08 00:29:23 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-08 00:29:23 - array_get(ARRAY array, INTEGER index) -2024-08-08 00:29:23 - Integer array_length(ARRAY array) -2024-08-08 00:29:23 - array_list( ... ) -2024-08-08 00:29:23 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-08 00:29:23 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-08 00:29:23 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-08 00:29:23 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-08 00:29:23 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-08 00:29:23 - array_prepend( ... ) -2024-08-08 00:29:23 - array_remove( ... ) -2024-08-08 00:29:23 - array_remove_index( ... ) -2024-08-08 00:29:23 - array_replace( ... ) -2024-08-08 00:29:23 - array_set( ... ) -2024-08-08 00:29:23 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-08 00:29:23 - String array_to_string( ... ) -2024-08-08 00:29:23 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-08 00:29:23 - Integer ascii(STRING arg) -2024-08-08 00:29:23 - Double asin(NUMERIC arg) -2024-08-08 00:29:23 - Double atan(NUMERIC arg) -2024-08-08 00:29:23 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-08 00:29:23 - avg(NUMERIC arg) -2024-08-08 00:29:23 - bit_and(arg) -2024-08-08 00:29:23 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-08 00:29:23 - bit_or(arg) -2024-08-08 00:29:23 - bitand(arg0, arg1) -2024-08-08 00:29:23 - bitnot(arg) -2024-08-08 00:29:23 - bitor(arg0, arg1) -2024-08-08 00:29:23 - bitxor(arg0, arg1) -2024-08-08 00:29:23 - Boolean bool_and(BOOLEAN predicate) -2024-08-08 00:29:23 - Boolean bool_or(BOOLEAN predicate) -2024-08-08 00:29:23 - cast(arg as Type) -2024-08-08 00:29:23 - ceiling(NUMERIC arg) -2024-08-08 00:29:23 - Character char(INTEGER arg) -2024-08-08 00:29:23 - Integer character_length(STRING_OR_CLOB arg) -2024-08-08 00:29:23 - Character chr(INTEGER arg) -2024-08-08 00:29:23 - coalesce(arg0[, arg1[, ...]]) -2024-08-08 00:29:23 - String collate(STRING string as COLLATION collation) -2024-08-08 00:29:23 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-08 00:29:23 - Double cos(NUMERIC arg) -2024-08-08 00:29:23 - Double cosh(NUMERIC arg) -2024-08-08 00:29:23 - Double cot(NUMERIC arg) -2024-08-08 00:29:23 - Long count([distinct ]{arg|*}) -2024-08-08 00:29:23 - Double cume_dist([arg0[, ...]]) -2024-08-08 00:29:23 - Date curdate() -2024-08-08 00:29:23 - Date current date -2024-08-08 00:29:23 - Time current time -2024-08-08 00:29:23 - Timestamp current timestamp -2024-08-08 00:29:23 - Date current_date -2024-08-08 00:29:23 - Instant current_instant -2024-08-08 00:29:23 - Time current_time -2024-08-08 00:29:23 - Timestamp current_timestamp -2024-08-08 00:29:23 - Time curtime() -2024-08-08 00:29:23 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-08 00:29:23 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 00:29:23 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 00:29:23 - Integer day(DATE arg) -2024-08-08 00:29:23 - Integer day_of_month(DATE arg) -2024-08-08 00:29:23 - Integer day_of_week(DATE arg) -2024-08-08 00:29:23 - Integer day_of_year(DATE arg) -2024-08-08 00:29:23 - String dayname(DATE arg) -2024-08-08 00:29:23 - Double degrees(NUMERIC arg) -2024-08-08 00:29:23 - Long dense_rank([arg0[, ...]]) -2024-08-08 00:29:23 - Boolean every(BOOLEAN predicate) -2024-08-08 00:29:23 - Double exp(NUMERIC arg) -2024-08-08 00:29:23 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-08 00:29:23 - first_valueANY value -2024-08-08 00:29:23 - floor(NUMERIC arg) -2024-08-08 00:29:23 - String format(TEMPORAL datetime as STRING pattern) -2024-08-08 00:29:23 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 00:29:23 - Integer hour(TIME arg) -2024-08-08 00:29:23 - ifnull(arg0, arg1) -2024-08-08 00:29:23 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-08 00:29:23 - Instant instant -2024-08-08 00:29:23 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-08 00:29:23 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-08 00:29:23 - last_valueANY value -2024-08-08 00:29:23 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-08 00:29:23 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 00:29:23 - String left(STRING string, INTEGER length) -2024-08-08 00:29:23 - Integer length(STRING_OR_CLOB arg) -2024-08-08 00:29:23 - String listagg(STRING arg0, STRING arg1) -2024-08-08 00:29:23 - Double ln(NUMERIC arg) -2024-08-08 00:29:23 - LocalDate local date -2024-08-08 00:29:23 - LocalDateTime local datetime -2024-08-08 00:29:23 - LocalTime local time -2024-08-08 00:29:23 - LocalDate local_date -2024-08-08 00:29:23 - LocalDateTime local_datetime -2024-08-08 00:29:23 - LocalTime local_time -2024-08-08 00:29:23 - Time localtime -2024-08-08 00:29:23 - Timestamp localtimestamp -2024-08-08 00:29:23 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-08 00:29:23 - Double log(NUMERIC base, NUMERIC arg) -2024-08-08 00:29:23 - Double log10(NUMERIC arg) -2024-08-08 00:29:23 - String lower(STRING string) -2024-08-08 00:29:23 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 00:29:23 - String ltrim(STRING string) -2024-08-08 00:29:23 - max(COMPARABLE arg) -2024-08-08 00:29:23 - Double median(NUMERIC arg) -2024-08-08 00:29:23 - Integer microsecond(TIME arg) -2024-08-08 00:29:23 - min(COMPARABLE arg) -2024-08-08 00:29:23 - Integer minute(TIME arg) -2024-08-08 00:29:23 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-08 00:29:23 - mode() -2024-08-08 00:29:23 - Integer month(DATE arg) -2024-08-08 00:29:23 - String monthname(DATE arg) -2024-08-08 00:29:23 - Timestamp now() -2024-08-08 00:29:23 - nth_valueANY value, INTEGER nth -2024-08-08 00:29:23 - nullif(arg0, arg1) -2024-08-08 00:29:23 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-08 00:29:23 - OffsetDateTime offset datetime -2024-08-08 00:29:23 - OffsetDateTime offset_datetime -2024-08-08 00:29:23 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-08 00:29:23 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-08 00:29:23 - Double percent_rank([arg0[, ...]]) -2024-08-08 00:29:23 - percentile_cont(NUMERIC arg) -2024-08-08 00:29:23 - percentile_disc(NUMERIC arg) -2024-08-08 00:29:23 - Double pi -2024-08-08 00:29:23 - Integer position(STRING pattern in STRING string) -2024-08-08 00:29:23 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-08 00:29:23 - Integer quarter(DATE arg) -2024-08-08 00:29:23 - Double radians(NUMERIC arg) -2024-08-08 00:29:23 - Double rand([INTEGER seed]) -2024-08-08 00:29:23 - Long rank([arg0[, ...]]) -2024-08-08 00:29:23 - String repeat(STRING string, INTEGER times) -2024-08-08 00:29:23 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-08 00:29:23 - String right(STRING string, INTEGER length) -2024-08-08 00:29:23 - round(NUMERIC number[, INTEGER places]) -2024-08-08 00:29:23 - Long row_number() -2024-08-08 00:29:23 - Long rownum() -2024-08-08 00:29:23 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 00:29:23 - String rtrim(STRING string) -2024-08-08 00:29:23 - Integer second(TIME arg) -2024-08-08 00:29:23 - Integer sign(NUMERIC arg) -2024-08-08 00:29:23 - Double sin(NUMERIC arg) -2024-08-08 00:29:23 - Double sinh(NUMERIC arg) -2024-08-08 00:29:23 - String soundex(arg) -2024-08-08 00:29:23 - String space(INTEGER arg) -2024-08-08 00:29:23 - Object sql -2024-08-08 00:29:23 - Double sqrt(NUMERIC arg) -2024-08-08 00:29:23 - Double stddev_pop(NUMERIC arg) -2024-08-08 00:29:23 - Double stddev_samp(NUMERIC arg) -2024-08-08 00:29:23 - String str(arg) -2024-08-08 00:29:23 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-08 00:29:23 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-08 00:29:23 - sum(arg) -2024-08-08 00:29:23 - Timestamp sysdate -2024-08-08 00:29:23 - Double tan(NUMERIC arg) -2024-08-08 00:29:23 - Double tanh(NUMERIC arg) -2024-08-08 00:29:23 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 00:29:23 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 00:29:23 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-08 00:29:23 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-08 00:29:23 - trunc( ... ) -2024-08-08 00:29:23 - truncate( ... ) -2024-08-08 00:29:23 - String upper(STRING string) -2024-08-08 00:29:23 - Double var_pop(NUMERIC arg) -2024-08-08 00:29:23 - Double var_samp(NUMERIC arg) -2024-08-08 00:29:23 - Integer week(DATE arg) -2024-08-08 00:29:23 - Integer year(DATE arg) -2024-08-08 00:29:23 - Starting QueryInterpretationCache(2048) -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 82 -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 84 -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:23 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:29:23 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:23 - [javax.management.remote.rmi.RMIConnectionImpl@51ecbf9c: connectionId=rmi://127.0.0.1 2] closing. -2024-08-08 00:29:23 - [javax.management.remote.rmi.RMIConnectionImpl@51ecbf9c: connectionId=rmi://127.0.0.1 2] closed. -2024-08-08 00:29:23 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:29:23 - Configured EntityCopyObserver strategy: disallow -2024-08-08 00:29:23 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:29:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:29:23 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-08 00:29:23 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:29:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:29:23 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-08 00:29:23 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:29:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:29:23 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-08 00:29:23 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:29:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:29:23 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-08 00:29:23 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:29:23 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:29:23 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-08 00:29:23 - Starting post-init callbacks -2024-08-08 00:29:23 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-08 00:29:23 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-08 00:29:23 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-08 00:29:23 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-08 00:29:23 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-08 00:29:23 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-08 00:29:23 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-08 00:29:23 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-08 00:29:23 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-08 00:29:23 - Created new SQL alias : ba1_0 -2024-08-08 00:29:23 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-08 00:29:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7be9e9fc] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-08 00:29:23 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-08 00:29:23 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-08 00:29:23 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-08 00:29:23 - Version select: select id from bill_action where id=? -2024-08-08 00:29:23 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-08 00:29:23 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-08 00:29:23 - Delete (0): delete from bill_action where id=? -2024-08-08 00:29:23 - Created new SQL alias : ma1_0 -2024-08-08 00:29:23 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-08 00:29:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@182469d0] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-08 00:29:23 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-08 00:29:23 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-08 00:29:23 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-08 00:29:23 - Version select: select id from member_action where id=? -2024-08-08 00:29:23 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-08 00:29:23 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-08 00:29:23 - Delete (0): delete from member_action where id=? -2024-08-08 00:29:23 - Created new SQL alias : e1_0 -2024-08-08 00:29:23 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-08 00:29:23 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-08 00:29:23 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-08 00:29:23 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-08 00:29:23 - Version select: select id from event where id=? -2024-08-08 00:29:23 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-08 00:29:23 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-08 00:29:23 - Delete (0): delete from event where id=? -2024-08-08 00:29:23 - Created new SQL alias : a1_0 -2024-08-08 00:29:23 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-08 00:29:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@788fa91f] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-08 00:29:23 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-08 00:29:23 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-08 00:29:23 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-08 00:29:23 - Version select: select id from action where id=? -2024-08-08 00:29:23 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-08 00:29:23 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-08 00:29:23 - Delete (0): delete from action where id=? -2024-08-08 00:29:23 - Created new SQL alias : es1_0 -2024-08-08 00:29:23 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-08 00:29:23 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5e8bc83e] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-08 00:29:23 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-08 00:29:23 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-08 00:29:23 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-08 00:29:23 - Version select: select id from event_step where id=? -2024-08-08 00:29:23 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-08 00:29:23 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-08 00:29:23 - Delete (0): delete from event_step where id=? -2024-08-08 00:29:23 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-08 00:29:23 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@6738e8b2] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@6af02de0] -2024-08-08 00:29:23 - Checking 0 named HQL queries -2024-08-08 00:29:23 - Checking 0 named SQL queries -2024-08-08 00:29:23 - - drop table if exists action cascade -2024-08-08 00:29:23 - - drop table if exists bill_action cascade -2024-08-08 00:29:23 - - drop table if exists event cascade -2024-08-08 00:29:23 - - drop table if exists event_step cascade -2024-08-08 00:29:23 - - drop table if exists member_action cascade -2024-08-08 00:29:23 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-08 00:29:23 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-08 00:29:23 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-08 00:29:23 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-08 00:29:23 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-08 00:29:23 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-08 00:29:23 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-08 00:29:23 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-08 00:29:23 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-08 00:29:23 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@2e845f1c -2024-08-08 00:29:23 - Registering SessionFactory: 66b02e9a-4f90-4f4f-bd84-6b282e04aa8a (<unnamed>) -2024-08-08 00:29:23 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-08 00:29:23 - Instantiated SessionFactory -2024-08-08 00:29:23 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'actionService' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-08 00:29:23 - Initializing JpaMetamodelMappingContext… -2024-08-08 00:29:23 - Finished initializing JpaMetamodelMappingContext -2024-08-08 00:29:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:23 - Statistics initialized [enabled=false] -2024-08-08 00:29:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-08 00:29:23 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-08 00:29:23 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-08 00:29:23 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-08 00:29:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:23 - Looking up named query BillAction.findByAction_Event -2024-08-08 00:29:23 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:29:23 - Did not find named query BillAction.findByAction_Event -2024-08-08 00:29:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:23 - Looking up named query BillAction.findByAction_Id -2024-08-08 00:29:23 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:29:23 - Did not find named query BillAction.findByAction_Id -2024-08-08 00:29:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:23 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-08 00:29:23 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:29:23 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-08 00:29:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:23 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-08 00:29:23 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-08 00:29:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:23 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-08 00:29:23 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:23 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-08 00:29:24 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:29:24 - Did not find named query MemberAction.findAllByEvent.count -2024-08-08 00:29:24 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:24 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-08 00:29:24 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:29:24 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(766826578539416)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(766826578539416)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(766826578539416)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(766826578539416)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(766826578539416).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:29:24 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:29:24 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-08 00:29:24 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:24 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-08 00:29:24 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:29:24 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:29:24 - Looking up named query MemberAction.findByAction -2024-08-08 00:29:24 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:29:24 - Did not find named query MemberAction.findByAction -2024-08-08 00:29:24 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:24 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 00:29:24 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:29:24 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 00:29:24 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:24 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 00:29:24 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:29:24 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 00:29:24 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:24 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:29:24 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-08 00:29:24 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:24 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-08 00:29:24 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 00:29:24 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:29:24 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 00:29:24 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:29:24 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-08 00:29:24 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:24 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-08 00:29:24 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 00:29:24 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-08 00:29:24 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 00:29:24 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'eventRepository' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-08 00:29:24 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:24 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-08 00:29:24 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:24 - Looking up named query Event.findByToken -2024-08-08 00:29:24 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:29:24 - Did not find named query Event.findByToken -2024-08-08 00:29:24 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:24 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-08 00:29:24 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-08 00:29:24 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:29:24 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'billActionService' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'actionRepository' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-08 00:29:24 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:24 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-08 00:29:24 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:24 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:29:24 - Did not find named query Action.findLastByEvent.count -2024-08-08 00:29:24 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:24 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-08 00:29:24 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:29:24 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:29:24 - Looking up named query Action.findByIdAndEvent -2024-08-08 00:29:24 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:29:24 - Did not find named query Action.findByIdAndEvent -2024-08-08 00:29:24 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:29:24 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-08 00:29:24 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-08 00:29:24 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-08 00:29:24 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'eventService' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-08 00:29:24 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-08 00:29:24 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-08 00:29:24 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-08 00:29:24 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-08 00:29:24 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'memberActionService' -2024-08-08 00:29:24 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-08 00:29:24 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:29:24 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-08 00:29:24 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 00:29:24 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-08 00:29:24 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'actionController' -2024-08-08 00:29:24 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'billActionController' -2024-08-08 00:29:24 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'eventController' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'authService' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-08 00:29:24 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-08 00:29:24 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'memberActionController' -2024-08-08 00:29:24 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 82 -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 84 -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:29:24 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - [javax.management.remote.rmi.RMIConnectionImpl@79ded3c7: connectionId=rmi://127.0.0.1 3] closing. -2024-08-08 00:29:24 - [javax.management.remote.rmi.RMIConnectionImpl@79ded3c7: connectionId=rmi://127.0.0.1 3] closed. -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-08 00:29:24 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-08 00:29:24 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:29:24 - Loaded expression factory via original TCCL -2024-08-08 00:29:24 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-08 00:29:24 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-08 00:29:24 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:29:24 - Trying to load META-INF/validation.xml via user class loader -2024-08-08 00:29:24 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:29:24 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:29:24 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:29:24 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:29:24 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:29:24 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:29:24 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:29:24 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:29:24 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:29:24 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:29:24 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'error' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-08 00:29:24 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-08 00:29:24 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-08 00:29:24 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-08 00:29:24 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-08 00:29:24 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:29:24 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:29:24 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-08 00:29:24 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:29:24 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:29:24 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'localeResolver' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'themeResolver' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-08 00:29:24 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:29:24 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:29:24 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:29:24 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-08 00:29:24 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-08 00:29:24 - - s.h.p.EventController: - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) -2024-08-08 00:29:24 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-08 00:29:24 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-08 00:29:24 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-08 00:29:24 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:29:24 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-08 00:29:24 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:29:24 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:29:24 - 'beanNameHandlerMapping' {} -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-08 00:29:24 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:29:24 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'messageConverters' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-08 00:29:24 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-08 00:29:24 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:29:24 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:29:24 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'pageModule' -2024-08-08 00:29:24 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:29:24 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 00:29:24 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-08 00:29:24 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-08 00:29:24 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:29:24 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:29:24 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:29:24 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-08 00:29:24 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:29:24 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-08 00:29:24 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'sortResolver' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-08 00:29:24 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-08 00:29:24 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-08 00:29:24 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-08 00:29:24 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-08 00:29:24 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-08 00:29:24 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:29:24 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-08 00:29:24 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 00:29:24 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-08 00:29:24 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'transactionManager' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-08 00:29:24 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-08 00:29:24 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:29:24 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-08 00:29:24 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:29:24 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-08 00:29:24 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-08 00:29:24 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-08 00:29:24 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-08 00:29:24 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-08 00:29:24 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-08 00:29:24 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-08 00:29:24 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-08 00:29:24 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-08 00:29:24 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-08 00:29:24 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-08 00:29:24 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-08 00:29:24 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-08 00:29:24 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:29:24 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-08 00:29:24 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-08 00:29:24 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-08 00:29:24 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-08 00:29:24 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-08 00:29:24 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-08 00:29:24 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-08 00:29:24 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-08 00:29:24 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-08 00:29:24 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 00:29:24 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-08 00:29:24 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:29:24 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:29:24 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 00:29:24 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-08 00:29:24 - Using SLF4J as the default logging framework -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-08 00:29:24 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-08 00:29:24 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-08 00:29:24 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-08 00:29:24 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-08 00:29:24 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'observedAspect' -2024-08-08 00:29:24 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-08 00:29:24 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-08 00:29:24 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 00:29:24 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-08 00:29:24 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 00:29:24 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-08 00:29:24 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-08 00:29:24 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-08 00:29:24 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-08 00:29:24 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-08 00:29:24 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-08 00:29:24 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-08 00:29:24 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 00:29:24 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:29:24 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:29:24 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-08 00:29:24 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-08 00:29:24 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-08 00:29:24 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:29:24 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:29:24 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-08 00:29:24 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-08 00:29:24 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-08 00:29:24 - Registering beans for JMX exposure on startup -2024-08-08 00:29:24 - Auto-detecting user-defined JMX MBeans -2024-08-08 00:29:24 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-08 00:29:24 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-08 00:29:24 - Starting beans in phase -2147483647 -2024-08-08 00:29:24 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-08 00:29:24 - Starting beans in phase 2147481599 -2024-08-08 00:29:24 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-08 00:29:24 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-08 00:29:24 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-08 00:29:24 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-08 00:29:24 - Tomcat started on port 8080 (http) with context path '/' -2024-08-08 00:29:24 - Successfully started bean 'webServerStartStop' -2024-08-08 00:29:24 - Starting beans in phase 2147482623 -2024-08-08 00:29:24 - Successfully started bean 'webServerGracefulShutdown' -2024-08-08 00:29:24 - Starting beans in phase 2147483647 -2024-08-08 00:29:24 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-08 00:29:24 - Started HaengdongApplication in 2.342 seconds (process running for 2.523) -2024-08-08 00:29:24 - Application availability state LivenessState changed to CORRECT -2024-08-08 00:29:24 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 82 -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 84 -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:29:24 - RMI TCP Connection(1)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - [javax.management.remote.rmi.RMIConnectionImpl@4d2d2c57: connectionId=rmi://127.0.0.1 4] closing. -2024-08-08 00:29:24 - [javax.management.remote.rmi.RMIConnectionImpl@4d2d2c57: connectionId=rmi://127.0.0.1 4] closed. -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:59912] -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:59911] -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 84 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 84 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - [javax.management.remote.rmi.RMIConnectionImpl@e7c689: connectionId=rmi://127.0.0.1 6] closing. -2024-08-08 00:29:24 - [javax.management.remote.rmi.RMIConnectionImpl@e7c689: connectionId=rmi://127.0.0.1 6] closed. -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 84 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - [javax.management.remote.rmi.RMIConnectionImpl@5c32f9ad: connectionId=rmi://127.0.0.1 5] closing. -2024-08-08 00:29:24 - [javax.management.remote.rmi.RMIConnectionImpl@5c32f9ad: connectionId=rmi://127.0.0.1 5] closed. -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - [javax.management.remote.rmi.RMIConnectionImpl@649abf38: connectionId=rmi://127.0.0.1 7] closing. -2024-08-08 00:29:24 - [javax.management.remote.rmi.RMIConnectionImpl@649abf38: connectionId=rmi://127.0.0.1 7] closed. -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 84 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - [javax.management.remote.rmi.RMIConnectionImpl@1cb59643: connectionId=rmi://127.0.0.1 8] closing. -2024-08-08 00:29:24 - [javax.management.remote.rmi.RMIConnectionImpl@1cb59643: connectionId=rmi://127.0.0.1 8] closed. -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 82 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 82 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 84 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 84 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - [javax.management.remote.rmi.RMIConnectionImpl@4f38725a: connectionId=rmi://127.0.0.1 9] closing. -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - [javax.management.remote.rmi.RMIConnectionImpl@4f38725a: connectionId=rmi://127.0.0.1 9] closed. -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - [javax.management.remote.rmi.RMIConnectionImpl@f1a0088: connectionId=rmi://127.0.0.1 10] closing. -2024-08-08 00:29:24 - [javax.management.remote.rmi.RMIConnectionImpl@f1a0088: connectionId=rmi://127.0.0.1 10] closed. -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 84 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 84 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:29:24 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-08 00:29:24 - Fetching JDBC Connection from DataSource -2024-08-08 00:29:24 - Fetching JDBC Connection from DataSource -2024-08-08 00:29:24 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-08 00:29:24 - Initializing Servlet 'dispatcherServlet' -2024-08-08 00:29:24 - Detected StandardServletMultipartResolver -2024-08-08 00:29:24 - Detected AcceptHeaderLocaleResolver -2024-08-08 00:29:24 - Detected FixedThemeResolver -2024-08-08 00:29:24 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@5757ef9b -2024-08-08 00:29:24 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@7e09bee -2024-08-08 00:29:24 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-08 00:29:24 - Completed initialization in 1 ms -2024-08-08 00:29:24 - RMI TCP Connection(2)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - [javax.management.remote.rmi.RMIConnectionImpl@118cacc0: connectionId=rmi://127.0.0.1 11] closing. -2024-08-08 00:29:24 - [javax.management.remote.rmi.RMIConnectionImpl@118cacc0: connectionId=rmi://127.0.0.1 11] closed. -2024-08-08 00:29:24 - RMI TCP Connection(3)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:29:24 - [javax.management.remote.rmi.RMIConnectionImpl@6e823a1d: connectionId=rmi://127.0.0.1 12] closing. -2024-08-08 00:29:24 - [javax.management.remote.rmi.RMIConnectionImpl@6e823a1d: connectionId=rmi://127.0.0.1 12] closed. -2024-08-08 00:29:32 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.14223362606075937327/conf/jaspic-providers.xml] -2024-08-08 00:29:32 - POST "/api/events", parameters={} -2024-08-08 00:29:32 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:29:32 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:29:32 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=토다리, password=0987]] -2024-08-08 00:29:32 - Found thread-bound EntityManager [SessionImpl(944002044<open>)] for JPA transaction -2024-08-08 00:29:32 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-08 00:29:32 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:29:32 - begin -2024-08-08 00:29:32 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@31df683f] -2024-08-08 00:29:32 - Found thread-bound EntityManager [SessionImpl(944002044<open>)] for JPA transaction -2024-08-08 00:29:32 - Participating in existing transaction -2024-08-08 00:29:32 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-08 00:29:32 - Executing identity-insert immediately -2024-08-08 00:29:32 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-08 00:29:32 - Initializer list is empty -2024-08-08 00:29:32 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@299071a8 -2024-08-08 00:29:32 - Extracted JDBC value [0] - [1] -2024-08-08 00:29:32 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@41fd8aca -2024-08-08 00:29:32 - Initiating transaction commit -2024-08-08 00:29:32 - Committing JPA transaction on EntityManager [SessionImpl(944002044<open>)] -2024-08-08 00:29:32 - committing -2024-08-08 00:29:32 - Processing flush-time cascades -2024-08-08 00:29:32 - Dirty checking collections -2024-08-08 00:29:32 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-08 00:29:32 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-08 00:29:32 - Listing entities: -2024-08-08 00:29:32 - server.haengdong.domain.event.Event{password=0987, name=토다리, id=1, token=89c7b4ff-aec4-4755-bd19-f1fcc6745fe3} -2024-08-08 00:29:32 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:29:32 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:29:32 - Writing [EventResponse[eventId=89c7b4ff-aec4-4755-bd19-f1fcc6745fe3]] -2024-08-08 00:29:32 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:29:32 - Completed 200 OK -2024-08-08 00:29:53 - RMI TCP Connection(3)-127.0.0.1: (port 59909) connection closed -2024-08-08 00:29:53 - RMI TCP Connection(2)-127.0.0.1: (port 59909) connection closed -2024-08-08 00:29:53 - RMI TCP Connection(1)-127.0.0.1: (port 59909) connection closed -2024-08-08 00:29:53 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=59912,localport=59909] -2024-08-08 00:29:53 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=59911,localport=59909] -2024-08-08 00:29:53 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=59910,localport=59909] -2024-08-08 00:29:53 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=59911,localport=59909] -2024-08-08 00:29:53 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=59910,localport=59909] -2024-08-08 00:29:53 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=59912,localport=59909] -2024-08-08 00:29:53 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:29:53 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:29:53 - OPTIONS "/api/events/89c7b4ff-aec4-4755-bd19-f1fcc6745fe3/member-actions", parameters={} -2024-08-08 00:29:53 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-08 00:29:53 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:29:53 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:29:53 - Completed 200 OK -2024-08-08 00:29:53 - POST "/api/events/89c7b4ff-aec4-4755-bd19-f1fcc6745fe3/member-actions", parameters={} -2024-08-08 00:29:53 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-08 00:29:53 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-08 00:29:53 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-08 00:29:53 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-08 00:29:53 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-08 00:29:53 - Completed 401 UNAUTHORIZED -2024-08-08 00:30:23 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:30:23 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:30:27 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:59917] -2024-08-08 00:30:27 - RMI TCP Connection(4)-127.0.0.1: (port 59909) op = 80 -2024-08-08 00:30:27 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:30:27 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:30:27 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:30:27 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:30:27 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:30:42 - RMI TCP Connection(4)-127.0.0.1: (port 59909) connection closed -2024-08-08 00:30:42 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=59917,localport=59909] -2024-08-08 00:30:42 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=59917,localport=59909] -2024-08-08 00:30:45 - POST "/api/events/89c7b4ff-aec4-4755-bd19-f1fcc6745fe3/member-actions", parameters={} -2024-08-08 00:30:45 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-08 00:30:45 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-08 00:30:45 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-08 00:30:45 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-08 00:30:45 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-08 00:30:45 - Completed 401 UNAUTHORIZED -2024-08-08 00:30:53 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:30:53 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:31:04 - POST "/api/events", parameters={} -2024-08-08 00:31:04 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:31:04 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:31:04 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=토다리, password=0987]] -2024-08-08 00:31:04 - Found thread-bound EntityManager [SessionImpl(910506464<open>)] for JPA transaction -2024-08-08 00:31:04 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-08 00:31:04 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:31:04 - begin -2024-08-08 00:31:04 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@7347a14c] -2024-08-08 00:31:04 - Found thread-bound EntityManager [SessionImpl(910506464<open>)] for JPA transaction -2024-08-08 00:31:04 - Participating in existing transaction -2024-08-08 00:31:04 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-08 00:31:04 - Executing identity-insert immediately -2024-08-08 00:31:04 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-08 00:31:04 - Initializer list is empty -2024-08-08 00:31:04 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@46f8ef19 -2024-08-08 00:31:04 - Extracted JDBC value [0] - [2] -2024-08-08 00:31:04 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@73e749c3 -2024-08-08 00:31:04 - Initiating transaction commit -2024-08-08 00:31:04 - Committing JPA transaction on EntityManager [SessionImpl(910506464<open>)] -2024-08-08 00:31:04 - committing -2024-08-08 00:31:04 - Processing flush-time cascades -2024-08-08 00:31:04 - Dirty checking collections -2024-08-08 00:31:04 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-08 00:31:04 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-08 00:31:04 - Listing entities: -2024-08-08 00:31:04 - server.haengdong.domain.event.Event{password=0987, name=토다리, id=2, token=08d41f84-899f-4786-9cd3-b501d7fb6904} -2024-08-08 00:31:04 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:31:04 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:31:04 - Writing [EventResponse[eventId=08d41f84-899f-4786-9cd3-b501d7fb6904]] -2024-08-08 00:31:04 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:31:04 - Completed 200 OK -2024-08-08 00:31:07 - GET "/api/events", parameters={} -2024-08-08 00:31:07 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 00:31:07 - Using 'application/json;q=0.8', given [text/html, application/xhtml+xml, image/avif, image/webp, image/apng, application/xml;q=0.9, */*;q=0.8, application/signed-exchange;v=b3;q=0.7] and supported [application/json, application/*+json] -2024-08-08 00:31:07 - Writing [ErrorResponse[code=R_002, message=잘못된 엔드포인트입니다.]] -2024-08-08 00:31:07 - Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'GET' is not supported] -2024-08-08 00:31:07 - Completed 400 BAD_REQUEST -2024-08-08 00:31:07 - GET "/favicon.ico", parameters={} -2024-08-08 00:31:07 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 00:31:07 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:31:07 - Resource not found -2024-08-08 00:31:07 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 00:31:07 - Using 'application/json;q=0.8', given [image/avif, image/webp, image/apng, image/svg+xml, image/*, */*;q=0.8] and supported [application/json, application/*+json] -2024-08-08 00:31:07 - Writing [ErrorResponse[code=R_002, message=잘못된 엔드포인트입니다.]] -2024-08-08 00:31:07 - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource favicon.ico.] -2024-08-08 00:31:07 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:31:07 - Completed 400 BAD_REQUEST -2024-08-08 00:31:23 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:31:23 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:31:53 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:31:53 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:32:15 - GET "/api/events/08d41f84-899f-4786-9cd3-b501d7fb6904/members", parameters={} -2024-08-08 00:32:15 - Mapped to server.haengdong.presentation.EventController#findAllMembers(String) -2024-08-08 00:32:15 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:32:15 - Found thread-bound EntityManager [SessionImpl(223578106<open>)] for JPA transaction -2024-08-08 00:32:15 - Creating new transaction with name [server.haengdong.application.EventService.findAllMembers]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT,readOnly -2024-08-08 00:32:15 - Setting JDBC Connection [HikariProxyConnection@1073509290 wrapping conn0: url=jdbc:h2:mem:database user=SA] read-only -2024-08-08 00:32:15 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:32:15 - begin -2024-08-08 00:32:15 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@7fee399e] -2024-08-08 00:32:15 - Created new SQL alias : e1_0 -2024-08-08 00:32:15 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event(766826621420083))] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-08 00:32:16 - Determining mapping-model type for SqmParameter : org.hibernate.query.sqm.tree.expression.SqmJpaCriteriaParameterWrapper@39d1ba91 -2024-08-08 00:32:16 - Determining mapping-model type for SqmPath : SqmBasicValuedSimplePath(server.haengdong.domain.event.Event(766826621420083).token) -2024-08-08 00:32:16 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event(766826621420083)] - | +-BasicFetch [server.haengdong.domain.event.Event(766826621420083).name] - | +-BasicFetch [server.haengdong.domain.event.Event(766826621420083).password] - | \-BasicFetch [server.haengdong.domain.event.Event(766826621420083).token] - -2024-08-08 00:32:16 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event(766826621420083)) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-08 00:32:16 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-08 00:32:16 - Initializer list: - server.haengdong.domain.event.Event(766826621420083) -> EntityResultInitializer(server.haengdong.domain.event.Event(766826621420083))@962770039 (SingleTableEntityPersister(server.haengdong.domain.event.Event)) - -2024-08-08 00:32:16 - - select - e1_0.id, - e1_0.name, - e1_0.password, - e1_0.token - from - event e1_0 - where - e1_0.token=? -2024-08-08 00:32:16 - Extracted JDBC value [0] - [2] -2024-08-08 00:32:16 - (EntityResultInitializer) Hydrated EntityKey (server.haengdong.domain.event.Event(766826621420083)): 2 -2024-08-08 00:32:16 - (EntityResultInitializer) Created new entity instance [server.haengdong.domain.event.Event(766826621420083)#2] : 1378416809 -2024-08-08 00:32:16 - Extracted JDBC value [1] - [토다리] -2024-08-08 00:32:16 - Extracted JDBC value [2] - [0987] -2024-08-08 00:32:16 - Extracted JDBC value [3] - [08d41f84-899f-4786-9cd3-b501d7fb6904] -2024-08-08 00:32:16 - (EntityResultInitializer) Done materializing entityInstance : server.haengdong.domain.event.Event(766826621420083)#2 -2024-08-08 00:32:16 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.entity.internal.EntityAssembler@5a55be90 -2024-08-08 00:32:16 - Created new SQL alias : ma1_0 -2024-08-08 00:32:16 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction(m))] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-08 00:32:16 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@50eeaed8] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-08 00:32:16 - Created new SQL alias : a1_0 -2024-08-08 00:32:16 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@467024f2] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action.event] for NavigablePath [server.haengdong.domain.action.MemberAction.action.event] -2024-08-08 00:32:16 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-08 00:32:16 - Determining mapping-model type for SqmParameter : SqmNamedParameter(event) -2024-08-08 00:32:16 - Determining mapping-model type for SqmPath : SqmEntityValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.event) -2024-08-08 00:32:16 - DomainResult Graph: - \-BasicResult [server.haengdong.domain.action.MemberAction(m).memberName] - -2024-08-08 00:32:16 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction(m)) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction(m).action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - join LazyTableGroup (e1 : server.haengdong.domain.action.MemberAction(m).action.event) { - } - } - } - } - } - } - } - -2024-08-08 00:32:16 - Skipping reading Query result cache data: cache-enabled = false, cache-mode = NORMAL -2024-08-08 00:32:16 - Initializer list is empty -2024-08-08 00:32:16 - - select - distinct ma1_0.member_name - from - member_action ma1_0 - join - action a1_0 - on a1_0.id=ma1_0.action_id - where - a1_0.event_id=? -2024-08-08 00:32:16 - Initiating transaction commit -2024-08-08 00:32:16 - Committing JPA transaction on EntityManager [SessionImpl(223578106<open>)] -2024-08-08 00:32:16 - committing -2024-08-08 00:32:16 - Resetting read-only flag of JDBC Connection [HikariProxyConnection@1073509290 wrapping conn0: url=jdbc:h2:mem:database user=SA] -2024-08-08 00:32:16 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:32:16 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:32:16 - Writing [MembersResponse[memberNames=[]]] -2024-08-08 00:32:16 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:32:16 - Completed 200 OK -2024-08-08 00:32:23 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:32:23 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:32:44 - OPTIONS "/api/events/08d41f84-899f-4786-9cd3-b501d7fb6904/member-actions", parameters={} -2024-08-08 00:32:44 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-08 00:32:44 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:32:44 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:32:44 - Completed 200 OK -2024-08-08 00:32:44 - POST "/api/events/08d41f84-899f-4786-9cd3-b501d7fb6904/member-actions", parameters={} -2024-08-08 00:32:44 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-08 00:32:44 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-08 00:32:44 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-08 00:32:44 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-08 00:32:44 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-08 00:32:44 - Completed 401 UNAUTHORIZED -2024-08-08 00:32:53 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:32:53 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:33:05 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-08 00:33:05 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Thu Aug 08 00:29:22 KST 2024 -2024-08-08 00:33:05 - Stopping beans in phase 2147483647 -2024-08-08 00:33:05 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-08 00:33:05 - Stopping beans in phase 2147482623 -2024-08-08 00:33:05 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-08 00:33:05 - Stopping beans in phase 2147481599 -2024-08-08 00:33:05 - Bean 'webServerStartStop' completed its stop procedure -2024-08-08 00:33:05 - Stopping beans in phase -2147483647 -2024-08-08 00:33:05 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-08 00:33:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-08 00:33:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-08 00:33:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-08 00:33:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-08 00:33:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-08 00:33:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-08 00:33:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-08 00:33:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-08 00:33:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-08 00:33:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-08 00:33:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-08 00:33:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-08 00:33:05 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-08 00:33:05 - Unregistering JMX-exposed beans on shutdown -2024-08-08 00:33:05 - Unregistering JMX-exposed beans -2024-08-08 00:33:05 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-08 00:33:05 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 00:33:05 - HHH000031: Closing -2024-08-08 00:33:05 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@5d64857f] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@6af02de0] -2024-08-08 00:33:05 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-08 00:33:05 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-08 00:33:05 - HikariPool-1 - Shutdown initiated... -2024-08-08 00:33:05 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:33:05 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:33:05 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:33:05 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:33:05 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:33:05 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:33:05 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:33:05 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:33:05 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:33:05 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:33:05 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:33:05 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-08 00:33:05 - HikariPool-1 - Shutdown completed. -2024-08-08 00:33:05 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-08 00:33:06 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-08 00:33:06 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-08 00:33:06 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:33:06 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:33:06 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:33:06 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:33:06 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:33:06 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:33:06 - Loaded expression factory via original TCCL -2024-08-08 00:33:06 - Starting HaengdongApplication using Java 17.0.12 with PID 87281 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-08 00:33:06 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-08 00:33:06 - No active profile set, falling back to 1 default profile: "default" -2024-08-08 00:33:06 - Loading source class server.haengdong.HaengdongApplication -2024-08-08 00:33:06 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-08 00:33:06 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-08 00:33:06 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:33:06 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:33:06 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:33:06 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:33:06 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:33:06 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:33:06 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-08 00:33:06 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-08 00:33:06 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-08 00:33:06 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-08 00:33:06 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-08 00:33:06 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-08 00:33:06 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-08 00:33:06 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 00:33:06 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 00:33:06 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 00:33:06 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-08 00:33:06 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 00:33:06 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-08 00:33:06 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-08 00:33:06 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-08 00:33:06 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-08 00:33:06 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-08 00:33:06 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-08 00:33:07 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-08 00:33:07 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-08 00:33:07 - Scanning for JPA repositories in packages server.haengdong. -2024-08-08 00:33:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 00:33:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 00:33:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 00:33:07 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 00:33:07 - Finished Spring Data repository scanning in 16 ms. Found 4 JPA repository interfaces. -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-08 00:33:07 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-08 00:33:07 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-08 00:33:07 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 00:33:07 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-08 00:33:07 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 00:33:07 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 00:33:07 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-08 00:33:07 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-08 00:33:07 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@54c60202] -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-08 00:33:07 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-08 00:33:07 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-08 00:33:07 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-08 00:33:07 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-08 00:33:07 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-08 00:33:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-08 00:33:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-08 00:33:07 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 00:33:07 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:33:07 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:33:07 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:33:07 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-08 00:33:07 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 00:33:07 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 00:33:07 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-08 00:33:07 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-08 00:33:07 - Tomcat initialized with port 8080 (http) -2024-08-08 00:33:07 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1a2e563e] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1a2e563e] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.mapper.MapperListener@47fb7ec9] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.mapper.MapperListener@47fb7ec9] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-08 00:33:07 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-08 00:33:07 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1a2e563e] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1a2e563e] to [STARTING] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1a2e563e] to [STARTED] -2024-08-08 00:33:07 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-08 00:33:07 - Starting service [Tomcat] -2024-08-08 00:33:07 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-08 00:33:07 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-08 00:33:07 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.webresources.StandardRoot@79be91eb] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.webresources.StandardRoot@79be91eb] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.webresources.StandardRoot@79be91eb] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.webresources.DirResourceSet@73e4bb60] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.webresources.DirResourceSet@73e4bb60] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.webresources.DirResourceSet@73e4bb60] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.webresources.DirResourceSet@73e4bb60] to [STARTING] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.webresources.DirResourceSet@73e4bb60] to [STARTED] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.webresources.StandardRoot@79be91eb] to [STARTING] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.webresources.StandardRoot@79be91eb] to [STARTED] -2024-08-08 00:33:07 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:33:07 - Starting this Loader -2024-08-08 00:33:07 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:33:07 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:33:07 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-08 00:33:07 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@2e4eda17] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@2e4eda17] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@2e4eda17] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@2e4eda17] to [STARTING] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@2e4eda17] to [STARTED] -2024-08-08 00:33:07 - Initializing Spring embedded WebApplicationContext -2024-08-08 00:33:07 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-08 00:33:07 - Root WebApplicationContext: initialization completed in 611 ms -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-08 00:33:07 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-08 00:33:07 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-08 00:33:07 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-08 00:33:07 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:33:07 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-08 00:33:07 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'h2Console' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'dataSource' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-08 00:33:07 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-08 00:33:07 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-08 00:33:07 - HikariPool-1 - configuration: -2024-08-08 00:33:07 - allowPoolSuspension.............false -2024-08-08 00:33:07 - autoCommit......................true -2024-08-08 00:33:07 - catalog.........................none -2024-08-08 00:33:07 - connectionInitSql...............none -2024-08-08 00:33:07 - connectionTestQuery.............none -2024-08-08 00:33:07 - connectionTimeout...............30000 -2024-08-08 00:33:07 - dataSource......................none -2024-08-08 00:33:07 - dataSourceClassName.............none -2024-08-08 00:33:07 - dataSourceJNDI..................none -2024-08-08 00:33:07 - dataSourceProperties............{password=<masked>} -2024-08-08 00:33:07 - driverClassName................."org.h2.Driver" -2024-08-08 00:33:07 - exceptionOverrideClassName......none -2024-08-08 00:33:07 - healthCheckProperties...........{} -2024-08-08 00:33:07 - healthCheckRegistry.............none -2024-08-08 00:33:07 - idleTimeout.....................600000 -2024-08-08 00:33:07 - initializationFailTimeout.......1 -2024-08-08 00:33:07 - isolateInternalQueries..........false -2024-08-08 00:33:07 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-08 00:33:07 - keepaliveTime...................0 -2024-08-08 00:33:07 - leakDetectionThreshold..........0 -2024-08-08 00:33:07 - maxLifetime.....................1800000 -2024-08-08 00:33:07 - maximumPoolSize.................10 -2024-08-08 00:33:07 - metricRegistry..................none -2024-08-08 00:33:07 - metricsTrackerFactory...........none -2024-08-08 00:33:07 - minimumIdle.....................10 -2024-08-08 00:33:07 - password........................<masked> -2024-08-08 00:33:07 - poolName........................"HikariPool-1" -2024-08-08 00:33:07 - readOnly........................false -2024-08-08 00:33:07 - registerMbeans..................false -2024-08-08 00:33:07 - scheduledExecutor...............none -2024-08-08 00:33:07 - schema..........................none -2024-08-08 00:33:07 - threadFactory...................internal -2024-08-08 00:33:07 - transactionIsolation............default -2024-08-08 00:33:07 - username........................"sa" -2024-08-08 00:33:07 - validationTimeout...............5000 -2024-08-08 00:33:07 - HikariPool-1 - Starting... -2024-08-08 00:33:07 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-08 00:33:07 - HikariPool-1 - Start completed. -2024-08-08 00:33:07 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-08 00:33:07 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-08 00:33:07 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:33:07 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-08 00:33:07 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:33:07 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-08 00:33:07 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-08 00:33:07 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-08 00:33:07 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:60134] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-08 00:33:07 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 84 -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:07 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@6463da36] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@6463da36] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@6463da36] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@6463da36] to [STARTING] -2024-08-08 00:33:07 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@6463da36] to [STARTED] -2024-08-08 00:33:07 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:07 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:33:07 - Filter 'requestContextFilter' configured for use -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:33:07 - Filter 'webMvcObservationFilter' configured for use -2024-08-08 00:33:07 - Filter 'characterEncodingFilter' configured for use -2024-08-08 00:33:07 - Filter 'formContentFilter' configured for use -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:33:07 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:33:07 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:33:07 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:33:07 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-08 00:33:07 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:07 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.mapper.MapperListener@47fb7ec9] to [STARTING_PREP] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.mapper.MapperListener@47fb7ec9] to [STARTING] -2024-08-08 00:33:07 - [javax.management.remote.rmi.RMIConnectionImpl@512319f5: connectionId=rmi://127.0.0.1 1] closing. -2024-08-08 00:33:07 - [javax.management.remote.rmi.RMIConnectionImpl@512319f5: connectionId=rmi://127.0.0.1 1] closed. -2024-08-08 00:33:07 - Registered host [localhost] -2024-08-08 00:33:07 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-08 00:33:07 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-08 00:33:07 - Register Context [] for service [StandardService[Tomcat]] -2024-08-08 00:33:07 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-08 00:33:07 - Setting state for [org.apache.catalina.mapper.MapperListener@47fb7ec9] to [STARTED] -2024-08-08 00:33:07 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-08 00:33:07 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-08 00:33:07 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-08 00:33:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:33:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:33:07 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-08 00:33:07 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-08 00:33:07 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-08 00:33:07 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:33:07 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:33:07 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-08 00:33:07 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-08 00:33:07 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-08 00:33:07 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-08 00:33:07 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-08 00:33:07 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-08 00:33:07 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-08 00:33:07 - HHH000206: 'hibernate.properties' not found -2024-08-08 00:33:07 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-08 00:33:07 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-08 00:33:07 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 00:33:07 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 00:33:07 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-08 00:33:07 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-08 00:33:07 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-08 00:33:07 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 00:33:07 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-08 00:33:07 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-08 00:33:07 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 00:33:07 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-08 00:33:07 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-08 00:33:07 - HHH000026: Second-level cache disabled -2024-08-08 00:33:07 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-08 00:33:07 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-08 00:33:07 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-08 00:33:07 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-08 00:33:07 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-08 00:33:07 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 00:33:07 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 00:33:07 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:33:07 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:33:07 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-08 00:33:07 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-08 00:33:07 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 00:33:07 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 00:33:07 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 00:33:07 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 00:33:07 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 00:33:07 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 00:33:07 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 00:33:07 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 00:33:07 - Adding type registration image -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-08 00:33:07 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-08 00:33:07 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-08 00:33:07 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-08 00:33:07 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-08 00:33:07 - Adding type registration short -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 00:33:07 - Adding type registration short -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 00:33:07 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 00:33:07 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 00:33:07 - Adding type registration int -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 00:33:07 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 00:33:07 - Adding type registration long -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 00:33:07 - Adding type registration long -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 00:33:07 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 00:33:07 - Adding type registration float -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-08 00:33:07 - Adding type registration float -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-08 00:33:07 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-08 00:33:07 - Adding type registration double -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 00:33:07 - Adding type registration double -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 00:33:07 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 00:33:07 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 00:33:07 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 00:33:07 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-08 00:33:07 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-08 00:33:07 - Adding type registration character -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-08 00:33:07 - Adding type registration char -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-08 00:33:07 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-08 00:33:07 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 00:33:07 - Adding type registration string -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-08 00:33:07 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-08 00:33:07 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-08 00:33:07 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 00:33:07 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 00:33:07 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 00:33:07 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 00:33:07 - Adding type registration text -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 00:33:07 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 00:33:07 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 00:33:07 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 00:33:07 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-08 00:33:07 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-08 00:33:07 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-08 00:33:07 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-08 00:33:07 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-08 00:33:07 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-08 00:33:07 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-08 00:33:07 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-08 00:33:07 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 00:33:07 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 00:33:07 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 00:33:07 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 00:33:07 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-08 00:33:07 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-08 00:33:07 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-08 00:33:07 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-08 00:33:07 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 00:33:07 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 00:33:07 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 00:33:07 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-08 00:33:07 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-08 00:33:07 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-08 00:33:07 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-08 00:33:07 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-08 00:33:07 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-08 00:33:07 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-08 00:33:07 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-08 00:33:07 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-08 00:33:07 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-08 00:33:07 - Adding type registration date -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-08 00:33:07 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-08 00:33:07 - Adding type registration time -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-08 00:33:07 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-08 00:33:07 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-08 00:33:07 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-08 00:33:07 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-08 00:33:07 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-08 00:33:07 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-08 00:33:07 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-08 00:33:07 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-08 00:33:07 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-08 00:33:07 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-08 00:33:07 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-08 00:33:07 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-08 00:33:07 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-08 00:33:07 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-08 00:33:07 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-08 00:33:07 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-08 00:33:07 - Adding type registration class -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-08 00:33:07 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-08 00:33:07 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-08 00:33:07 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-08 00:33:07 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-08 00:33:07 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-08 00:33:07 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-08 00:33:07 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@2c5708e7 -2024-08-08 00:33:07 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@2c5708e7 -2024-08-08 00:33:07 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-08 00:33:07 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-08 00:33:07 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@4e26564d -2024-08-08 00:33:07 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@4e26564d -2024-08-08 00:33:07 - Adding type registration url -> org.hibernate.type.BasicTypeReference@42238078 -2024-08-08 00:33:07 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@42238078 -2024-08-08 00:33:07 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@5627b8eb -2024-08-08 00:33:07 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@49fe0bcd -2024-08-08 00:33:07 - Adding type registration object -> org.hibernate.type.JavaObjectType@3e2772a9 -2024-08-08 00:33:07 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@3e2772a9 -2024-08-08 00:33:07 - Adding type registration null -> org.hibernate.type.NullType@2739ecc0 -2024-08-08 00:33:07 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@2932e15f -2024-08-08 00:33:07 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@3d98729a -2024-08-08 00:33:07 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@2375a976 -2024-08-08 00:33:07 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@4bc21e34 -2024-08-08 00:33:07 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@7544260a -2024-08-08 00:33:07 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@bb6869a -2024-08-08 00:33:07 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@506b083 -2024-08-08 00:33:07 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@5eee3da9 -2024-08-08 00:33:07 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@3355b8ff] into BootstrapContext; was [null] -2024-08-08 00:33:07 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@3355b8ff) [was null] -2024-08-08 00:33:07 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@2cff5aa3] into BootstrapContext; was [null] -2024-08-08 00:33:07 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@b6136eb] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@2cce10bc] -2024-08-08 00:33:07 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-08 00:33:07 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-08 00:33:07 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-08 00:33:07 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-08 00:33:07 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-08 00:33:07 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@3355b8ff] -2024-08-08 00:33:07 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@3355b8ff] -2024-08-08 00:33:07 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-08 00:33:07 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-08 00:33:07 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 00:33:07 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 00:33:07 - JDBC version : 4.2 -2024-08-08 00:33:07 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-08 00:33:07 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-08 00:33:07 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-08 00:33:07 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-08 00:33:07 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-08 00:33:07 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 00:33:07 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 00:33:07 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-08 00:33:07 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-08 00:33:07 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 00:33:07 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 00:33:07 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@491cc0eb] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@727f36dd] -2024-08-08 00:33:07 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-08 00:33:07 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-08 00:33:07 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-08 00:33:07 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-08 00:33:07 - Import with entity name Action -2024-08-08 00:33:07 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-08 00:33:07 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:33:07 - Binding column: AnnotatedColumn() -2024-08-08 00:33:07 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:33:07 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:33:07 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:33:07 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-08 00:33:07 - building BasicValue for id -2024-08-08 00:33:07 - Skipping column re-registration: action.id -2024-08-08 00:33:07 - Building property id -2024-08-08 00:33:07 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:33:07 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:33:07 - Binding column: AnnotatedColumn() -2024-08-08 00:33:07 - Building property event -2024-08-08 00:33:07 - Binding column: AnnotatedColumn() -2024-08-08 00:33:07 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 00:33:07 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-08 00:33:07 - building BasicValue for sequence -2024-08-08 00:33:07 - Skipping column re-registration: action.sequence -2024-08-08 00:33:07 - Building property sequence -2024-08-08 00:33:07 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:33:07 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-08 00:33:07 - Import with entity name BillAction -2024-08-08 00:33:07 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-08 00:33:07 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:33:07 - Binding column: AnnotatedColumn() -2024-08-08 00:33:07 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:33:07 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:33:07 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:33:07 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-08 00:33:07 - building BasicValue for id -2024-08-08 00:33:07 - Skipping column re-registration: bill_action.id -2024-08-08 00:33:07 - Building property id -2024-08-08 00:33:07 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:33:07 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:33:07 - Binding column: AnnotatedColumn() -2024-08-08 00:33:07 - Building property action -2024-08-08 00:33:07 - Binding column: AnnotatedColumn() -2024-08-08 00:33:07 - MetadataSourceProcessor property price with lazy=false -2024-08-08 00:33:07 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-08 00:33:07 - building BasicValue for price -2024-08-08 00:33:07 - Skipping column re-registration: bill_action.price -2024-08-08 00:33:07 - Building property price -2024-08-08 00:33:07 - Binding column: AnnotatedColumn() -2024-08-08 00:33:07 - MetadataSourceProcessor property title with lazy=false -2024-08-08 00:33:07 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-08 00:33:07 - building BasicValue for title -2024-08-08 00:33:07 - Skipping column re-registration: bill_action.title -2024-08-08 00:33:07 - Building property title -2024-08-08 00:33:07 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:33:07 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-08 00:33:07 - Import with entity name MemberAction -2024-08-08 00:33:07 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-08 00:33:07 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:33:07 - Binding column: AnnotatedColumn() -2024-08-08 00:33:07 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:33:07 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:33:07 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:33:07 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-08 00:33:07 - building BasicValue for id -2024-08-08 00:33:07 - Skipping column re-registration: member_action.id -2024-08-08 00:33:07 - Building property id -2024-08-08 00:33:07 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:33:07 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:33:07 - Binding column: AnnotatedColumn() -2024-08-08 00:33:07 - Building property action -2024-08-08 00:33:07 - Binding column: AnnotatedColumn() -2024-08-08 00:33:07 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-08 00:33:07 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-08 00:33:07 - building BasicValue for memberGroupId -2024-08-08 00:33:07 - Skipping column re-registration: member_action.member_group_id -2024-08-08 00:33:07 - Building property memberGroupId -2024-08-08 00:33:07 - Binding column: AnnotatedColumn() -2024-08-08 00:33:07 - MetadataSourceProcessor property memberName with lazy=false -2024-08-08 00:33:07 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-08 00:33:07 - building BasicValue for memberName -2024-08-08 00:33:07 - Skipping column re-registration: member_action.member_name -2024-08-08 00:33:07 - Building property memberName -2024-08-08 00:33:07 - Binding column: AnnotatedColumn() -2024-08-08 00:33:07 - MetadataSourceProcessor property status with lazy=false -2024-08-08 00:33:07 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-08 00:33:07 - building BasicValue for status -2024-08-08 00:33:07 - Skipping column re-registration: member_action.status -2024-08-08 00:33:07 - Building property status -2024-08-08 00:33:07 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:33:07 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-08 00:33:07 - Import with entity name Event -2024-08-08 00:33:07 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-08 00:33:07 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:33:07 - Binding column: AnnotatedColumn() -2024-08-08 00:33:07 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:33:07 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:33:07 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:33:07 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-08 00:33:07 - building BasicValue for id -2024-08-08 00:33:07 - Skipping column re-registration: event.id -2024-08-08 00:33:07 - Building property id -2024-08-08 00:33:07 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:33:07 - Binding column: AnnotatedColumn() -2024-08-08 00:33:07 - MetadataSourceProcessor property name with lazy=false -2024-08-08 00:33:07 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-08 00:33:07 - building BasicValue for name -2024-08-08 00:33:07 - Skipping column re-registration: event.name -2024-08-08 00:33:07 - Building property name -2024-08-08 00:33:07 - Binding column: AnnotatedColumn() -2024-08-08 00:33:07 - MetadataSourceProcessor property password with lazy=false -2024-08-08 00:33:07 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-08 00:33:07 - building BasicValue for password -2024-08-08 00:33:07 - Skipping column re-registration: event.password -2024-08-08 00:33:07 - Building property password -2024-08-08 00:33:07 - Binding column: AnnotatedColumn() -2024-08-08 00:33:07 - MetadataSourceProcessor property token with lazy=false -2024-08-08 00:33:07 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-08 00:33:07 - building BasicValue for token -2024-08-08 00:33:07 - Skipping column re-registration: event.token -2024-08-08 00:33:07 - Building property token -2024-08-08 00:33:07 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-08 00:33:07 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 00:33:07 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-08 00:33:07 - Import with entity name EventStep -2024-08-08 00:33:07 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-08 00:33:07 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-08 00:33:07 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:33:07 - Binding column: AnnotatedColumn() -2024-08-08 00:33:07 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:33:07 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:33:07 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:33:07 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-08 00:33:07 - building BasicValue for id -2024-08-08 00:33:07 - Skipping column re-registration: event_step.id -2024-08-08 00:33:07 - Building property id -2024-08-08 00:33:07 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:33:07 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:33:07 - Binding column: AnnotatedColumn() -2024-08-08 00:33:07 - Building property event -2024-08-08 00:33:07 - Binding column: AnnotatedColumn() -2024-08-08 00:33:07 - MetadataSourceProcessor property name with lazy=false -2024-08-08 00:33:07 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-08 00:33:07 - building BasicValue for name -2024-08-08 00:33:07 - Skipping column re-registration: event_step.name -2024-08-08 00:33:07 - Building property name -2024-08-08 00:33:07 - Binding column: AnnotatedColumn() -2024-08-08 00:33:07 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 00:33:07 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-08 00:33:07 - building BasicValue for sequence -2024-08-08 00:33:07 - Skipping column re-registration: event_step.sequence -2024-08-08 00:33:07 - Building property sequence -2024-08-08 00:33:07 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 00:33:07 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:33:07 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 00:33:07 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:33:07 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-08 00:33:07 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-08 00:33:07 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:33:07 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-08 00:33:07 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-08 00:33:07 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-08 00:33:07 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:33:07 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 00:33:07 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-08 00:33:07 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-08 00:33:07 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:33:07 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 00:33:07 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 00:33:07 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-08 00:33:07 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-08 00:33:07 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-08 00:33:07 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-08 00:33:07 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-08 00:33:07 - Building session factory -2024-08-08 00:33:07 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-08 00:33:07 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-08 00:33:07 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:33:07 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@646bf8a6, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@4a094f90, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.5327148333754173311, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=87281, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.5327148333754173311, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@1b5623b4, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-08 00:33:07 - Session factory constructed with filter configurations : {} -2024-08-08 00:33:07 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:33:07 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:33:07 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:33:07 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:33:07 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:33:07 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:33:07 - Loaded expression factory via original TCCL -2024-08-08 00:33:07 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:33:07 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:33:07 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:33:07 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:33:07 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:33:07 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:33:07 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:33:07 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:33:08 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:33:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:33:08 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:33:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:33:08 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:33:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:33:08 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:33:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:33:08 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@5eae392d] under count; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@5c81ddab] under every; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@24ee6faa] under any; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3a9040f0] under sinh; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@33214124] under cosh; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2d3768ce] under tanh; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2a9ea03f] under pi; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1231f25c] under log; prior registration was null -2024-08-08 00:33:08 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-08 00:33:08 - Registering alternate key : length -> character_length -2024-08-08 00:33:08 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@6761f75b] under position; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@21d48c40] under overlay; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@2fc0ad21] under trim; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@4a7c72af] under cast; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3e24bab6] under collate; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@391e2a] under extract; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@25dc2c0] under ifnull; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@6a8bcb64] under pad; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@78b2d29e] under str; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@b814e23] under format; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@7c4a5ef2] under timestampadd; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@5eb9bf7d] under timestampdiff; prior registration was null -2024-08-08 00:33:08 - Registering alternate key : dateadd -> timestampadd -2024-08-08 00:33:08 - Registering alternate key : datediff -> timestampdiff -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@123d0816] under current_date; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@4601a148] under current_time; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@4e210016] under current_timestamp; prior registration was null -2024-08-08 00:33:08 - Registering alternate key : current date -> current_date -2024-08-08 00:33:08 - Registering alternate key : current time -> current_time -2024-08-08 00:33:08 - Registering alternate key : current timestamp -> current_timestamp -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2fc40856] under local_date; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5543d800] under local_time; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1e033801] under local_datetime; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@58e4aa67] under offset_datetime; prior registration was null -2024-08-08 00:33:08 - Registering alternate key : local date -> local_date -2024-08-08 00:33:08 - Registering alternate key : local time -> local_time -2024-08-08 00:33:08 - Registering alternate key : local datetime -> local_datetime -2024-08-08 00:33:08 - Registering alternate key : offset datetime -> offset_datetime -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@57ed8f95] under instant; prior registration was null -2024-08-08 00:33:08 - Registering alternate key : current_instant -> instant -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@5d01a2eb] under sql; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@6fe337a5] under count; prior registration was org.hibernate.dialect.function.CountFunction@5eae392d -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@655f92a1] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2a9ea03f -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1d2d793d] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-08 00:33:08 - Registering alternate key : day -> day_of_month -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@5543d800 -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@1e033801 -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@38c1b1a7] under trunc; prior registration was null -2024-08-08 00:33:08 - Registering alternate key : truncate -> trunc -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@73230721] under date_trunc; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-08 00:33:08 - Registering alternate key : chr -> char -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@10bcbbce] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@6761f75b -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@27234b7c] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-08 00:33:08 - Registering alternate key : every -> bool_and -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-08 00:33:08 - Registering alternate key : any -> bool_or -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@125a8ab6] under format; prior registration was org.hibernate.dialect.function.FormatFunction@b814e23 -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@52d01430] under listagg; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@4ed19540] under mode; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@533e8807] under percentile_cont; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@322eb1a] under percentile_disc; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@5a45c218] under rank; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@2c6efee3] under dense_rank; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@57ac236a] under percent_rank; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@4542af89] under cume_dist; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@7be6dabb] under array; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@68fc636a] under array_list; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@656c0eae] under array_agg; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@6f5288c5] under array_position; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@270be080] under array_positions; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@46051269] under array_positions_list; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@67baa05] under array_length; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@347f8029] under array_concat; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@c414eb3] under array_prepend; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@4edd8a0a] under array_append; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@73905dff] under array_contains; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@5c0d3715] under array_contains_nullable; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@12478b4e] under array_overlaps; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@64921450] under array_overlaps_nullable; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7c07023] under array_get; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@1701beb3] under array_set; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@4e7151b3] under array_remove; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@1ba98508] under array_remove_index; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4b552b13] under array_slice; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@30b97fcf] under array_replace; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@b791e6e] under array_trim; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@78a34c47] under array_fill; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@77648321] under array_fill_list; prior registration was null -2024-08-08 00:33:08 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@219a2203] under array_to_string; prior registration was null -2024-08-08 00:33:08 - abs(NUMERIC arg) -2024-08-08 00:33:08 - Double acos(NUMERIC arg) -2024-08-08 00:33:08 - Boolean any(BOOLEAN predicate) -2024-08-08 00:33:08 - array( ... ) -2024-08-08 00:33:08 - array_agg(arg) -2024-08-08 00:33:08 - array_append( ... ) -2024-08-08 00:33:08 - array_concat( ... ) -2024-08-08 00:33:08 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 00:33:08 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 00:33:08 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-08 00:33:08 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-08 00:33:08 - array_get(ARRAY array, INTEGER index) -2024-08-08 00:33:08 - Integer array_length(ARRAY array) -2024-08-08 00:33:08 - array_list( ... ) -2024-08-08 00:33:08 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-08 00:33:08 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-08 00:33:08 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-08 00:33:08 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-08 00:33:08 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-08 00:33:08 - array_prepend( ... ) -2024-08-08 00:33:08 - array_remove( ... ) -2024-08-08 00:33:08 - array_remove_index( ... ) -2024-08-08 00:33:08 - array_replace( ... ) -2024-08-08 00:33:08 - array_set( ... ) -2024-08-08 00:33:08 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-08 00:33:08 - String array_to_string( ... ) -2024-08-08 00:33:08 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-08 00:33:08 - Integer ascii(STRING arg) -2024-08-08 00:33:08 - Double asin(NUMERIC arg) -2024-08-08 00:33:08 - Double atan(NUMERIC arg) -2024-08-08 00:33:08 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-08 00:33:08 - avg(NUMERIC arg) -2024-08-08 00:33:08 - bit_and(arg) -2024-08-08 00:33:08 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-08 00:33:08 - bit_or(arg) -2024-08-08 00:33:08 - bitand(arg0, arg1) -2024-08-08 00:33:08 - bitnot(arg) -2024-08-08 00:33:08 - bitor(arg0, arg1) -2024-08-08 00:33:08 - bitxor(arg0, arg1) -2024-08-08 00:33:08 - Boolean bool_and(BOOLEAN predicate) -2024-08-08 00:33:08 - Boolean bool_or(BOOLEAN predicate) -2024-08-08 00:33:08 - cast(arg as Type) -2024-08-08 00:33:08 - ceiling(NUMERIC arg) -2024-08-08 00:33:08 - Character char(INTEGER arg) -2024-08-08 00:33:08 - Integer character_length(STRING_OR_CLOB arg) -2024-08-08 00:33:08 - Character chr(INTEGER arg) -2024-08-08 00:33:08 - coalesce(arg0[, arg1[, ...]]) -2024-08-08 00:33:08 - String collate(STRING string as COLLATION collation) -2024-08-08 00:33:08 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-08 00:33:08 - Double cos(NUMERIC arg) -2024-08-08 00:33:08 - Double cosh(NUMERIC arg) -2024-08-08 00:33:08 - Double cot(NUMERIC arg) -2024-08-08 00:33:08 - Long count([distinct ]{arg|*}) -2024-08-08 00:33:08 - Double cume_dist([arg0[, ...]]) -2024-08-08 00:33:08 - Date curdate() -2024-08-08 00:33:08 - Date current date -2024-08-08 00:33:08 - Time current time -2024-08-08 00:33:08 - Timestamp current timestamp -2024-08-08 00:33:08 - Date current_date -2024-08-08 00:33:08 - Instant current_instant -2024-08-08 00:33:08 - Time current_time -2024-08-08 00:33:08 - Timestamp current_timestamp -2024-08-08 00:33:08 - Time curtime() -2024-08-08 00:33:08 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-08 00:33:08 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 00:33:08 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 00:33:08 - Integer day(DATE arg) -2024-08-08 00:33:08 - Integer day_of_month(DATE arg) -2024-08-08 00:33:08 - Integer day_of_week(DATE arg) -2024-08-08 00:33:08 - Integer day_of_year(DATE arg) -2024-08-08 00:33:08 - String dayname(DATE arg) -2024-08-08 00:33:08 - Double degrees(NUMERIC arg) -2024-08-08 00:33:08 - Long dense_rank([arg0[, ...]]) -2024-08-08 00:33:08 - Boolean every(BOOLEAN predicate) -2024-08-08 00:33:08 - Double exp(NUMERIC arg) -2024-08-08 00:33:08 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-08 00:33:08 - first_valueANY value -2024-08-08 00:33:08 - floor(NUMERIC arg) -2024-08-08 00:33:08 - String format(TEMPORAL datetime as STRING pattern) -2024-08-08 00:33:08 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 00:33:08 - Integer hour(TIME arg) -2024-08-08 00:33:08 - ifnull(arg0, arg1) -2024-08-08 00:33:08 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-08 00:33:08 - Instant instant -2024-08-08 00:33:08 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-08 00:33:08 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-08 00:33:08 - last_valueANY value -2024-08-08 00:33:08 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-08 00:33:08 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 00:33:08 - String left(STRING string, INTEGER length) -2024-08-08 00:33:08 - Integer length(STRING_OR_CLOB arg) -2024-08-08 00:33:08 - String listagg(STRING arg0, STRING arg1) -2024-08-08 00:33:08 - Double ln(NUMERIC arg) -2024-08-08 00:33:08 - LocalDate local date -2024-08-08 00:33:08 - LocalDateTime local datetime -2024-08-08 00:33:08 - LocalTime local time -2024-08-08 00:33:08 - LocalDate local_date -2024-08-08 00:33:08 - LocalDateTime local_datetime -2024-08-08 00:33:08 - LocalTime local_time -2024-08-08 00:33:08 - Time localtime -2024-08-08 00:33:08 - Timestamp localtimestamp -2024-08-08 00:33:08 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-08 00:33:08 - Double log(NUMERIC base, NUMERIC arg) -2024-08-08 00:33:08 - Double log10(NUMERIC arg) -2024-08-08 00:33:08 - String lower(STRING string) -2024-08-08 00:33:08 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 00:33:08 - String ltrim(STRING string) -2024-08-08 00:33:08 - max(COMPARABLE arg) -2024-08-08 00:33:08 - Double median(NUMERIC arg) -2024-08-08 00:33:08 - Integer microsecond(TIME arg) -2024-08-08 00:33:08 - min(COMPARABLE arg) -2024-08-08 00:33:08 - Integer minute(TIME arg) -2024-08-08 00:33:08 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-08 00:33:08 - mode() -2024-08-08 00:33:08 - Integer month(DATE arg) -2024-08-08 00:33:08 - String monthname(DATE arg) -2024-08-08 00:33:08 - Timestamp now() -2024-08-08 00:33:08 - nth_valueANY value, INTEGER nth -2024-08-08 00:33:08 - nullif(arg0, arg1) -2024-08-08 00:33:08 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-08 00:33:08 - OffsetDateTime offset datetime -2024-08-08 00:33:08 - OffsetDateTime offset_datetime -2024-08-08 00:33:08 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-08 00:33:08 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-08 00:33:08 - Double percent_rank([arg0[, ...]]) -2024-08-08 00:33:08 - percentile_cont(NUMERIC arg) -2024-08-08 00:33:08 - percentile_disc(NUMERIC arg) -2024-08-08 00:33:08 - Double pi -2024-08-08 00:33:08 - Integer position(STRING pattern in STRING string) -2024-08-08 00:33:08 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-08 00:33:08 - Integer quarter(DATE arg) -2024-08-08 00:33:08 - Double radians(NUMERIC arg) -2024-08-08 00:33:08 - Double rand([INTEGER seed]) -2024-08-08 00:33:08 - Long rank([arg0[, ...]]) -2024-08-08 00:33:08 - String repeat(STRING string, INTEGER times) -2024-08-08 00:33:08 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-08 00:33:08 - String right(STRING string, INTEGER length) -2024-08-08 00:33:08 - round(NUMERIC number[, INTEGER places]) -2024-08-08 00:33:08 - Long row_number() -2024-08-08 00:33:08 - Long rownum() -2024-08-08 00:33:08 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 00:33:08 - String rtrim(STRING string) -2024-08-08 00:33:08 - Integer second(TIME arg) -2024-08-08 00:33:08 - Integer sign(NUMERIC arg) -2024-08-08 00:33:08 - Double sin(NUMERIC arg) -2024-08-08 00:33:08 - Double sinh(NUMERIC arg) -2024-08-08 00:33:08 - String soundex(arg) -2024-08-08 00:33:08 - String space(INTEGER arg) -2024-08-08 00:33:08 - Object sql -2024-08-08 00:33:08 - Double sqrt(NUMERIC arg) -2024-08-08 00:33:08 - Double stddev_pop(NUMERIC arg) -2024-08-08 00:33:08 - Double stddev_samp(NUMERIC arg) -2024-08-08 00:33:08 - String str(arg) -2024-08-08 00:33:08 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-08 00:33:08 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-08 00:33:08 - sum(arg) -2024-08-08 00:33:08 - Timestamp sysdate -2024-08-08 00:33:08 - Double tan(NUMERIC arg) -2024-08-08 00:33:08 - Double tanh(NUMERIC arg) -2024-08-08 00:33:08 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 00:33:08 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 00:33:08 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-08 00:33:08 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-08 00:33:08 - trunc( ... ) -2024-08-08 00:33:08 - truncate( ... ) -2024-08-08 00:33:08 - String upper(STRING string) -2024-08-08 00:33:08 - Double var_pop(NUMERIC arg) -2024-08-08 00:33:08 - Double var_samp(NUMERIC arg) -2024-08-08 00:33:08 - Integer week(DATE arg) -2024-08-08 00:33:08 - Integer year(DATE arg) -2024-08-08 00:33:08 - Starting QueryInterpretationCache(2048) -2024-08-08 00:33:08 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-08 00:33:08 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-08 00:33:08 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:33:08 - Configured EntityCopyObserver strategy: disallow -2024-08-08 00:33:08 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:33:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:33:08 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:33:08 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-08 00:33:08 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:33:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:33:08 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-08 00:33:08 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:33:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:33:08 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-08 00:33:08 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:33:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:33:08 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-08 00:33:08 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:33:08 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:33:08 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-08 00:33:08 - Starting post-init callbacks -2024-08-08 00:33:08 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-08 00:33:08 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-08 00:33:08 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-08 00:33:08 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-08 00:33:08 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-08 00:33:08 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-08 00:33:08 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-08 00:33:08 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-08 00:33:08 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-08 00:33:08 - Created new SQL alias : ba1_0 -2024-08-08 00:33:08 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-08 00:33:08 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@12a7515b] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-08 00:33:08 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-08 00:33:08 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-08 00:33:08 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-08 00:33:08 - Version select: select id from bill_action where id=? -2024-08-08 00:33:08 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-08 00:33:08 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-08 00:33:08 - Delete (0): delete from bill_action where id=? -2024-08-08 00:33:08 - Created new SQL alias : ma1_0 -2024-08-08 00:33:08 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-08 00:33:08 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@66ce4b4] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-08 00:33:08 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-08 00:33:08 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-08 00:33:08 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-08 00:33:08 - Version select: select id from member_action where id=? -2024-08-08 00:33:08 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-08 00:33:08 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-08 00:33:08 - Delete (0): delete from member_action where id=? -2024-08-08 00:33:08 - Created new SQL alias : e1_0 -2024-08-08 00:33:08 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-08 00:33:08 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-08 00:33:08 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-08 00:33:08 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-08 00:33:08 - Version select: select id from event where id=? -2024-08-08 00:33:08 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-08 00:33:08 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-08 00:33:08 - Delete (0): delete from event where id=? -2024-08-08 00:33:08 - Created new SQL alias : a1_0 -2024-08-08 00:33:08 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-08 00:33:08 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@3e8eea59] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-08 00:33:08 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-08 00:33:08 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-08 00:33:08 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-08 00:33:08 - Version select: select id from action where id=? -2024-08-08 00:33:08 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-08 00:33:08 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-08 00:33:08 - Delete (0): delete from action where id=? -2024-08-08 00:33:08 - Created new SQL alias : es1_0 -2024-08-08 00:33:08 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-08 00:33:08 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@f9d8285] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-08 00:33:08 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-08 00:33:08 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-08 00:33:08 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-08 00:33:08 - Version select: select id from event_step where id=? -2024-08-08 00:33:08 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-08 00:33:08 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-08 00:33:08 - Delete (0): delete from event_step where id=? -2024-08-08 00:33:08 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 82 -2024-08-08 00:33:08 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@491cc0eb] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@29dcad7e] -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:08 - Checking 0 named HQL queries -2024-08-08 00:33:08 - Checking 0 named SQL queries -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 82 -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 82 -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 84 -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 82 -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 82 -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:08 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 82 -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:08 - [javax.management.remote.rmi.RMIConnectionImpl@485c3f0: connectionId=rmi://127.0.0.1 2] closing. -2024-08-08 00:33:08 - [javax.management.remote.rmi.RMIConnectionImpl@485c3f0: connectionId=rmi://127.0.0.1 2] closed. -2024-08-08 00:33:08 - - drop table if exists action cascade -2024-08-08 00:33:08 - - drop table if exists bill_action cascade -2024-08-08 00:33:08 - - drop table if exists event cascade -2024-08-08 00:33:08 - - drop table if exists event_step cascade -2024-08-08 00:33:08 - - drop table if exists member_action cascade -2024-08-08 00:33:08 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-08 00:33:08 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-08 00:33:08 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-08 00:33:08 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-08 00:33:08 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-08 00:33:08 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-08 00:33:08 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-08 00:33:08 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-08 00:33:08 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-08 00:33:08 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@5ac35b17 -2024-08-08 00:33:08 - Registering SessionFactory: 46e36e06-5a47-4cc8-9cb3-5bb92fef15ce (<unnamed>) -2024-08-08 00:33:08 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-08 00:33:08 - Instantiated SessionFactory -2024-08-08 00:33:08 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'actionService' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-08 00:33:08 - Initializing JpaMetamodelMappingContext… -2024-08-08 00:33:08 - Finished initializing JpaMetamodelMappingContext -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - Statistics initialized [enabled=false] -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-08 00:33:08 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-08 00:33:08 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - Looking up named query BillAction.findByAction_Event -2024-08-08 00:33:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:33:08 - Did not find named query BillAction.findByAction_Event -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - Looking up named query BillAction.findByAction_Id -2024-08-08 00:33:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:33:08 - Did not find named query BillAction.findByAction_Id -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-08 00:33:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:33:08 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-08 00:33:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:33:08 - Did not find named query MemberAction.findAllByEvent.count -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-08 00:33:08 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:33:08 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(767050980678250)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(767050980678250)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(767050980678250)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(767050980678250)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(767050980678250).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:33:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:33:08 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-08 00:33:08 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:33:08 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:33:08 - Looking up named query MemberAction.findByAction -2024-08-08 00:33:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:33:08 - Did not find named query MemberAction.findByAction -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:33:08 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-08 00:33:08 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 00:33:08 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:33:08 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 00:33:08 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 00:33:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:33:08 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 00:33:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:33:08 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:33:08 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-08 00:33:08 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 00:33:08 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-08 00:33:08 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 00:33:08 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'eventRepository' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - Looking up named query Event.findByToken -2024-08-08 00:33:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:33:08 - Did not find named query Event.findByToken -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-08 00:33:08 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-08 00:33:08 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:33:08 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'billActionService' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'actionRepository' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:33:08 - Did not find named query Action.findLastByEvent.count -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-08 00:33:08 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:33:08 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:33:08 - Looking up named query Action.findByIdAndEvent -2024-08-08 00:33:08 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:33:08 - Did not find named query Action.findByIdAndEvent -2024-08-08 00:33:08 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:33:08 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-08 00:33:08 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-08 00:33:08 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-08 00:33:08 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'eventService' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-08 00:33:08 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-08 00:33:08 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-08 00:33:08 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-08 00:33:08 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-08 00:33:08 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'memberActionService' -2024-08-08 00:33:08 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-08 00:33:08 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:33:08 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-08 00:33:08 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 00:33:08 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-08 00:33:08 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'actionController' -2024-08-08 00:33:08 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'billActionController' -2024-08-08 00:33:08 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'eventController' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'authService' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-08 00:33:08 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-08 00:33:08 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'memberActionController' -2024-08-08 00:33:08 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-08 00:33:08 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-08 00:33:08 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:33:08 - Loaded expression factory via original TCCL -2024-08-08 00:33:08 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-08 00:33:08 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-08 00:33:08 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:33:08 - Trying to load META-INF/validation.xml via user class loader -2024-08-08 00:33:08 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:33:08 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:33:08 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:33:08 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:33:08 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:33:08 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:33:08 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:33:08 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:33:08 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:33:08 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:33:08 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'error' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-08 00:33:08 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-08 00:33:08 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-08 00:33:08 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-08 00:33:08 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-08 00:33:08 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:33:08 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:33:08 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-08 00:33:08 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:33:08 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:33:08 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'localeResolver' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'themeResolver' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-08 00:33:08 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:33:08 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:33:08 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:33:08 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-08 00:33:08 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-08 00:33:08 - - s.h.p.EventController: - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) -2024-08-08 00:33:08 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-08 00:33:08 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-08 00:33:08 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-08 00:33:08 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:33:08 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-08 00:33:08 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:33:08 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:33:08 - 'beanNameHandlerMapping' {} -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-08 00:33:08 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:33:08 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'messageConverters' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-08 00:33:08 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-08 00:33:08 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:33:08 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:33:08 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'pageModule' -2024-08-08 00:33:08 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:33:08 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 00:33:08 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-08 00:33:08 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-08 00:33:08 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:33:08 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:33:08 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:33:08 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-08 00:33:08 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:33:08 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-08 00:33:08 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'sortResolver' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-08 00:33:08 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-08 00:33:08 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-08 00:33:08 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-08 00:33:08 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-08 00:33:08 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-08 00:33:08 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:33:08 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-08 00:33:08 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 00:33:08 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-08 00:33:08 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'transactionManager' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-08 00:33:08 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-08 00:33:08 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:33:08 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 82 -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 82 -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:08 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 82 -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 84 -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 82 -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:08 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-08 00:33:08 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:08 - [javax.management.remote.rmi.RMIConnectionImpl@6be72a19: connectionId=rmi://127.0.0.1 3] closing. -2024-08-08 00:33:08 - [javax.management.remote.rmi.RMIConnectionImpl@6be72a19: connectionId=rmi://127.0.0.1 3] closed. -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-08 00:33:08 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:33:08 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-08 00:33:08 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-08 00:33:08 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-08 00:33:08 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-08 00:33:08 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-08 00:33:08 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-08 00:33:08 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-08 00:33:08 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-08 00:33:08 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-08 00:33:08 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-08 00:33:08 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-08 00:33:08 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-08 00:33:08 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-08 00:33:08 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:33:08 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-08 00:33:08 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-08 00:33:08 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-08 00:33:08 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-08 00:33:08 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-08 00:33:08 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-08 00:33:08 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-08 00:33:08 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-08 00:33:08 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-08 00:33:08 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 00:33:08 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-08 00:33:08 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:33:08 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:33:08 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 00:33:08 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-08 00:33:08 - Using SLF4J as the default logging framework -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-08 00:33:08 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-08 00:33:08 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-08 00:33:08 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-08 00:33:08 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-08 00:33:08 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'observedAspect' -2024-08-08 00:33:08 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-08 00:33:08 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-08 00:33:08 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 00:33:08 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-08 00:33:08 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 00:33:08 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-08 00:33:08 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-08 00:33:08 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-08 00:33:08 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-08 00:33:08 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-08 00:33:08 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-08 00:33:08 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-08 00:33:08 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 00:33:08 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:33:08 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:33:08 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-08 00:33:08 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-08 00:33:08 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-08 00:33:08 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:33:08 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:33:08 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-08 00:33:08 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-08 00:33:08 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-08 00:33:08 - Registering beans for JMX exposure on startup -2024-08-08 00:33:08 - Auto-detecting user-defined JMX MBeans -2024-08-08 00:33:08 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-08 00:33:08 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-08 00:33:08 - Starting beans in phase -2147483647 -2024-08-08 00:33:08 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-08 00:33:08 - Starting beans in phase 2147481599 -2024-08-08 00:33:08 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-08 00:33:08 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-08 00:33:08 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-08 00:33:08 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-08 00:33:08 - Tomcat started on port 8080 (http) with context path '/' -2024-08-08 00:33:08 - Successfully started bean 'webServerStartStop' -2024-08-08 00:33:08 - Starting beans in phase 2147482623 -2024-08-08 00:33:08 - Successfully started bean 'webServerGracefulShutdown' -2024-08-08 00:33:08 - Starting beans in phase 2147483647 -2024-08-08 00:33:08 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-08 00:33:08 - Started HaengdongApplication in 2.146 seconds (process running for 2.337) -2024-08-08 00:33:08 - Application availability state LivenessState changed to CORRECT -2024-08-08 00:33:08 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-08 00:33:09 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 82 -2024-08-08 00:33:09 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 84 -2024-08-08 00:33:09 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:33:09 - RMI TCP Connection(1)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - [javax.management.remote.rmi.RMIConnectionImpl@741a04e9: connectionId=rmi://127.0.0.1 4] closing. -2024-08-08 00:33:09 - [javax.management.remote.rmi.RMIConnectionImpl@741a04e9: connectionId=rmi://127.0.0.1 4] closed. -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:60135] -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:60136] -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 84 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 84 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - [javax.management.remote.rmi.RMIConnectionImpl@7838ee30: connectionId=rmi://127.0.0.1 5] closing. -2024-08-08 00:33:09 - [javax.management.remote.rmi.RMIConnectionImpl@7838ee30: connectionId=rmi://127.0.0.1 5] closed. -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 84 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - [javax.management.remote.rmi.RMIConnectionImpl@1cec9114: connectionId=rmi://127.0.0.1 6] closing. -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - [javax.management.remote.rmi.RMIConnectionImpl@1cec9114: connectionId=rmi://127.0.0.1 6] closed. -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - [javax.management.remote.rmi.RMIConnectionImpl@4678ecce: connectionId=rmi://127.0.0.1 7] closing. -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - [javax.management.remote.rmi.RMIConnectionImpl@4678ecce: connectionId=rmi://127.0.0.1 7] closed. -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 84 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - [javax.management.remote.rmi.RMIConnectionImpl@67c6a996: connectionId=rmi://127.0.0.1 8] closing. -2024-08-08 00:33:09 - [javax.management.remote.rmi.RMIConnectionImpl@67c6a996: connectionId=rmi://127.0.0.1 8] closed. -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 82 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 82 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 84 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 82 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 84 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 82 -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 82 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - [javax.management.remote.rmi.RMIConnectionImpl@3258459: connectionId=rmi://127.0.0.1 9] closing. -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - [javax.management.remote.rmi.RMIConnectionImpl@3258459: connectionId=rmi://127.0.0.1 9] closed. -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - [javax.management.remote.rmi.RMIConnectionImpl@371adb47: connectionId=rmi://127.0.0.1 10] closing. -2024-08-08 00:33:09 - [javax.management.remote.rmi.RMIConnectionImpl@371adb47: connectionId=rmi://127.0.0.1 10] closed. -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 84 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 84 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:33:09 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-08 00:33:09 - Fetching JDBC Connection from DataSource -2024-08-08 00:33:09 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-08 00:33:09 - Initializing Servlet 'dispatcherServlet' -2024-08-08 00:33:09 - Detected StandardServletMultipartResolver -2024-08-08 00:33:09 - Detected AcceptHeaderLocaleResolver -2024-08-08 00:33:09 - Detected FixedThemeResolver -2024-08-08 00:33:09 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@6679a082 -2024-08-08 00:33:09 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@418f3cde -2024-08-08 00:33:09 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-08 00:33:09 - Completed initialization in 1 ms -2024-08-08 00:33:09 - Fetching JDBC Connection from DataSource -2024-08-08 00:33:09 - RMI TCP Connection(2)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - [javax.management.remote.rmi.RMIConnectionImpl@63f90ea4: connectionId=rmi://127.0.0.1 12] closing. -2024-08-08 00:33:09 - [javax.management.remote.rmi.RMIConnectionImpl@63f90ea4: connectionId=rmi://127.0.0.1 12] closed. -2024-08-08 00:33:09 - RMI TCP Connection(3)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:33:09 - [javax.management.remote.rmi.RMIConnectionImpl@1039c501: connectionId=rmi://127.0.0.1 11] closing. -2024-08-08 00:33:09 - [javax.management.remote.rmi.RMIConnectionImpl@1039c501: connectionId=rmi://127.0.0.1 11] closed. -2024-08-08 00:33:20 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.5327148333754173311/conf/jaspic-providers.xml] -2024-08-08 00:33:20 - POST "/api/events", parameters={} -2024-08-08 00:33:20 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:33:20 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:33:20 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=토다리, password=0987]] -2024-08-08 00:33:20 - Found thread-bound EntityManager [SessionImpl(1412294931<open>)] for JPA transaction -2024-08-08 00:33:20 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-08 00:33:20 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:33:20 - begin -2024-08-08 00:33:20 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@54ba4627] -2024-08-08 00:33:20 - Found thread-bound EntityManager [SessionImpl(1412294931<open>)] for JPA transaction -2024-08-08 00:33:20 - Participating in existing transaction -2024-08-08 00:33:20 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-08 00:33:20 - Executing identity-insert immediately -2024-08-08 00:33:20 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-08 00:33:20 - Initializer list is empty -2024-08-08 00:33:20 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@63d418c7 -2024-08-08 00:33:20 - Extracted JDBC value [0] - [1] -2024-08-08 00:33:20 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@528b0e9e -2024-08-08 00:33:20 - Initiating transaction commit -2024-08-08 00:33:20 - Committing JPA transaction on EntityManager [SessionImpl(1412294931<open>)] -2024-08-08 00:33:20 - committing -2024-08-08 00:33:20 - Processing flush-time cascades -2024-08-08 00:33:20 - Dirty checking collections -2024-08-08 00:33:20 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-08 00:33:20 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-08 00:33:20 - Listing entities: -2024-08-08 00:33:20 - server.haengdong.domain.event.Event{password=0987, name=토다리, id=1, token=2376d850-0019-429e-ac59-87ab8a6c0c06} -2024-08-08 00:33:20 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:33:20 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:33:20 - Writing [EventResponse[eventId=2376d850-0019-429e-ac59-87ab8a6c0c06]] -2024-08-08 00:33:20 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:33:20 - Completed 200 OK -2024-08-08 00:33:37 - RMI TCP Connection(3)-127.0.0.1: (port 60133) connection closed -2024-08-08 00:33:37 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60136,localport=60133] -2024-08-08 00:33:37 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60136,localport=60133] -2024-08-08 00:33:37 - RMI TCP Connection(1)-127.0.0.1: (port 60133) connection closed -2024-08-08 00:33:37 - RMI TCP Connection(2)-127.0.0.1: (port 60133) connection closed -2024-08-08 00:33:37 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60135,localport=60133] -2024-08-08 00:33:37 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60135,localport=60133] -2024-08-08 00:33:37 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60134,localport=60133] -2024-08-08 00:33:37 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60134,localport=60133] -2024-08-08 00:33:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:33:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:33:50 - OPTIONS "/api/events/2376d850-0019-429e-ac59-87ab8a6c0c06/member-actions", parameters={} -2024-08-08 00:33:50 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-08 00:33:50 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:33:50 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:33:50 - Completed 200 OK -2024-08-08 00:33:50 - POST "/api/events/2376d850-0019-429e-ac59-87ab8a6c0c06/member-actions", parameters={} -2024-08-08 00:33:50 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-08 00:33:50 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-08 00:33:50 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-08 00:33:50 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-08 00:33:50 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-08 00:33:50 - Completed 401 UNAUTHORIZED -2024-08-08 00:33:59 - POST "/api/events/2376d850-0019-429e-ac59-87ab8a6c0c06/member-actions", parameters={} -2024-08-08 00:33:59 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-08 00:33:59 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-08 00:33:59 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-08 00:33:59 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-08 00:33:59 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-08 00:33:59 - Completed 401 UNAUTHORIZED -2024-08-08 00:34:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:34:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:34:19 - POST "/api/events", parameters={} -2024-08-08 00:34:19 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:34:19 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:34:19 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=토다리, password=0987]] -2024-08-08 00:34:19 - Found thread-bound EntityManager [SessionImpl(2066497601<open>)] for JPA transaction -2024-08-08 00:34:19 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-08 00:34:19 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:34:19 - begin -2024-08-08 00:34:19 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@3e2ed140] -2024-08-08 00:34:19 - Found thread-bound EntityManager [SessionImpl(2066497601<open>)] for JPA transaction -2024-08-08 00:34:19 - Participating in existing transaction -2024-08-08 00:34:19 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-08 00:34:19 - Executing identity-insert immediately -2024-08-08 00:34:19 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-08 00:34:19 - Initializer list is empty -2024-08-08 00:34:19 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@6f0dfe70 -2024-08-08 00:34:19 - Extracted JDBC value [0] - [2] -2024-08-08 00:34:19 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@88ff404 -2024-08-08 00:34:19 - Initiating transaction commit -2024-08-08 00:34:19 - Committing JPA transaction on EntityManager [SessionImpl(2066497601<open>)] -2024-08-08 00:34:19 - committing -2024-08-08 00:34:19 - Processing flush-time cascades -2024-08-08 00:34:19 - Dirty checking collections -2024-08-08 00:34:19 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-08 00:34:19 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-08 00:34:19 - Listing entities: -2024-08-08 00:34:19 - server.haengdong.domain.event.Event{password=0987, name=토다리, id=2, token=a8fdcdc6-e1e2-461d-a58d-c583c8dbb10a} -2024-08-08 00:34:19 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:34:19 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:34:19 - Writing [EventResponse[eventId=a8fdcdc6-e1e2-461d-a58d-c583c8dbb10a]] -2024-08-08 00:34:19 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:34:19 - Completed 200 OK -2024-08-08 00:34:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:34:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:34:45 - POST "/api/events", parameters={} -2024-08-08 00:34:45 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:34:45 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:34:45 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=토다리, password=0987]] -2024-08-08 00:34:45 - Found thread-bound EntityManager [SessionImpl(2113477945<open>)] for JPA transaction -2024-08-08 00:34:45 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-08 00:34:45 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:34:45 - begin -2024-08-08 00:34:45 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@38fb8ce2] -2024-08-08 00:34:45 - Found thread-bound EntityManager [SessionImpl(2113477945<open>)] for JPA transaction -2024-08-08 00:34:45 - Participating in existing transaction -2024-08-08 00:34:45 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-08 00:34:45 - Executing identity-insert immediately -2024-08-08 00:34:45 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-08 00:34:45 - Initializer list is empty -2024-08-08 00:34:45 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@65e0f15e -2024-08-08 00:34:45 - Extracted JDBC value [0] - [3] -2024-08-08 00:34:45 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@574bc8c0 -2024-08-08 00:34:45 - Initiating transaction commit -2024-08-08 00:34:45 - Committing JPA transaction on EntityManager [SessionImpl(2113477945<open>)] -2024-08-08 00:34:45 - committing -2024-08-08 00:34:45 - Processing flush-time cascades -2024-08-08 00:34:45 - Dirty checking collections -2024-08-08 00:34:45 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-08 00:34:45 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-08 00:34:45 - Listing entities: -2024-08-08 00:34:45 - server.haengdong.domain.event.Event{password=0987, name=토다리, id=3, token=8d863f30-cdc9-4302-b5ac-d1c96aa09229} -2024-08-08 00:34:45 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:34:45 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:34:45 - Writing [EventResponse[eventId=8d863f30-cdc9-4302-b5ac-d1c96aa09229]] -2024-08-08 00:34:45 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:34:45 - Completed 200 OK -2024-08-08 00:35:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:35:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:35:13 - OPTIONS "/api/events/8d863f30-cdc9-4302-b5ac-d1c96aa09229/bill-actions", parameters={} -2024-08-08 00:35:13 - Mapped to server.haengdong.presentation.BillActionController#saveAllBillAction(String, BillActionsSaveRequest) -2024-08-08 00:35:13 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:35:13 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:35:13 - Completed 200 OK -2024-08-08 00:35:13 - POST "/api/events/8d863f30-cdc9-4302-b5ac-d1c96aa09229/bill-actions", parameters={} -2024-08-08 00:35:13 - Mapped to server.haengdong.presentation.BillActionController#saveAllBillAction(String, BillActionsSaveRequest) -2024-08-08 00:35:13 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-08 00:35:13 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-08 00:35:13 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-08 00:35:13 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-08 00:35:13 - Completed 401 UNAUTHORIZED -2024-08-08 00:35:32 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:60142] -2024-08-08 00:35:32 - RMI TCP Connection(4)-127.0.0.1: (port 60133) op = 80 -2024-08-08 00:35:32 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:35:32 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:35:32 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:35:32 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:35:32 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@20cff21e -2024-08-08 00:35:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:35:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:35:47 - RMI TCP Connection(4)-127.0.0.1: (port 60133) connection closed -2024-08-08 00:35:47 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60142,localport=60133] -2024-08-08 00:35:47 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60142,localport=60133] -2024-08-08 00:36:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:36:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:36:31 - POST "/api/events", parameters={} -2024-08-08 00:36:31 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:36:31 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:36:31 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=토다리, password=0987]] -2024-08-08 00:36:31 - Found thread-bound EntityManager [SessionImpl(2073005410<open>)] for JPA transaction -2024-08-08 00:36:31 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-08 00:36:31 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:36:31 - begin -2024-08-08 00:36:31 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@3e8d0c77] -2024-08-08 00:36:31 - Found thread-bound EntityManager [SessionImpl(2073005410<open>)] for JPA transaction -2024-08-08 00:36:31 - Participating in existing transaction -2024-08-08 00:36:31 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-08 00:36:31 - Executing identity-insert immediately -2024-08-08 00:36:31 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-08 00:36:31 - Initializer list is empty -2024-08-08 00:36:31 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@594ed3ca -2024-08-08 00:36:31 - Extracted JDBC value [0] - [4] -2024-08-08 00:36:31 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@609101d4 -2024-08-08 00:36:31 - Initiating transaction commit -2024-08-08 00:36:31 - Committing JPA transaction on EntityManager [SessionImpl(2073005410<open>)] -2024-08-08 00:36:31 - committing -2024-08-08 00:36:31 - Processing flush-time cascades -2024-08-08 00:36:31 - Dirty checking collections -2024-08-08 00:36:31 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-08 00:36:31 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-08 00:36:31 - Listing entities: -2024-08-08 00:36:31 - server.haengdong.domain.event.Event{password=0987, name=토다리, id=4, token=b0648ba3-ccef-4735-9106-7b4a09f2ba95} -2024-08-08 00:36:31 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:36:31 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:36:31 - Writing [EventResponse[eventId=b0648ba3-ccef-4735-9106-7b4a09f2ba95]] -2024-08-08 00:36:31 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:36:31 - Completed 200 OK -2024-08-08 00:36:33 - GET "/api/events", parameters={} -2024-08-08 00:36:33 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 00:36:33 - Using 'application/json;q=0.8', given [text/html, application/xhtml+xml, image/avif, image/webp, image/apng, application/xml;q=0.9, */*;q=0.8, application/signed-exchange;v=b3;q=0.7] and supported [application/json, application/*+json] -2024-08-08 00:36:33 - Writing [ErrorResponse[code=R_002, message=잘못된 엔드포인트입니다.]] -2024-08-08 00:36:33 - Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'GET' is not supported] -2024-08-08 00:36:33 - Completed 400 BAD_REQUEST -2024-08-08 00:36:33 - GET "/favicon.ico", parameters={} -2024-08-08 00:36:33 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 00:36:33 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:36:33 - Resource not found -2024-08-08 00:36:33 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 00:36:33 - Using 'application/json;q=0.8', given [image/avif, image/webp, image/apng, image/svg+xml, image/*, */*;q=0.8] and supported [application/json, application/*+json] -2024-08-08 00:36:33 - Writing [ErrorResponse[code=R_002, message=잘못된 엔드포인트입니다.]] -2024-08-08 00:36:33 - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource favicon.ico.] -2024-08-08 00:36:33 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:36:33 - Completed 400 BAD_REQUEST -2024-08-08 00:36:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:36:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:37:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:37:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:37:13 - GET "/api/events/8d863f30-cdc9-4302-b5ac-d1c96aa09229/bill-actions", parameters={} -2024-08-08 00:37:13 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 00:37:13 - Using 'application/json;q=0.8', given [text/html, application/xhtml+xml, image/avif, image/webp, image/apng, application/xml;q=0.9, */*;q=0.8, application/signed-exchange;v=b3;q=0.7] and supported [application/json, application/*+json] -2024-08-08 00:37:13 - Writing [ErrorResponse[code=R_002, message=잘못된 엔드포인트입니다.]] -2024-08-08 00:37:13 - Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'GET' is not supported] -2024-08-08 00:37:13 - Completed 400 BAD_REQUEST -2024-08-08 00:37:13 - GET "/favicon.ico", parameters={} -2024-08-08 00:37:13 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 00:37:13 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:37:13 - Resource not found -2024-08-08 00:37:13 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 00:37:13 - Using 'application/json;q=0.8', given [image/avif, image/webp, image/apng, image/svg+xml, image/*, */*;q=0.8] and supported [application/json, application/*+json] -2024-08-08 00:37:13 - Writing [ErrorResponse[code=R_002, message=잘못된 엔드포인트입니다.]] -2024-08-08 00:37:13 - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource favicon.ico.] -2024-08-08 00:37:13 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:37:13 - Completed 400 BAD_REQUEST -2024-08-08 00:37:20 - POST "/api/events", parameters={} -2024-08-08 00:37:20 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:37:20 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:37:20 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=토다리, password=0987]] -2024-08-08 00:37:20 - Found thread-bound EntityManager [SessionImpl(1853418481<open>)] for JPA transaction -2024-08-08 00:37:20 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-08 00:37:20 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:37:20 - begin -2024-08-08 00:37:20 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@6e867630] -2024-08-08 00:37:20 - Found thread-bound EntityManager [SessionImpl(1853418481<open>)] for JPA transaction -2024-08-08 00:37:20 - Participating in existing transaction -2024-08-08 00:37:20 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-08 00:37:20 - Executing identity-insert immediately -2024-08-08 00:37:20 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-08 00:37:20 - Initializer list is empty -2024-08-08 00:37:20 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@69e765a7 -2024-08-08 00:37:20 - Extracted JDBC value [0] - [5] -2024-08-08 00:37:20 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@598f33a7 -2024-08-08 00:37:20 - Initiating transaction commit -2024-08-08 00:37:20 - Committing JPA transaction on EntityManager [SessionImpl(1853418481<open>)] -2024-08-08 00:37:20 - committing -2024-08-08 00:37:20 - Processing flush-time cascades -2024-08-08 00:37:20 - Dirty checking collections -2024-08-08 00:37:20 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-08 00:37:20 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-08 00:37:20 - Listing entities: -2024-08-08 00:37:20 - server.haengdong.domain.event.Event{password=0987, name=토다리, id=5, token=a6a63e86-c7bb-4c8d-b58a-d6f1ad1c81d8} -2024-08-08 00:37:20 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:37:20 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:37:20 - Writing [EventResponse[eventId=a6a63e86-c7bb-4c8d-b58a-d6f1ad1c81d8]] -2024-08-08 00:37:20 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:37:20 - Completed 200 OK -2024-08-08 00:37:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:37:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:38:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:38:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:38:26 - GET "/", parameters={} -2024-08-08 00:38:26 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 00:38:26 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:38:26 - Resource not found -2024-08-08 00:38:26 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 00:38:26 - Using 'application/json;q=0.8', given [text/html, application/xhtml+xml, image/avif, image/webp, image/apng, application/xml;q=0.9, */*;q=0.8, application/signed-exchange;v=b3;q=0.7] and supported [application/json, application/*+json] -2024-08-08 00:38:26 - Writing [ErrorResponse[code=R_002, message=잘못된 엔드포인트입니다.]] -2024-08-08 00:38:26 - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource .] -2024-08-08 00:38:26 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:38:26 - Completed 400 BAD_REQUEST -2024-08-08 00:38:26 - GET "/favicon.ico", parameters={} -2024-08-08 00:38:26 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 00:38:26 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:38:26 - Resource not found -2024-08-08 00:38:26 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 00:38:26 - Using 'application/json;q=0.8', given [image/avif, image/webp, image/apng, image/svg+xml, image/*, */*;q=0.8] and supported [application/json, application/*+json] -2024-08-08 00:38:26 - Writing [ErrorResponse[code=R_002, message=잘못된 엔드포인트입니다.]] -2024-08-08 00:38:26 - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource favicon.ico.] -2024-08-08 00:38:26 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:38:26 - Completed 400 BAD_REQUEST -2024-08-08 00:38:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:38:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:38:49 - POST "/api/events", parameters={} -2024-08-08 00:38:49 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:38:49 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:38:49 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=토다리, password=0987]] -2024-08-08 00:38:49 - Found thread-bound EntityManager [SessionImpl(904212439<open>)] for JPA transaction -2024-08-08 00:38:49 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-08 00:38:49 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:38:49 - begin -2024-08-08 00:38:49 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@415dc740] -2024-08-08 00:38:49 - Found thread-bound EntityManager [SessionImpl(904212439<open>)] for JPA transaction -2024-08-08 00:38:49 - Participating in existing transaction -2024-08-08 00:38:49 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-08 00:38:49 - Executing identity-insert immediately -2024-08-08 00:38:49 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-08 00:38:49 - Initializer list is empty -2024-08-08 00:38:49 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@4fda9c3f -2024-08-08 00:38:49 - Extracted JDBC value [0] - [6] -2024-08-08 00:38:49 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@6a580e49 -2024-08-08 00:38:49 - Initiating transaction commit -2024-08-08 00:38:49 - Committing JPA transaction on EntityManager [SessionImpl(904212439<open>)] -2024-08-08 00:38:49 - committing -2024-08-08 00:38:49 - Processing flush-time cascades -2024-08-08 00:38:49 - Dirty checking collections -2024-08-08 00:38:49 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-08 00:38:49 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-08 00:38:49 - Listing entities: -2024-08-08 00:38:49 - server.haengdong.domain.event.Event{password=0987, name=토다리, id=6, token=0e3732c8-990a-4607-a21e-72c180d05c7d} -2024-08-08 00:38:49 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:38:49 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:38:49 - Writing [EventResponse[eventId=0e3732c8-990a-4607-a21e-72c180d05c7d]] -2024-08-08 00:38:49 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:38:49 - Completed 200 OK -2024-08-08 00:39:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:39:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:39:25 - OPTIONS "/api/events/0e3732c8-990a-4607-a21e-72c180d05c7d/member-actions", parameters={} -2024-08-08 00:39:25 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-08 00:39:25 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:39:25 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:39:25 - Completed 200 OK -2024-08-08 00:39:25 - POST "/api/events/0e3732c8-990a-4607-a21e-72c180d05c7d/member-actions", parameters={} -2024-08-08 00:39:25 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-08 00:39:25 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-08 00:39:25 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-08 00:39:25 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-08 00:39:25 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-08 00:39:25 - Completed 401 UNAUTHORIZED -2024-08-08 00:39:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:39:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:40:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:40:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:40:35 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-08 00:40:35 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Thu Aug 08 00:33:06 KST 2024 -2024-08-08 00:40:35 - Stopping beans in phase 2147483647 -2024-08-08 00:40:35 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-08 00:40:35 - Stopping beans in phase 2147482623 -2024-08-08 00:40:35 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-08 00:40:35 - Stopping beans in phase 2147481599 -2024-08-08 00:40:35 - Bean 'webServerStartStop' completed its stop procedure -2024-08-08 00:40:35 - Stopping beans in phase -2147483647 -2024-08-08 00:40:35 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-08 00:40:35 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-08 00:40:35 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-08 00:40:35 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-08 00:40:35 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-08 00:40:35 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-08 00:40:35 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-08 00:40:35 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-08 00:40:35 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-08 00:40:35 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-08 00:40:35 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-08 00:40:35 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-08 00:40:35 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-08 00:40:35 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-08 00:40:35 - Unregistering JMX-exposed beans on shutdown -2024-08-08 00:40:35 - Unregistering JMX-exposed beans -2024-08-08 00:40:35 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-08 00:40:35 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 00:40:35 - HHH000031: Closing -2024-08-08 00:40:35 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@2121b2c0] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@29dcad7e] -2024-08-08 00:40:35 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-08 00:40:35 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-08 00:40:35 - HikariPool-1 - Shutdown initiated... -2024-08-08 00:40:35 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:40:35 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:40:35 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:40:35 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:40:35 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:40:35 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:40:35 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:40:35 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:40:35 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:40:35 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:40:35 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:40:35 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-08 00:40:35 - HikariPool-1 - Shutdown completed. -2024-08-08 00:40:35 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-08 00:40:36 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-08 00:40:36 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-08 00:40:36 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:40:36 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:40:36 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:40:36 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:40:36 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:40:36 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:40:36 - Loaded expression factory via original TCCL -2024-08-08 00:40:36 - Starting HaengdongApplication using Java 17.0.12 with PID 87694 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-08 00:40:36 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-08 00:40:36 - No active profile set, falling back to 1 default profile: "default" -2024-08-08 00:40:36 - Loading source class server.haengdong.HaengdongApplication -2024-08-08 00:40:36 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-08 00:40:36 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-08 00:40:36 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:40:36 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:40:36 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:40:36 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:40:36 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:40:36 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:40:36 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-08 00:40:36 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-08 00:40:36 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-08 00:40:36 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-08 00:40:36 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-08 00:40:36 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-08 00:40:36 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-08 00:40:36 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 00:40:36 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 00:40:36 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 00:40:36 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-08 00:40:36 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 00:40:36 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-08 00:40:36 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-08 00:40:36 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-08 00:40:36 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-08 00:40:36 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-08 00:40:36 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-08 00:40:37 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-08 00:40:37 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-08 00:40:37 - Scanning for JPA repositories in packages server.haengdong. -2024-08-08 00:40:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 00:40:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 00:40:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 00:40:37 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 00:40:37 - Finished Spring Data repository scanning in 16 ms. Found 4 JPA repository interfaces. -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-08 00:40:37 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-08 00:40:37 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-08 00:40:37 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 00:40:37 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-08 00:40:37 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 00:40:37 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 00:40:37 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-08 00:40:37 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-08 00:40:37 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@4fa86cb8] -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-08 00:40:37 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-08 00:40:37 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-08 00:40:37 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-08 00:40:37 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-08 00:40:37 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-08 00:40:37 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-08 00:40:37 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-08 00:40:37 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 00:40:37 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:40:37 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:40:37 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:40:37 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-08 00:40:37 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 00:40:37 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 00:40:37 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-08 00:40:37 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-08 00:40:37 - Tomcat initialized with port 8080 (http) -2024-08-08 00:40:37 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@79cb8ffa] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@79cb8ffa] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.mapper.MapperListener@62ea8931] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.mapper.MapperListener@62ea8931] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-08 00:40:37 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-08 00:40:37 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@79cb8ffa] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@79cb8ffa] to [STARTING] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@79cb8ffa] to [STARTED] -2024-08-08 00:40:37 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-08 00:40:37 - Starting service [Tomcat] -2024-08-08 00:40:37 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-08 00:40:37 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-08 00:40:37 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.webresources.StandardRoot@3d1c933] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.webresources.StandardRoot@3d1c933] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.webresources.StandardRoot@3d1c933] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.webresources.DirResourceSet@77aea] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.webresources.DirResourceSet@77aea] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.webresources.DirResourceSet@77aea] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.webresources.DirResourceSet@77aea] to [STARTING] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.webresources.DirResourceSet@77aea] to [STARTED] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.webresources.StandardRoot@3d1c933] to [STARTING] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.webresources.StandardRoot@3d1c933] to [STARTED] -2024-08-08 00:40:37 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:40:37 - Starting this Loader -2024-08-08 00:40:37 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:40:37 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:40:37 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-08 00:40:37 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@514377fc] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@514377fc] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@514377fc] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@514377fc] to [STARTING] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@514377fc] to [STARTED] -2024-08-08 00:40:37 - Initializing Spring embedded WebApplicationContext -2024-08-08 00:40:37 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-08 00:40:37 - Root WebApplicationContext: initialization completed in 627 ms -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-08 00:40:37 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-08 00:40:37 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-08 00:40:37 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-08 00:40:37 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:40:37 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-08 00:40:37 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'h2Console' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'dataSource' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-08 00:40:37 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-08 00:40:37 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-08 00:40:37 - HikariPool-1 - configuration: -2024-08-08 00:40:37 - allowPoolSuspension.............false -2024-08-08 00:40:37 - autoCommit......................true -2024-08-08 00:40:37 - catalog.........................none -2024-08-08 00:40:37 - connectionInitSql...............none -2024-08-08 00:40:37 - connectionTestQuery.............none -2024-08-08 00:40:37 - connectionTimeout...............30000 -2024-08-08 00:40:37 - dataSource......................none -2024-08-08 00:40:37 - dataSourceClassName.............none -2024-08-08 00:40:37 - dataSourceJNDI..................none -2024-08-08 00:40:37 - dataSourceProperties............{password=<masked>} -2024-08-08 00:40:37 - driverClassName................."org.h2.Driver" -2024-08-08 00:40:37 - exceptionOverrideClassName......none -2024-08-08 00:40:37 - healthCheckProperties...........{} -2024-08-08 00:40:37 - healthCheckRegistry.............none -2024-08-08 00:40:37 - idleTimeout.....................600000 -2024-08-08 00:40:37 - initializationFailTimeout.......1 -2024-08-08 00:40:37 - isolateInternalQueries..........false -2024-08-08 00:40:37 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-08 00:40:37 - keepaliveTime...................0 -2024-08-08 00:40:37 - leakDetectionThreshold..........0 -2024-08-08 00:40:37 - maxLifetime.....................1800000 -2024-08-08 00:40:37 - maximumPoolSize.................10 -2024-08-08 00:40:37 - metricRegistry..................none -2024-08-08 00:40:37 - metricsTrackerFactory...........none -2024-08-08 00:40:37 - minimumIdle.....................10 -2024-08-08 00:40:37 - password........................<masked> -2024-08-08 00:40:37 - poolName........................"HikariPool-1" -2024-08-08 00:40:37 - readOnly........................false -2024-08-08 00:40:37 - registerMbeans..................false -2024-08-08 00:40:37 - scheduledExecutor...............none -2024-08-08 00:40:37 - schema..........................none -2024-08-08 00:40:37 - threadFactory...................internal -2024-08-08 00:40:37 - transactionIsolation............default -2024-08-08 00:40:37 - username........................"sa" -2024-08-08 00:40:37 - validationTimeout...............5000 -2024-08-08 00:40:37 - HikariPool-1 - Starting... -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:60639] -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 84 -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:37 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:40:37 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-08 00:40:37 - HikariPool-1 - Start completed. -2024-08-08 00:40:37 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:37 - [javax.management.remote.rmi.RMIConnectionImpl@2aa8f4a8: connectionId=rmi://127.0.0.1 1] closing. -2024-08-08 00:40:37 - [javax.management.remote.rmi.RMIConnectionImpl@2aa8f4a8: connectionId=rmi://127.0.0.1 1] closed. -2024-08-08 00:40:37 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-08 00:40:37 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-08 00:40:37 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:40:37 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-08 00:40:37 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:40:37 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-08 00:40:37 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-08 00:40:37 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-08 00:40:37 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-08 00:40:37 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-08 00:40:37 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5464b97c] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5464b97c] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5464b97c] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5464b97c] to [STARTING] -2024-08-08 00:40:37 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5464b97c] to [STARTED] -2024-08-08 00:40:37 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:40:37 - Filter 'requestContextFilter' configured for use -2024-08-08 00:40:37 - Filter 'webMvcObservationFilter' configured for use -2024-08-08 00:40:37 - Filter 'characterEncodingFilter' configured for use -2024-08-08 00:40:37 - Filter 'formContentFilter' configured for use -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:40:37 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:40:37 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:40:37 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-08 00:40:37 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.mapper.MapperListener@62ea8931] to [STARTING_PREP] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.mapper.MapperListener@62ea8931] to [STARTING] -2024-08-08 00:40:37 - Registered host [localhost] -2024-08-08 00:40:37 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-08 00:40:37 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-08 00:40:37 - Register Context [] for service [StandardService[Tomcat]] -2024-08-08 00:40:37 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-08 00:40:37 - Setting state for [org.apache.catalina.mapper.MapperListener@62ea8931] to [STARTED] -2024-08-08 00:40:37 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-08 00:40:37 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-08 00:40:37 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-08 00:40:37 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:40:37 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-08 00:40:37 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-08 00:40:37 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-08 00:40:37 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-08 00:40:37 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-08 00:40:37 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:40:37 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-08 00:40:37 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-08 00:40:37 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-08 00:40:37 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-08 00:40:37 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-08 00:40:37 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-08 00:40:37 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-08 00:40:37 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-08 00:40:37 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-08 00:40:37 - HHH000206: 'hibernate.properties' not found -2024-08-08 00:40:37 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-08 00:40:37 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-08 00:40:37 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 00:40:37 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 00:40:37 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-08 00:40:37 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-08 00:40:37 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-08 00:40:37 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 00:40:37 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-08 00:40:37 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-08 00:40:37 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 00:40:37 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-08 00:40:37 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-08 00:40:37 - HHH000026: Second-level cache disabled -2024-08-08 00:40:37 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-08 00:40:37 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-08 00:40:37 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-08 00:40:37 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-08 00:40:37 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-08 00:40:37 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-08 00:40:37 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-08 00:40:37 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-08 00:40:37 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-08 00:40:37 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-08 00:40:37 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-08 00:40:37 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-08 00:40:37 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-08 00:40:37 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-08 00:40:37 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-08 00:40:37 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-08 00:40:37 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-08 00:40:37 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-08 00:40:37 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-08 00:40:37 - Adding type registration image -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-08 00:40:37 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-08 00:40:37 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-08 00:40:37 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-08 00:40:37 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-08 00:40:37 - Adding type registration short -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 00:40:37 - Adding type registration short -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 00:40:37 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 00:40:37 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:40:37 - Adding type registration int -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:40:37 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:40:37 - Adding type registration long -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-08 00:40:37 - Adding type registration long -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-08 00:40:37 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-08 00:40:37 - Adding type registration float -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 00:40:37 - Adding type registration float -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 00:40:37 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 00:40:37 - Adding type registration double -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 00:40:37 - Adding type registration double -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 00:40:37 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 00:40:37 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 00:40:37 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 00:40:37 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-08 00:40:37 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-08 00:40:37 - Adding type registration character -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-08 00:40:37 - Adding type registration char -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-08 00:40:37 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-08 00:40:37 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-08 00:40:37 - Adding type registration string -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-08 00:40:37 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-08 00:40:37 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 00:40:37 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 00:40:37 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 00:40:37 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 00:40:37 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 00:40:37 - Adding type registration text -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-08 00:40:37 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 00:40:37 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 00:40:37 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 00:40:37 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-08 00:40:37 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-08 00:40:37 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-08 00:40:37 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 00:40:37 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-08 00:40:37 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-08 00:40:37 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 00:40:37 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 00:40:37 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 00:40:37 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 00:40:37 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 00:40:37 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 00:40:37 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 00:40:37 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 00:40:37 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-08 00:40:37 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-08 00:40:37 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-08 00:40:37 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-08 00:40:37 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-08 00:40:37 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-08 00:40:37 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-08 00:40:37 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-08 00:40:37 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-08 00:40:37 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-08 00:40:37 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 00:40:37 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 00:40:37 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 00:40:37 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-08 00:40:37 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-08 00:40:37 - Adding type registration date -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 00:40:37 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 00:40:37 - Adding type registration time -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 00:40:37 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 00:40:37 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-08 00:40:37 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-08 00:40:37 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-08 00:40:37 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-08 00:40:37 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-08 00:40:37 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-08 00:40:37 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-08 00:40:37 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-08 00:40:37 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-08 00:40:37 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-08 00:40:37 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-08 00:40:37 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-08 00:40:37 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-08 00:40:37 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-08 00:40:37 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-08 00:40:37 - Adding type registration class -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-08 00:40:37 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-08 00:40:37 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-08 00:40:37 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-08 00:40:37 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-08 00:40:37 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-08 00:40:37 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-08 00:40:37 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-08 00:40:37 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-08 00:40:37 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-08 00:40:37 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-08 00:40:37 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-08 00:40:37 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-08 00:40:37 - Adding type registration url -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-08 00:40:37 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-08 00:40:37 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-08 00:40:37 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-08 00:40:37 - Adding type registration object -> org.hibernate.type.JavaObjectType@1d06801f -2024-08-08 00:40:37 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@1d06801f -2024-08-08 00:40:37 - Adding type registration null -> org.hibernate.type.NullType@4449b273 -2024-08-08 00:40:37 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@1fa18f87 -2024-08-08 00:40:37 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@1d9bd1d6 -2024-08-08 00:40:37 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@18ac4af6 -2024-08-08 00:40:37 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@117fb9ba -2024-08-08 00:40:37 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@2b1d1a5 -2024-08-08 00:40:37 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@41e7a544 -2024-08-08 00:40:37 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@3b66ac74 -2024-08-08 00:40:37 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@573870cb -2024-08-08 00:40:37 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@2bd4780c] into BootstrapContext; was [null] -2024-08-08 00:40:37 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@2bd4780c) [was null] -2024-08-08 00:40:37 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@103e7c7c] into BootstrapContext; was [null] -2024-08-08 00:40:37 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@5c3710b3] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@8b1202a] -2024-08-08 00:40:37 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-08 00:40:37 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-08 00:40:37 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-08 00:40:37 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-08 00:40:37 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-08 00:40:37 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-08 00:40:37 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-08 00:40:37 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@2bd4780c] -2024-08-08 00:40:37 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@2bd4780c] -2024-08-08 00:40:37 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-08 00:40:37 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-08 00:40:37 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 00:40:37 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 00:40:37 - JDBC version : 4.2 -2024-08-08 00:40:37 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-08 00:40:37 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-08 00:40:37 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-08 00:40:37 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-08 00:40:37 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-08 00:40:37 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 00:40:37 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 00:40:37 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-08 00:40:37 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-08 00:40:37 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 00:40:37 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 00:40:37 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@664254b6] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@714b6999] -2024-08-08 00:40:37 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-08 00:40:37 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-08 00:40:37 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-08 00:40:37 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-08 00:40:37 - Import with entity name Action -2024-08-08 00:40:37 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-08 00:40:37 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:40:37 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-08 00:40:37 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-08 00:40:37 - Binding column: AnnotatedColumn() -2024-08-08 00:40:37 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:40:37 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:40:37 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:40:37 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-08 00:40:37 - building BasicValue for id -2024-08-08 00:40:37 - Skipping column re-registration: action.id -2024-08-08 00:40:37 - Building property id -2024-08-08 00:40:37 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:40:37 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:40:37 - Binding column: AnnotatedColumn() -2024-08-08 00:40:37 - Building property event -2024-08-08 00:40:37 - Binding column: AnnotatedColumn() -2024-08-08 00:40:37 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 00:40:37 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-08 00:40:37 - building BasicValue for sequence -2024-08-08 00:40:37 - Skipping column re-registration: action.sequence -2024-08-08 00:40:37 - Building property sequence -2024-08-08 00:40:37 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:40:37 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-08 00:40:37 - Import with entity name BillAction -2024-08-08 00:40:37 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-08 00:40:37 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:40:37 - Binding column: AnnotatedColumn() -2024-08-08 00:40:37 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:40:37 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:40:37 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:40:37 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-08 00:40:37 - building BasicValue for id -2024-08-08 00:40:37 - Skipping column re-registration: bill_action.id -2024-08-08 00:40:37 - Building property id -2024-08-08 00:40:37 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:40:37 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:40:37 - Binding column: AnnotatedColumn() -2024-08-08 00:40:37 - Building property action -2024-08-08 00:40:37 - Binding column: AnnotatedColumn() -2024-08-08 00:40:37 - MetadataSourceProcessor property price with lazy=false -2024-08-08 00:40:37 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-08 00:40:37 - building BasicValue for price -2024-08-08 00:40:37 - Skipping column re-registration: bill_action.price -2024-08-08 00:40:37 - Building property price -2024-08-08 00:40:37 - Binding column: AnnotatedColumn() -2024-08-08 00:40:37 - MetadataSourceProcessor property title with lazy=false -2024-08-08 00:40:37 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-08 00:40:37 - building BasicValue for title -2024-08-08 00:40:37 - Skipping column re-registration: bill_action.title -2024-08-08 00:40:37 - Building property title -2024-08-08 00:40:37 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:40:37 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-08 00:40:37 - Import with entity name MemberAction -2024-08-08 00:40:37 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-08 00:40:37 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:40:37 - Binding column: AnnotatedColumn() -2024-08-08 00:40:37 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:40:37 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:40:37 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:40:37 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-08 00:40:37 - building BasicValue for id -2024-08-08 00:40:37 - Skipping column re-registration: member_action.id -2024-08-08 00:40:37 - Building property id -2024-08-08 00:40:37 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:40:37 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:40:37 - Binding column: AnnotatedColumn() -2024-08-08 00:40:37 - Building property action -2024-08-08 00:40:37 - Binding column: AnnotatedColumn() -2024-08-08 00:40:37 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-08 00:40:37 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-08 00:40:37 - building BasicValue for memberGroupId -2024-08-08 00:40:37 - Skipping column re-registration: member_action.member_group_id -2024-08-08 00:40:37 - Building property memberGroupId -2024-08-08 00:40:37 - Binding column: AnnotatedColumn() -2024-08-08 00:40:37 - MetadataSourceProcessor property memberName with lazy=false -2024-08-08 00:40:37 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-08 00:40:37 - building BasicValue for memberName -2024-08-08 00:40:37 - Skipping column re-registration: member_action.member_name -2024-08-08 00:40:37 - Building property memberName -2024-08-08 00:40:37 - Binding column: AnnotatedColumn() -2024-08-08 00:40:37 - MetadataSourceProcessor property status with lazy=false -2024-08-08 00:40:37 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-08 00:40:37 - building BasicValue for status -2024-08-08 00:40:37 - Skipping column re-registration: member_action.status -2024-08-08 00:40:37 - Building property status -2024-08-08 00:40:37 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:40:37 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-08 00:40:37 - Import with entity name Event -2024-08-08 00:40:37 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-08 00:40:37 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:40:37 - Binding column: AnnotatedColumn() -2024-08-08 00:40:37 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:40:37 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:40:37 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:40:37 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-08 00:40:37 - building BasicValue for id -2024-08-08 00:40:37 - Skipping column re-registration: event.id -2024-08-08 00:40:37 - Building property id -2024-08-08 00:40:37 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:40:37 - Binding column: AnnotatedColumn() -2024-08-08 00:40:37 - MetadataSourceProcessor property name with lazy=false -2024-08-08 00:40:37 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-08 00:40:37 - building BasicValue for name -2024-08-08 00:40:37 - Skipping column re-registration: event.name -2024-08-08 00:40:37 - Building property name -2024-08-08 00:40:37 - Binding column: AnnotatedColumn() -2024-08-08 00:40:37 - MetadataSourceProcessor property password with lazy=false -2024-08-08 00:40:37 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-08 00:40:37 - building BasicValue for password -2024-08-08 00:40:37 - Skipping column re-registration: event.password -2024-08-08 00:40:37 - Building property password -2024-08-08 00:40:37 - Binding column: AnnotatedColumn() -2024-08-08 00:40:37 - MetadataSourceProcessor property token with lazy=false -2024-08-08 00:40:37 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-08 00:40:37 - building BasicValue for token -2024-08-08 00:40:37 - Skipping column re-registration: event.token -2024-08-08 00:40:37 - Building property token -2024-08-08 00:40:37 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 00:40:37 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-08 00:40:37 - Import with entity name EventStep -2024-08-08 00:40:37 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-08 00:40:37 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:40:37 - Binding column: AnnotatedColumn() -2024-08-08 00:40:37 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:40:37 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:40:37 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:40:37 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-08 00:40:37 - building BasicValue for id -2024-08-08 00:40:37 - Skipping column re-registration: event_step.id -2024-08-08 00:40:37 - Building property id -2024-08-08 00:40:37 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:40:37 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:40:37 - Binding column: AnnotatedColumn() -2024-08-08 00:40:37 - Building property event -2024-08-08 00:40:37 - Binding column: AnnotatedColumn() -2024-08-08 00:40:37 - MetadataSourceProcessor property name with lazy=false -2024-08-08 00:40:37 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-08 00:40:37 - building BasicValue for name -2024-08-08 00:40:37 - Skipping column re-registration: event_step.name -2024-08-08 00:40:37 - Building property name -2024-08-08 00:40:37 - Binding column: AnnotatedColumn() -2024-08-08 00:40:37 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 00:40:37 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-08 00:40:37 - building BasicValue for sequence -2024-08-08 00:40:37 - Skipping column re-registration: event_step.sequence -2024-08-08 00:40:37 - Building property sequence -2024-08-08 00:40:37 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 00:40:37 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:40:37 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 00:40:37 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:40:37 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-08 00:40:37 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-08 00:40:37 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:40:37 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-08 00:40:37 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-08 00:40:37 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-08 00:40:37 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:40:37 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 00:40:37 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-08 00:40:37 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-08 00:40:37 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:40:37 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 00:40:37 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 00:40:37 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-08 00:40:37 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-08 00:40:37 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-08 00:40:37 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-08 00:40:37 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-08 00:40:37 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-08 00:40:37 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-08 00:40:37 - Building session factory -2024-08-08 00:40:37 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:40:37 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:40:37 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@7491cdae, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@3050d479, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.17283023931117692590, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=87694, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.17283023931117692590, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@5c7a06ec, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-08 00:40:37 - Session factory constructed with filter configurations : {} -2024-08-08 00:40:37 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:40:37 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:40:37 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:40:37 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:40:37 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:40:37 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:40:37 - Loaded expression factory via original TCCL -2024-08-08 00:40:37 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:40:37 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:40:37 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:40:37 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:40:37 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:40:37 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:40:37 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:40:37 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:40:37 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:40:37 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:40:37 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:40:37 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:40:37 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:40:37 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:40:37 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:40:37 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:40:37 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@106edde4] under count; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@56b48163] under every; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@eb6ccbc] under any; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@f8fe81e] under sinh; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6ad0cd43] under cosh; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7de43652] under tanh; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7fe0ca60] under pi; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@fdf029a] under log; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-08 00:40:37 - Registering alternate key : length -> character_length -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@1231f25c] under position; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@6761f75b] under overlay; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@1c528f2f] under trim; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@4a10c019] under cast; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@37f627d0] under collate; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@65d2d3cc] under extract; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@ca2a03f] under ifnull; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@3293030b] under pad; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@4e3d36c2] under str; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@25b402ea] under format; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@1e965426] under timestampadd; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@5f81507a] under timestampdiff; prior registration was null -2024-08-08 00:40:37 - Registering alternate key : dateadd -> timestampadd -2024-08-08 00:40:37 - Registering alternate key : datediff -> timestampdiff -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@299dd381] under current_date; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@34d3409d] under current_time; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16732340] under current_timestamp; prior registration was null -2024-08-08 00:40:37 - Registering alternate key : current date -> current_date -2024-08-08 00:40:37 - Registering alternate key : current time -> current_time -2024-08-08 00:40:37 - Registering alternate key : current timestamp -> current_timestamp -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@38e052b2] under local_date; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7fa68ff4] under local_time; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@515fff35] under local_datetime; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5eb9bf7d] under offset_datetime; prior registration was null -2024-08-08 00:40:37 - Registering alternate key : local date -> local_date -2024-08-08 00:40:37 - Registering alternate key : local time -> local_time -2024-08-08 00:40:37 - Registering alternate key : local datetime -> local_datetime -2024-08-08 00:40:37 - Registering alternate key : offset datetime -> offset_datetime -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@64f613da] under instant; prior registration was null -2024-08-08 00:40:37 - Registering alternate key : current_instant -> instant -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@4601a148] under sql; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@4e210016] under count; prior registration was org.hibernate.dialect.function.CountFunction@106edde4 -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@58e4aa67] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7fe0ca60 -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@57ed8f95] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-08 00:40:37 - Registering alternate key : day -> day_of_month -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@7fa68ff4 -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@515fff35 -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@34001c5d] under trunc; prior registration was null -2024-08-08 00:40:37 - Registering alternate key : truncate -> trunc -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@30e15628] under date_trunc; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-08 00:40:37 - Registering alternate key : chr -> char -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@37ab1b10] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@1231f25c -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@55d87b73] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-08 00:40:37 - Registering alternate key : every -> bool_and -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-08 00:40:37 - Registering alternate key : any -> bool_or -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@618e7761] under format; prior registration was org.hibernate.dialect.function.FormatFunction@25b402ea -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@4abfa2ff] under listagg; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@792b9dd3] under mode; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@cbc3bf3] under percentile_cont; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@31f9f9b3] under percentile_disc; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@41948c13] under rank; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@3085befb] under dense_rank; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@62264d4f] under percent_rank; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@2bc0603f] under cume_dist; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@4542af89] under array; prior registration was null -2024-08-08 00:40:37 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@3163e03b] under array_list; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@2202c92f] under array_agg; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@4b1b2255] under array_position; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@72406594] under array_positions; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@633cad4d] under array_positions_list; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@15c3585] under array_length; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@4e826fd4] under array_concat; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@13731ff4] under array_prepend; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@1ce8084a] under array_append; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@23cfdfa2] under array_contains; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@1e09c0b] under array_contains_nullable; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@76eee0b1] under array_overlaps; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@2119b989] under array_overlaps_nullable; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@31de8099] under array_get; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@5d373794] under array_set; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@41f5389f] under array_remove; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@f13e0a2] under array_remove_index; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@329efc61] under array_slice; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@2c86b0ea] under array_replace; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4e481512] under array_trim; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@b791e6e] under array_fill; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@583b4af4] under array_fill_list; prior registration was null -2024-08-08 00:40:38 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@3d213a2b] under array_to_string; prior registration was null -2024-08-08 00:40:38 - abs(NUMERIC arg) -2024-08-08 00:40:38 - Double acos(NUMERIC arg) -2024-08-08 00:40:38 - Boolean any(BOOLEAN predicate) -2024-08-08 00:40:38 - array( ... ) -2024-08-08 00:40:38 - array_agg(arg) -2024-08-08 00:40:38 - array_append( ... ) -2024-08-08 00:40:38 - array_concat( ... ) -2024-08-08 00:40:38 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 00:40:38 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 00:40:38 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-08 00:40:38 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-08 00:40:38 - array_get(ARRAY array, INTEGER index) -2024-08-08 00:40:38 - Integer array_length(ARRAY array) -2024-08-08 00:40:38 - array_list( ... ) -2024-08-08 00:40:38 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-08 00:40:38 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-08 00:40:38 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-08 00:40:38 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-08 00:40:38 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-08 00:40:38 - array_prepend( ... ) -2024-08-08 00:40:38 - array_remove( ... ) -2024-08-08 00:40:38 - array_remove_index( ... ) -2024-08-08 00:40:38 - array_replace( ... ) -2024-08-08 00:40:38 - array_set( ... ) -2024-08-08 00:40:38 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-08 00:40:38 - String array_to_string( ... ) -2024-08-08 00:40:38 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-08 00:40:38 - Integer ascii(STRING arg) -2024-08-08 00:40:38 - Double asin(NUMERIC arg) -2024-08-08 00:40:38 - Double atan(NUMERIC arg) -2024-08-08 00:40:38 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-08 00:40:38 - avg(NUMERIC arg) -2024-08-08 00:40:38 - bit_and(arg) -2024-08-08 00:40:38 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-08 00:40:38 - bit_or(arg) -2024-08-08 00:40:38 - bitand(arg0, arg1) -2024-08-08 00:40:38 - bitnot(arg) -2024-08-08 00:40:38 - bitor(arg0, arg1) -2024-08-08 00:40:38 - bitxor(arg0, arg1) -2024-08-08 00:40:38 - Boolean bool_and(BOOLEAN predicate) -2024-08-08 00:40:38 - Boolean bool_or(BOOLEAN predicate) -2024-08-08 00:40:38 - cast(arg as Type) -2024-08-08 00:40:38 - ceiling(NUMERIC arg) -2024-08-08 00:40:38 - Character char(INTEGER arg) -2024-08-08 00:40:38 - Integer character_length(STRING_OR_CLOB arg) -2024-08-08 00:40:38 - Character chr(INTEGER arg) -2024-08-08 00:40:38 - coalesce(arg0[, arg1[, ...]]) -2024-08-08 00:40:38 - String collate(STRING string as COLLATION collation) -2024-08-08 00:40:38 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-08 00:40:38 - Double cos(NUMERIC arg) -2024-08-08 00:40:38 - Double cosh(NUMERIC arg) -2024-08-08 00:40:38 - Double cot(NUMERIC arg) -2024-08-08 00:40:38 - Long count([distinct ]{arg|*}) -2024-08-08 00:40:38 - Double cume_dist([arg0[, ...]]) -2024-08-08 00:40:38 - Date curdate() -2024-08-08 00:40:38 - Date current date -2024-08-08 00:40:38 - Time current time -2024-08-08 00:40:38 - Timestamp current timestamp -2024-08-08 00:40:38 - Date current_date -2024-08-08 00:40:38 - Instant current_instant -2024-08-08 00:40:38 - Time current_time -2024-08-08 00:40:38 - Timestamp current_timestamp -2024-08-08 00:40:38 - Time curtime() -2024-08-08 00:40:38 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-08 00:40:38 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 00:40:38 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 00:40:38 - Integer day(DATE arg) -2024-08-08 00:40:38 - Integer day_of_month(DATE arg) -2024-08-08 00:40:38 - Integer day_of_week(DATE arg) -2024-08-08 00:40:38 - Integer day_of_year(DATE arg) -2024-08-08 00:40:38 - String dayname(DATE arg) -2024-08-08 00:40:38 - Double degrees(NUMERIC arg) -2024-08-08 00:40:38 - Long dense_rank([arg0[, ...]]) -2024-08-08 00:40:38 - Boolean every(BOOLEAN predicate) -2024-08-08 00:40:38 - Double exp(NUMERIC arg) -2024-08-08 00:40:38 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-08 00:40:38 - first_valueANY value -2024-08-08 00:40:38 - floor(NUMERIC arg) -2024-08-08 00:40:38 - String format(TEMPORAL datetime as STRING pattern) -2024-08-08 00:40:38 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 00:40:38 - Integer hour(TIME arg) -2024-08-08 00:40:38 - ifnull(arg0, arg1) -2024-08-08 00:40:38 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-08 00:40:38 - Instant instant -2024-08-08 00:40:38 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-08 00:40:38 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-08 00:40:38 - last_valueANY value -2024-08-08 00:40:38 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-08 00:40:38 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 00:40:38 - String left(STRING string, INTEGER length) -2024-08-08 00:40:38 - Integer length(STRING_OR_CLOB arg) -2024-08-08 00:40:38 - String listagg(STRING arg0, STRING arg1) -2024-08-08 00:40:38 - Double ln(NUMERIC arg) -2024-08-08 00:40:38 - LocalDate local date -2024-08-08 00:40:38 - LocalDateTime local datetime -2024-08-08 00:40:38 - LocalTime local time -2024-08-08 00:40:38 - LocalDate local_date -2024-08-08 00:40:38 - LocalDateTime local_datetime -2024-08-08 00:40:38 - LocalTime local_time -2024-08-08 00:40:38 - Time localtime -2024-08-08 00:40:38 - Timestamp localtimestamp -2024-08-08 00:40:38 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-08 00:40:38 - Double log(NUMERIC base, NUMERIC arg) -2024-08-08 00:40:38 - Double log10(NUMERIC arg) -2024-08-08 00:40:38 - String lower(STRING string) -2024-08-08 00:40:38 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 00:40:38 - String ltrim(STRING string) -2024-08-08 00:40:38 - max(COMPARABLE arg) -2024-08-08 00:40:38 - Double median(NUMERIC arg) -2024-08-08 00:40:38 - Integer microsecond(TIME arg) -2024-08-08 00:40:38 - min(COMPARABLE arg) -2024-08-08 00:40:38 - Integer minute(TIME arg) -2024-08-08 00:40:38 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-08 00:40:38 - mode() -2024-08-08 00:40:38 - Integer month(DATE arg) -2024-08-08 00:40:38 - String monthname(DATE arg) -2024-08-08 00:40:38 - Timestamp now() -2024-08-08 00:40:38 - nth_valueANY value, INTEGER nth -2024-08-08 00:40:38 - nullif(arg0, arg1) -2024-08-08 00:40:38 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-08 00:40:38 - OffsetDateTime offset datetime -2024-08-08 00:40:38 - OffsetDateTime offset_datetime -2024-08-08 00:40:38 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-08 00:40:38 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-08 00:40:38 - Double percent_rank([arg0[, ...]]) -2024-08-08 00:40:38 - percentile_cont(NUMERIC arg) -2024-08-08 00:40:38 - percentile_disc(NUMERIC arg) -2024-08-08 00:40:38 - Double pi -2024-08-08 00:40:38 - Integer position(STRING pattern in STRING string) -2024-08-08 00:40:38 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-08 00:40:38 - Integer quarter(DATE arg) -2024-08-08 00:40:38 - Double radians(NUMERIC arg) -2024-08-08 00:40:38 - Double rand([INTEGER seed]) -2024-08-08 00:40:38 - Long rank([arg0[, ...]]) -2024-08-08 00:40:38 - String repeat(STRING string, INTEGER times) -2024-08-08 00:40:38 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-08 00:40:38 - String right(STRING string, INTEGER length) -2024-08-08 00:40:38 - round(NUMERIC number[, INTEGER places]) -2024-08-08 00:40:38 - Long row_number() -2024-08-08 00:40:38 - Long rownum() -2024-08-08 00:40:38 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 00:40:38 - String rtrim(STRING string) -2024-08-08 00:40:38 - Integer second(TIME arg) -2024-08-08 00:40:38 - Integer sign(NUMERIC arg) -2024-08-08 00:40:38 - Double sin(NUMERIC arg) -2024-08-08 00:40:38 - Double sinh(NUMERIC arg) -2024-08-08 00:40:38 - String soundex(arg) -2024-08-08 00:40:38 - String space(INTEGER arg) -2024-08-08 00:40:38 - Object sql -2024-08-08 00:40:38 - Double sqrt(NUMERIC arg) -2024-08-08 00:40:38 - Double stddev_pop(NUMERIC arg) -2024-08-08 00:40:38 - Double stddev_samp(NUMERIC arg) -2024-08-08 00:40:38 - String str(arg) -2024-08-08 00:40:38 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-08 00:40:38 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-08 00:40:38 - sum(arg) -2024-08-08 00:40:38 - Timestamp sysdate -2024-08-08 00:40:38 - Double tan(NUMERIC arg) -2024-08-08 00:40:38 - Double tanh(NUMERIC arg) -2024-08-08 00:40:38 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 00:40:38 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 00:40:38 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-08 00:40:38 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-08 00:40:38 - trunc( ... ) -2024-08-08 00:40:38 - truncate( ... ) -2024-08-08 00:40:38 - String upper(STRING string) -2024-08-08 00:40:38 - Double var_pop(NUMERIC arg) -2024-08-08 00:40:38 - Double var_samp(NUMERIC arg) -2024-08-08 00:40:38 - Integer week(DATE arg) -2024-08-08 00:40:38 - Integer year(DATE arg) -2024-08-08 00:40:38 - Starting QueryInterpretationCache(2048) -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 82 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 82 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 84 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:38 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:38 - [javax.management.remote.rmi.RMIConnectionImpl@36cd292a: connectionId=rmi://127.0.0.1 2] closing. -2024-08-08 00:40:38 - [javax.management.remote.rmi.RMIConnectionImpl@36cd292a: connectionId=rmi://127.0.0.1 2] closed. -2024-08-08 00:40:38 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:40:38 - Configured EntityCopyObserver strategy: disallow -2024-08-08 00:40:38 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:40:38 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:40:38 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-08 00:40:38 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:40:38 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:40:38 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-08 00:40:38 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:40:38 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:40:38 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-08 00:40:38 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:40:38 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:40:38 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-08 00:40:38 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:40:38 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:40:38 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-08 00:40:38 - Starting post-init callbacks -2024-08-08 00:40:38 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-08 00:40:38 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-08 00:40:38 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-08 00:40:38 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-08 00:40:38 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-08 00:40:38 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-08 00:40:38 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-08 00:40:38 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-08 00:40:38 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-08 00:40:38 - Created new SQL alias : ba1_0 -2024-08-08 00:40:38 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-08 00:40:38 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@528ef230] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-08 00:40:38 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-08 00:40:38 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-08 00:40:38 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-08 00:40:38 - Version select: select id from bill_action where id=? -2024-08-08 00:40:38 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-08 00:40:38 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-08 00:40:38 - Delete (0): delete from bill_action where id=? -2024-08-08 00:40:38 - Created new SQL alias : ma1_0 -2024-08-08 00:40:38 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-08 00:40:38 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5e8bc83e] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-08 00:40:38 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-08 00:40:38 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-08 00:40:38 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-08 00:40:38 - Version select: select id from member_action where id=? -2024-08-08 00:40:38 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-08 00:40:38 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-08 00:40:38 - Delete (0): delete from member_action where id=? -2024-08-08 00:40:38 - Created new SQL alias : e1_0 -2024-08-08 00:40:38 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-08 00:40:38 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-08 00:40:38 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-08 00:40:38 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-08 00:40:38 - Version select: select id from event where id=? -2024-08-08 00:40:38 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-08 00:40:38 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-08 00:40:38 - Delete (0): delete from event where id=? -2024-08-08 00:40:38 - Created new SQL alias : a1_0 -2024-08-08 00:40:38 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-08 00:40:38 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@3903cfc9] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-08 00:40:38 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-08 00:40:38 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-08 00:40:38 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-08 00:40:38 - Version select: select id from action where id=? -2024-08-08 00:40:38 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-08 00:40:38 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-08 00:40:38 - Delete (0): delete from action where id=? -2024-08-08 00:40:38 - Created new SQL alias : es1_0 -2024-08-08 00:40:38 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-08 00:40:38 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@288e50c1] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-08 00:40:38 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-08 00:40:38 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-08 00:40:38 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-08 00:40:38 - Version select: select id from event_step where id=? -2024-08-08 00:40:38 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-08 00:40:38 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-08 00:40:38 - Delete (0): delete from event_step where id=? -2024-08-08 00:40:38 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-08 00:40:38 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@664254b6] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@4fbed6fc] -2024-08-08 00:40:38 - Checking 0 named HQL queries -2024-08-08 00:40:38 - Checking 0 named SQL queries -2024-08-08 00:40:38 - - drop table if exists action cascade -2024-08-08 00:40:38 - - drop table if exists bill_action cascade -2024-08-08 00:40:38 - - drop table if exists event cascade -2024-08-08 00:40:38 - - drop table if exists event_step cascade -2024-08-08 00:40:38 - - drop table if exists member_action cascade -2024-08-08 00:40:38 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-08 00:40:38 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-08 00:40:38 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-08 00:40:38 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-08 00:40:38 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-08 00:40:38 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-08 00:40:38 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-08 00:40:38 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-08 00:40:38 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-08 00:40:38 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@3f0751b0 -2024-08-08 00:40:38 - Registering SessionFactory: 168d3830-472d-4d9b-9238-da9823362c62 (<unnamed>) -2024-08-08 00:40:38 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-08 00:40:38 - Instantiated SessionFactory -2024-08-08 00:40:38 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'actionService' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-08 00:40:38 - Initializing JpaMetamodelMappingContext… -2024-08-08 00:40:38 - Finished initializing JpaMetamodelMappingContext -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - Statistics initialized [enabled=false] -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-08 00:40:38 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-08 00:40:38 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - Looking up named query BillAction.findByAction_Event -2024-08-08 00:40:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:40:38 - Did not find named query BillAction.findByAction_Event -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - Looking up named query BillAction.findByAction_Id -2024-08-08 00:40:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:40:38 - Did not find named query BillAction.findByAction_Id -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-08 00:40:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:40:38 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-08 00:40:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:40:38 - Did not find named query MemberAction.findAllByEvent.count -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 82 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 84 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:38 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:40:38 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:38 - [javax.management.remote.rmi.RMIConnectionImpl@4b7cfbf0: connectionId=rmi://127.0.0.1 3] closing. -2024-08-08 00:40:38 - [javax.management.remote.rmi.RMIConnectionImpl@4b7cfbf0: connectionId=rmi://127.0.0.1 3] closed. -2024-08-08 00:40:38 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:40:38 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(767501074984416)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(767501074984416)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(767501074984416)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(767501074984416)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(767501074984416).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:40:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:40:38 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-08 00:40:38 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:40:38 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:40:38 - Looking up named query MemberAction.findByAction -2024-08-08 00:40:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:40:38 - Did not find named query MemberAction.findByAction -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 00:40:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:40:38 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 00:40:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:40:38 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:40:38 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-08 00:40:38 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 00:40:38 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:40:38 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 00:40:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:40:38 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-08 00:40:38 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 00:40:38 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-08 00:40:38 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 00:40:38 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'eventRepository' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - Looking up named query Event.findByToken -2024-08-08 00:40:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:40:38 - Did not find named query Event.findByToken -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-08 00:40:38 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-08 00:40:38 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:40:38 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'billActionService' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'actionRepository' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - Looking up named query Action.findByIdAndEvent -2024-08-08 00:40:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:40:38 - Did not find named query Action.findByIdAndEvent -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:40:38 - Did not find named query Action.findLastByEvent.count -2024-08-08 00:40:38 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:40:38 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-08 00:40:38 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:40:38 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:40:38 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-08 00:40:38 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-08 00:40:38 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-08 00:40:38 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'eventService' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-08 00:40:38 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-08 00:40:38 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-08 00:40:38 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-08 00:40:38 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-08 00:40:38 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'memberActionService' -2024-08-08 00:40:38 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-08 00:40:38 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:40:38 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-08 00:40:38 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 00:40:38 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-08 00:40:38 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'actionController' -2024-08-08 00:40:38 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'billActionController' -2024-08-08 00:40:38 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'eventController' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'authService' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-08 00:40:38 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-08 00:40:38 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'memberActionController' -2024-08-08 00:40:38 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-08 00:40:38 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-08 00:40:38 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:40:38 - Loaded expression factory via original TCCL -2024-08-08 00:40:38 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-08 00:40:38 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-08 00:40:38 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:40:38 - Trying to load META-INF/validation.xml via user class loader -2024-08-08 00:40:38 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:40:38 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:40:38 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:40:38 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:40:38 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:40:38 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:40:38 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:40:38 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:40:38 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:40:38 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:40:38 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'error' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-08 00:40:38 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-08 00:40:38 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-08 00:40:38 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-08 00:40:38 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-08 00:40:38 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:40:38 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:40:38 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-08 00:40:38 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:40:38 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:40:38 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'localeResolver' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'themeResolver' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-08 00:40:38 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:40:38 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:40:38 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:40:38 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-08 00:40:38 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-08 00:40:38 - - s.h.p.EventController: - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) -2024-08-08 00:40:38 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-08 00:40:38 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-08 00:40:38 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-08 00:40:38 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:40:38 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-08 00:40:38 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:40:38 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:40:38 - 'beanNameHandlerMapping' {} -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-08 00:40:38 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:40:38 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'messageConverters' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-08 00:40:38 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-08 00:40:38 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:40:38 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:40:38 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'pageModule' -2024-08-08 00:40:38 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:40:38 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 00:40:38 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-08 00:40:38 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-08 00:40:38 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:40:38 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:40:38 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:40:38 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-08 00:40:38 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:40:38 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-08 00:40:38 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'sortResolver' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-08 00:40:38 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-08 00:40:38 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-08 00:40:38 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-08 00:40:38 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-08 00:40:38 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-08 00:40:38 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:40:38 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-08 00:40:38 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 00:40:38 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-08 00:40:38 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'transactionManager' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-08 00:40:38 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-08 00:40:38 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:40:38 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-08 00:40:38 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:40:38 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-08 00:40:38 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-08 00:40:38 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-08 00:40:38 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-08 00:40:38 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-08 00:40:38 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-08 00:40:38 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-08 00:40:38 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-08 00:40:38 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-08 00:40:38 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-08 00:40:38 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-08 00:40:38 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-08 00:40:38 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-08 00:40:38 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:40:38 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-08 00:40:38 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-08 00:40:38 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-08 00:40:38 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-08 00:40:38 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-08 00:40:38 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-08 00:40:38 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-08 00:40:38 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-08 00:40:38 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-08 00:40:38 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 00:40:38 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-08 00:40:38 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:40:38 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:40:38 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 00:40:38 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-08 00:40:38 - Using SLF4J as the default logging framework -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-08 00:40:38 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-08 00:40:38 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-08 00:40:38 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-08 00:40:38 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-08 00:40:38 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'observedAspect' -2024-08-08 00:40:38 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-08 00:40:38 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-08 00:40:38 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 00:40:38 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-08 00:40:38 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 00:40:38 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-08 00:40:38 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-08 00:40:38 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-08 00:40:38 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-08 00:40:38 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-08 00:40:38 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-08 00:40:38 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-08 00:40:38 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 00:40:38 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:40:38 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:40:38 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-08 00:40:38 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-08 00:40:38 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-08 00:40:38 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:40:38 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:40:38 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-08 00:40:38 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-08 00:40:38 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-08 00:40:38 - Registering beans for JMX exposure on startup -2024-08-08 00:40:38 - Auto-detecting user-defined JMX MBeans -2024-08-08 00:40:38 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-08 00:40:38 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-08 00:40:38 - Starting beans in phase -2147483647 -2024-08-08 00:40:38 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-08 00:40:38 - Starting beans in phase 2147481599 -2024-08-08 00:40:38 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-08 00:40:38 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-08 00:40:38 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-08 00:40:38 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-08 00:40:38 - Tomcat started on port 8080 (http) with context path '/' -2024-08-08 00:40:38 - Successfully started bean 'webServerStartStop' -2024-08-08 00:40:38 - Starting beans in phase 2147482623 -2024-08-08 00:40:38 - Successfully started bean 'webServerGracefulShutdown' -2024-08-08 00:40:38 - Starting beans in phase 2147483647 -2024-08-08 00:40:38 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-08 00:40:38 - Started HaengdongApplication in 2.449 seconds (process running for 2.642) -2024-08-08 00:40:38 - Application availability state LivenessState changed to CORRECT -2024-08-08 00:40:38 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-08 00:40:39 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 82 -2024-08-08 00:40:39 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 82 -2024-08-08 00:40:39 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 84 -2024-08-08 00:40:39 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:40:39 - RMI TCP Connection(1)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - [javax.management.remote.rmi.RMIConnectionImpl@7d801352: connectionId=rmi://127.0.0.1 4] closing. -2024-08-08 00:40:39 - [javax.management.remote.rmi.RMIConnectionImpl@7d801352: connectionId=rmi://127.0.0.1 4] closed. -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:60641] -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:60640] -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 84 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 84 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - [javax.management.remote.rmi.RMIConnectionImpl@7eb1b5d9: connectionId=rmi://127.0.0.1 6] closing. -2024-08-08 00:40:39 - [javax.management.remote.rmi.RMIConnectionImpl@7eb1b5d9: connectionId=rmi://127.0.0.1 6] closed. -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 84 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - [javax.management.remote.rmi.RMIConnectionImpl@386fec34: connectionId=rmi://127.0.0.1 5] closing. -2024-08-08 00:40:39 - [javax.management.remote.rmi.RMIConnectionImpl@386fec34: connectionId=rmi://127.0.0.1 5] closed. -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - [javax.management.remote.rmi.RMIConnectionImpl@1973e6b2: connectionId=rmi://127.0.0.1 7] closing. -2024-08-08 00:40:39 - [javax.management.remote.rmi.RMIConnectionImpl@1973e6b2: connectionId=rmi://127.0.0.1 7] closed. -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 84 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - [javax.management.remote.rmi.RMIConnectionImpl@28523471: connectionId=rmi://127.0.0.1 8] closing. -2024-08-08 00:40:39 - [javax.management.remote.rmi.RMIConnectionImpl@28523471: connectionId=rmi://127.0.0.1 8] closed. -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 82 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 84 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 84 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - [javax.management.remote.rmi.RMIConnectionImpl@3da9ea3f: connectionId=rmi://127.0.0.1 9] closing. -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - [javax.management.remote.rmi.RMIConnectionImpl@3da9ea3f: connectionId=rmi://127.0.0.1 9] closed. -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - [javax.management.remote.rmi.RMIConnectionImpl@cd66a9e: connectionId=rmi://127.0.0.1 10] closing. -2024-08-08 00:40:39 - [javax.management.remote.rmi.RMIConnectionImpl@cd66a9e: connectionId=rmi://127.0.0.1 10] closed. -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 84 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 84 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:39 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-08 00:40:39 - Fetching JDBC Connection from DataSource -2024-08-08 00:40:39 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-08 00:40:39 - Initializing Servlet 'dispatcherServlet' -2024-08-08 00:40:39 - Detected StandardServletMultipartResolver -2024-08-08 00:40:39 - Detected AcceptHeaderLocaleResolver -2024-08-08 00:40:39 - Detected FixedThemeResolver -2024-08-08 00:40:39 - Fetching JDBC Connection from DataSource -2024-08-08 00:40:39 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@2d0f850 -2024-08-08 00:40:39 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@9e96118 -2024-08-08 00:40:39 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-08 00:40:39 - Completed initialization in 1 ms -2024-08-08 00:40:39 - RMI TCP Connection(3)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - [javax.management.remote.rmi.RMIConnectionImpl@9410dac: connectionId=rmi://127.0.0.1 11] closing. -2024-08-08 00:40:39 - [javax.management.remote.rmi.RMIConnectionImpl@9410dac: connectionId=rmi://127.0.0.1 11] closed. -2024-08-08 00:40:39 - RMI TCP Connection(2)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:39 - [javax.management.remote.rmi.RMIConnectionImpl@3e0caae7: connectionId=rmi://127.0.0.1 12] closing. -2024-08-08 00:40:39 - [javax.management.remote.rmi.RMIConnectionImpl@3e0caae7: connectionId=rmi://127.0.0.1 12] closed. -2024-08-08 00:40:41 - RMI TCP Connection(3)-127.0.0.1: (port 60638) connection closed -2024-08-08 00:40:41 - RMI TCP Connection(2)-127.0.0.1: (port 60638) connection closed -2024-08-08 00:40:41 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60641,localport=60638] -2024-08-08 00:40:41 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60640,localport=60638] -2024-08-08 00:40:41 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60641,localport=60638] -2024-08-08 00:40:41 - RMI TCP Connection(1)-127.0.0.1: (port 60638) connection closed -2024-08-08 00:40:41 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60639,localport=60638] -2024-08-08 00:40:41 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60639,localport=60638] -2024-08-08 00:40:41 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60640,localport=60638] -2024-08-08 00:40:41 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:60642] -2024-08-08 00:40:41 - RMI TCP Connection(4)-127.0.0.1: (port 60638) op = 80 -2024-08-08 00:40:41 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:41 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:41 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:41 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:41 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@7be94cd6 -2024-08-08 00:40:49 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.17283023931117692590/conf/jaspic-providers.xml] -2024-08-08 00:40:49 - POST "/api/events", parameters={} -2024-08-08 00:40:49 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:40:49 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:40:49 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=토다리, password=0987]] -2024-08-08 00:40:49 - Found thread-bound EntityManager [SessionImpl(1466424590<open>)] for JPA transaction -2024-08-08 00:40:49 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-08 00:40:49 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:40:49 - begin -2024-08-08 00:40:49 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@3a12c857] -2024-08-08 00:40:49 - Found thread-bound EntityManager [SessionImpl(1466424590<open>)] for JPA transaction -2024-08-08 00:40:49 - Participating in existing transaction -2024-08-08 00:40:49 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-08 00:40:49 - Executing identity-insert immediately -2024-08-08 00:40:49 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-08 00:40:49 - Initializer list is empty -2024-08-08 00:40:49 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@67ef92dc -2024-08-08 00:40:49 - Extracted JDBC value [0] - [1] -2024-08-08 00:40:49 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@51baf711 -2024-08-08 00:40:49 - Initiating transaction commit -2024-08-08 00:40:49 - Committing JPA transaction on EntityManager [SessionImpl(1466424590<open>)] -2024-08-08 00:40:49 - committing -2024-08-08 00:40:49 - Processing flush-time cascades -2024-08-08 00:40:49 - Dirty checking collections -2024-08-08 00:40:49 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-08 00:40:49 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-08 00:40:49 - Listing entities: -2024-08-08 00:40:49 - server.haengdong.domain.event.Event{password=0987, name=토다리, id=1, token=fc0afe4e-fb60-4f2f-b138-94d3a8959489} -2024-08-08 00:40:49 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:40:49 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:40:49 - Writing [EventResponse[eventId=fc0afe4e-fb60-4f2f-b138-94d3a8959489]] -2024-08-08 00:40:49 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:40:49 - Completed 200 OK -2024-08-08 00:41:07 - RMI TCP Connection(4)-127.0.0.1: (port 60638) connection closed -2024-08-08 00:41:07 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60642,localport=60638] -2024-08-08 00:41:07 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60642,localport=60638] -2024-08-08 00:41:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:41:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:41:30 - POST "/api/events", parameters={} -2024-08-08 00:41:30 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:41:30 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:41:30 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=토다리, password=0987]] -2024-08-08 00:41:30 - Found thread-bound EntityManager [SessionImpl(67319064<open>)] for JPA transaction -2024-08-08 00:41:30 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-08 00:41:30 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:41:30 - begin -2024-08-08 00:41:30 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@4101bbfc] -2024-08-08 00:41:30 - Found thread-bound EntityManager [SessionImpl(67319064<open>)] for JPA transaction -2024-08-08 00:41:30 - Participating in existing transaction -2024-08-08 00:41:30 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-08 00:41:30 - Executing identity-insert immediately -2024-08-08 00:41:30 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-08 00:41:30 - Initializer list is empty -2024-08-08 00:41:30 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@4a0708cc -2024-08-08 00:41:30 - Extracted JDBC value [0] - [2] -2024-08-08 00:41:30 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@61d41bb8 -2024-08-08 00:41:30 - Initiating transaction commit -2024-08-08 00:41:30 - Committing JPA transaction on EntityManager [SessionImpl(67319064<open>)] -2024-08-08 00:41:30 - committing -2024-08-08 00:41:30 - Processing flush-time cascades -2024-08-08 00:41:30 - Dirty checking collections -2024-08-08 00:41:30 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-08 00:41:30 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-08 00:41:30 - Listing entities: -2024-08-08 00:41:30 - server.haengdong.domain.event.Event{password=0987, name=토다리, id=2, token=a48c94e7-2829-4d57-94cf-57eaeeb0ca1f} -2024-08-08 00:41:30 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:41:30 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:41:30 - Writing [EventResponse[eventId=a48c94e7-2829-4d57-94cf-57eaeeb0ca1f]] -2024-08-08 00:41:30 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:41:30 - Completed 200 OK -2024-08-08 00:41:37 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:41:37 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:42:07 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:42:07 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:42:26 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-08 00:42:26 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Thu Aug 08 00:40:36 KST 2024 -2024-08-08 00:42:26 - Stopping beans in phase 2147483647 -2024-08-08 00:42:26 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-08 00:42:26 - Stopping beans in phase 2147482623 -2024-08-08 00:42:26 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-08 00:42:26 - Stopping beans in phase 2147481599 -2024-08-08 00:42:26 - Bean 'webServerStartStop' completed its stop procedure -2024-08-08 00:42:26 - Stopping beans in phase -2147483647 -2024-08-08 00:42:26 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-08 00:42:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-08 00:42:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-08 00:42:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-08 00:42:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-08 00:42:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-08 00:42:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-08 00:42:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-08 00:42:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-08 00:42:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-08 00:42:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-08 00:42:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-08 00:42:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-08 00:42:26 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-08 00:42:26 - Unregistering JMX-exposed beans on shutdown -2024-08-08 00:42:26 - Unregistering JMX-exposed beans -2024-08-08 00:42:26 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-08 00:42:26 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 00:42:26 - HHH000031: Closing -2024-08-08 00:42:26 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@61c069d7] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@4fbed6fc] -2024-08-08 00:42:26 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-08 00:42:26 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-08 00:42:26 - HikariPool-1 - Shutdown initiated... -2024-08-08 00:42:26 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:42:26 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:42:26 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:42:26 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:42:26 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:42:26 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:42:26 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:42:26 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:42:26 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:42:26 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:42:26 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:42:26 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-08 00:42:26 - HikariPool-1 - Shutdown completed. -2024-08-08 00:42:26 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-08 00:42:28 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-08 00:42:28 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-08 00:42:28 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:42:28 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:42:28 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:42:28 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:42:28 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:42:28 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:42:28 - Loaded expression factory via original TCCL -2024-08-08 00:42:28 - Starting HaengdongApplication using Java 17.0.12 with PID 87814 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-08 00:42:28 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-08 00:42:28 - No active profile set, falling back to 1 default profile: "default" -2024-08-08 00:42:28 - Loading source class server.haengdong.HaengdongApplication -2024-08-08 00:42:28 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-08 00:42:28 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-08 00:42:28 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:42:28 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:42:28 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:42:28 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:42:28 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:42:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-08 00:42:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-08 00:42:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-08 00:42:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-08 00:42:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-08 00:42:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-08 00:42:28 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 00:42:28 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 00:42:28 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 00:42:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-08 00:42:28 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 00:42:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-08 00:42:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-08 00:42:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-08 00:42:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-08 00:42:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-08 00:42:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-08 00:42:28 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-08 00:42:28 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-08 00:42:28 - Scanning for JPA repositories in packages server.haengdong. -2024-08-08 00:42:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 00:42:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 00:42:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 00:42:28 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 00:42:28 - Finished Spring Data repository scanning in 16 ms. Found 4 JPA repository interfaces. -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-08 00:42:28 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-08 00:42:28 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-08 00:42:28 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 00:42:28 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-08 00:42:28 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 00:42:28 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 00:42:28 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-08 00:42:28 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-08 00:42:28 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@1d6a8386] -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-08 00:42:28 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-08 00:42:28 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-08 00:42:28 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-08 00:42:28 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-08 00:42:28 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-08 00:42:28 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-08 00:42:28 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-08 00:42:28 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 00:42:28 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:42:28 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:42:28 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:42:28 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-08 00:42:28 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 00:42:28 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 00:42:28 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-08 00:42:28 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-08 00:42:28 - Tomcat initialized with port 8080 (http) -2024-08-08 00:42:28 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-08 00:42:28 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-08 00:42:28 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [STARTING] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [STARTED] -2024-08-08 00:42:28 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-08 00:42:28 - Starting service [Tomcat] -2024-08-08 00:42:28 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-08 00:42:28 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-08 00:42:28 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [STARTING] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [STARTED] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [STARTING] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [STARTED] -2024-08-08 00:42:28 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:42:28 - Starting this Loader -2024-08-08 00:42:28 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:42:28 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:42:28 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-08 00:42:28 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [STARTING] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [STARTED] -2024-08-08 00:42:28 - Initializing Spring embedded WebApplicationContext -2024-08-08 00:42:28 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-08 00:42:28 - Root WebApplicationContext: initialization completed in 620 ms -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-08 00:42:28 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-08 00:42:28 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-08 00:42:28 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-08 00:42:28 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:42:28 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-08 00:42:28 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'h2Console' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'dataSource' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-08 00:42:28 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-08 00:42:28 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-08 00:42:28 - HikariPool-1 - configuration: -2024-08-08 00:42:28 - allowPoolSuspension.............false -2024-08-08 00:42:28 - autoCommit......................true -2024-08-08 00:42:28 - catalog.........................none -2024-08-08 00:42:28 - connectionInitSql...............none -2024-08-08 00:42:28 - connectionTestQuery.............none -2024-08-08 00:42:28 - connectionTimeout...............30000 -2024-08-08 00:42:28 - dataSource......................none -2024-08-08 00:42:28 - dataSourceClassName.............none -2024-08-08 00:42:28 - dataSourceJNDI..................none -2024-08-08 00:42:28 - dataSourceProperties............{password=<masked>} -2024-08-08 00:42:28 - driverClassName................."org.h2.Driver" -2024-08-08 00:42:28 - exceptionOverrideClassName......none -2024-08-08 00:42:28 - healthCheckProperties...........{} -2024-08-08 00:42:28 - healthCheckRegistry.............none -2024-08-08 00:42:28 - idleTimeout.....................600000 -2024-08-08 00:42:28 - initializationFailTimeout.......1 -2024-08-08 00:42:28 - isolateInternalQueries..........false -2024-08-08 00:42:28 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-08 00:42:28 - keepaliveTime...................0 -2024-08-08 00:42:28 - leakDetectionThreshold..........0 -2024-08-08 00:42:28 - maxLifetime.....................1800000 -2024-08-08 00:42:28 - maximumPoolSize.................10 -2024-08-08 00:42:28 - metricRegistry..................none -2024-08-08 00:42:28 - metricsTrackerFactory...........none -2024-08-08 00:42:28 - minimumIdle.....................10 -2024-08-08 00:42:28 - password........................<masked> -2024-08-08 00:42:28 - poolName........................"HikariPool-1" -2024-08-08 00:42:28 - readOnly........................false -2024-08-08 00:42:28 - registerMbeans..................false -2024-08-08 00:42:28 - scheduledExecutor...............none -2024-08-08 00:42:28 - schema..........................none -2024-08-08 00:42:28 - threadFactory...................internal -2024-08-08 00:42:28 - transactionIsolation............default -2024-08-08 00:42:28 - username........................"sa" -2024-08-08 00:42:28 - validationTimeout...............5000 -2024-08-08 00:42:28 - HikariPool-1 - Starting... -2024-08-08 00:42:28 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-08 00:42:28 - HikariPool-1 - Start completed. -2024-08-08 00:42:28 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-08 00:42:28 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-08 00:42:28 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:42:28 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-08 00:42:28 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:42:28 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:60935] -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:28 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-08 00:42:28 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 84 -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:28 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:42:28 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-08 00:42:28 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-08 00:42:28 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:28 - [javax.management.remote.rmi.RMIConnectionImpl@1184fbe4: connectionId=rmi://127.0.0.1 1] closing. -2024-08-08 00:42:28 - [javax.management.remote.rmi.RMIConnectionImpl@1184fbe4: connectionId=rmi://127.0.0.1 1] closed. -2024-08-08 00:42:28 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@59d5c537] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@59d5c537] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@59d5c537] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@59d5c537] to [STARTING] -2024-08-08 00:42:28 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@59d5c537] to [STARTED] -2024-08-08 00:42:28 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:42:28 - Filter 'requestContextFilter' configured for use -2024-08-08 00:42:28 - Filter 'webMvcObservationFilter' configured for use -2024-08-08 00:42:28 - Filter 'characterEncodingFilter' configured for use -2024-08-08 00:42:28 - Filter 'formContentFilter' configured for use -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:42:28 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:42:28 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:42:28 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-08 00:42:28 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [STARTING_PREP] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [STARTING] -2024-08-08 00:42:28 - Registered host [localhost] -2024-08-08 00:42:28 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-08 00:42:28 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-08 00:42:28 - Register Context [] for service [StandardService[Tomcat]] -2024-08-08 00:42:28 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-08 00:42:28 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [STARTED] -2024-08-08 00:42:28 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-08 00:42:28 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-08 00:42:28 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-08 00:42:28 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:42:28 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:42:28 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-08 00:42:28 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-08 00:42:28 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-08 00:42:28 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:42:28 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:42:28 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-08 00:42:28 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-08 00:42:28 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-08 00:42:28 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-08 00:42:28 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-08 00:42:28 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-08 00:42:28 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-08 00:42:28 - HHH000206: 'hibernate.properties' not found -2024-08-08 00:42:28 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-08 00:42:28 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-08 00:42:28 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-08 00:42:28 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-08 00:42:28 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 00:42:28 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 00:42:28 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-08 00:42:28 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-08 00:42:28 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-08 00:42:28 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 00:42:28 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-08 00:42:28 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-08 00:42:28 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 00:42:28 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-08 00:42:28 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-08 00:42:28 - HHH000026: Second-level cache disabled -2024-08-08 00:42:28 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-08 00:42:28 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-08 00:42:28 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-08 00:42:28 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-08 00:42:28 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-08 00:42:28 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-08 00:42:28 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-08 00:42:28 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-08 00:42:28 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-08 00:42:28 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-08 00:42:28 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-08 00:42:28 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-08 00:42:28 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-08 00:42:28 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-08 00:42:28 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-08 00:42:28 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-08 00:42:28 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-08 00:42:28 - Adding type registration image -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-08 00:42:28 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-08 00:42:28 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-08 00:42:28 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-08 00:42:28 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-08 00:42:28 - Adding type registration short -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-08 00:42:28 - Adding type registration short -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-08 00:42:28 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-08 00:42:28 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 00:42:28 - Adding type registration int -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 00:42:28 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 00:42:28 - Adding type registration long -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:42:28 - Adding type registration long -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:42:28 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:42:28 - Adding type registration float -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-08 00:42:28 - Adding type registration float -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-08 00:42:28 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-08 00:42:28 - Adding type registration double -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 00:42:28 - Adding type registration double -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 00:42:28 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 00:42:28 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 00:42:28 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 00:42:28 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 00:42:28 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 00:42:28 - Adding type registration character -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-08 00:42:28 - Adding type registration char -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-08 00:42:28 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-08 00:42:28 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-08 00:42:28 - Adding type registration string -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-08 00:42:28 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-08 00:42:28 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-08 00:42:28 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 00:42:28 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 00:42:28 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 00:42:28 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 00:42:28 - Adding type registration text -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 00:42:28 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-08 00:42:28 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 00:42:28 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 00:42:28 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 00:42:28 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 00:42:28 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-08 00:42:28 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-08 00:42:28 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 00:42:28 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-08 00:42:28 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-08 00:42:28 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 00:42:28 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 00:42:28 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 00:42:28 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 00:42:28 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 00:42:28 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 00:42:28 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 00:42:28 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 00:42:28 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 00:42:28 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-08 00:42:28 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-08 00:42:28 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-08 00:42:28 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-08 00:42:28 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-08 00:42:28 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-08 00:42:28 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-08 00:42:28 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-08 00:42:28 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-08 00:42:28 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 00:42:28 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 00:42:28 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 00:42:28 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-08 00:42:28 - Adding type registration date -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-08 00:42:28 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-08 00:42:28 - Adding type registration time -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 00:42:28 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 00:42:28 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 00:42:28 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 00:42:28 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 00:42:28 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-08 00:42:28 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-08 00:42:28 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-08 00:42:28 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-08 00:42:28 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-08 00:42:28 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-08 00:42:28 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-08 00:42:28 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-08 00:42:28 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-08 00:42:28 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-08 00:42:28 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-08 00:42:28 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-08 00:42:28 - Adding type registration class -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-08 00:42:28 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-08 00:42:28 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-08 00:42:28 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-08 00:42:28 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-08 00:42:28 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-08 00:42:28 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-08 00:42:28 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-08 00:42:28 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-08 00:42:28 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-08 00:42:28 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-08 00:42:28 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-08 00:42:28 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-08 00:42:28 - Adding type registration url -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-08 00:42:28 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-08 00:42:28 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-08 00:42:28 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-08 00:42:28 - Adding type registration object -> org.hibernate.type.JavaObjectType@6e017950 -2024-08-08 00:42:28 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@6e017950 -2024-08-08 00:42:28 - Adding type registration null -> org.hibernate.type.NullType@3e2772a9 -2024-08-08 00:42:28 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@4449b273 -2024-08-08 00:42:28 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@1fa18f87 -2024-08-08 00:42:28 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@1d9bd1d6 -2024-08-08 00:42:28 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@18ac4af6 -2024-08-08 00:42:28 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@117fb9ba -2024-08-08 00:42:28 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@2b1d1a5 -2024-08-08 00:42:28 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@41e7a544 -2024-08-08 00:42:28 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@3b66ac74 -2024-08-08 00:42:28 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-08 00:42:28 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-08 00:42:28 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@4f4d05b3] into BootstrapContext; was [null] -2024-08-08 00:42:28 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@4f4d05b3) [was null] -2024-08-08 00:42:28 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@160546b1] into BootstrapContext; was [null] -2024-08-08 00:42:28 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@103e7c7c] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@5c3710b3] -2024-08-08 00:42:29 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-08 00:42:29 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-08 00:42:29 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-08 00:42:29 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-08 00:42:29 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-08 00:42:29 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@4f4d05b3] -2024-08-08 00:42:29 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@4f4d05b3] -2024-08-08 00:42:29 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 00:42:29 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 00:42:29 - JDBC version : 4.2 -2024-08-08 00:42:29 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-08 00:42:29 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-08 00:42:29 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-08 00:42:29 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-08 00:42:29 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-08 00:42:29 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-08 00:42:29 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-08 00:42:29 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 00:42:29 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 00:42:29 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-08 00:42:29 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-08 00:42:29 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 00:42:29 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 00:42:29 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@229514ff] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@664254b6] -2024-08-08 00:42:29 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-08 00:42:29 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-08 00:42:29 - Import with entity name Action -2024-08-08 00:42:29 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-08 00:42:29 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:42:29 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-08 00:42:29 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-08 00:42:29 - Binding column: AnnotatedColumn() -2024-08-08 00:42:29 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:42:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:42:29 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:42:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-08 00:42:29 - building BasicValue for id -2024-08-08 00:42:29 - Skipping column re-registration: action.id -2024-08-08 00:42:29 - Building property id -2024-08-08 00:42:29 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:42:29 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:42:29 - Binding column: AnnotatedColumn() -2024-08-08 00:42:29 - Building property event -2024-08-08 00:42:29 - Binding column: AnnotatedColumn() -2024-08-08 00:42:29 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 00:42:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-08 00:42:29 - building BasicValue for sequence -2024-08-08 00:42:29 - Skipping column re-registration: action.sequence -2024-08-08 00:42:29 - Building property sequence -2024-08-08 00:42:29 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:42:29 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-08 00:42:29 - Import with entity name BillAction -2024-08-08 00:42:29 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-08 00:42:29 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:42:29 - Binding column: AnnotatedColumn() -2024-08-08 00:42:29 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:42:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:42:29 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:42:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-08 00:42:29 - building BasicValue for id -2024-08-08 00:42:29 - Skipping column re-registration: bill_action.id -2024-08-08 00:42:29 - Building property id -2024-08-08 00:42:29 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:42:29 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:42:29 - Binding column: AnnotatedColumn() -2024-08-08 00:42:29 - Building property action -2024-08-08 00:42:29 - Binding column: AnnotatedColumn() -2024-08-08 00:42:29 - MetadataSourceProcessor property price with lazy=false -2024-08-08 00:42:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-08 00:42:29 - building BasicValue for price -2024-08-08 00:42:29 - Skipping column re-registration: bill_action.price -2024-08-08 00:42:29 - Building property price -2024-08-08 00:42:29 - Binding column: AnnotatedColumn() -2024-08-08 00:42:29 - MetadataSourceProcessor property title with lazy=false -2024-08-08 00:42:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-08 00:42:29 - building BasicValue for title -2024-08-08 00:42:29 - Skipping column re-registration: bill_action.title -2024-08-08 00:42:29 - Building property title -2024-08-08 00:42:29 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:42:29 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-08 00:42:29 - Import with entity name MemberAction -2024-08-08 00:42:29 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-08 00:42:29 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:42:29 - Binding column: AnnotatedColumn() -2024-08-08 00:42:29 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:42:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:42:29 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:42:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-08 00:42:29 - building BasicValue for id -2024-08-08 00:42:29 - Skipping column re-registration: member_action.id -2024-08-08 00:42:29 - Building property id -2024-08-08 00:42:29 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:42:29 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:42:29 - Binding column: AnnotatedColumn() -2024-08-08 00:42:29 - Building property action -2024-08-08 00:42:29 - Binding column: AnnotatedColumn() -2024-08-08 00:42:29 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-08 00:42:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-08 00:42:29 - building BasicValue for memberGroupId -2024-08-08 00:42:29 - Skipping column re-registration: member_action.member_group_id -2024-08-08 00:42:29 - Building property memberGroupId -2024-08-08 00:42:29 - Binding column: AnnotatedColumn() -2024-08-08 00:42:29 - MetadataSourceProcessor property memberName with lazy=false -2024-08-08 00:42:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-08 00:42:29 - building BasicValue for memberName -2024-08-08 00:42:29 - Skipping column re-registration: member_action.member_name -2024-08-08 00:42:29 - Building property memberName -2024-08-08 00:42:29 - Binding column: AnnotatedColumn() -2024-08-08 00:42:29 - MetadataSourceProcessor property status with lazy=false -2024-08-08 00:42:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-08 00:42:29 - building BasicValue for status -2024-08-08 00:42:29 - Skipping column re-registration: member_action.status -2024-08-08 00:42:29 - Building property status -2024-08-08 00:42:29 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:42:29 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-08 00:42:29 - Import with entity name Event -2024-08-08 00:42:29 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-08 00:42:29 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:42:29 - Binding column: AnnotatedColumn() -2024-08-08 00:42:29 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:42:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:42:29 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:42:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-08 00:42:29 - building BasicValue for id -2024-08-08 00:42:29 - Skipping column re-registration: event.id -2024-08-08 00:42:29 - Building property id -2024-08-08 00:42:29 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:42:29 - Binding column: AnnotatedColumn() -2024-08-08 00:42:29 - MetadataSourceProcessor property name with lazy=false -2024-08-08 00:42:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-08 00:42:29 - building BasicValue for name -2024-08-08 00:42:29 - Skipping column re-registration: event.name -2024-08-08 00:42:29 - Building property name -2024-08-08 00:42:29 - Binding column: AnnotatedColumn() -2024-08-08 00:42:29 - MetadataSourceProcessor property password with lazy=false -2024-08-08 00:42:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-08 00:42:29 - building BasicValue for password -2024-08-08 00:42:29 - Skipping column re-registration: event.password -2024-08-08 00:42:29 - Building property password -2024-08-08 00:42:29 - Binding column: AnnotatedColumn() -2024-08-08 00:42:29 - MetadataSourceProcessor property token with lazy=false -2024-08-08 00:42:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-08 00:42:29 - building BasicValue for token -2024-08-08 00:42:29 - Skipping column re-registration: event.token -2024-08-08 00:42:29 - Building property token -2024-08-08 00:42:29 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 00:42:29 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-08 00:42:29 - Import with entity name EventStep -2024-08-08 00:42:29 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-08 00:42:29 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:42:29 - Binding column: AnnotatedColumn() -2024-08-08 00:42:29 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:42:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:42:29 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:42:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-08 00:42:29 - building BasicValue for id -2024-08-08 00:42:29 - Skipping column re-registration: event_step.id -2024-08-08 00:42:29 - Building property id -2024-08-08 00:42:29 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:42:29 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:42:29 - Binding column: AnnotatedColumn() -2024-08-08 00:42:29 - Building property event -2024-08-08 00:42:29 - Binding column: AnnotatedColumn() -2024-08-08 00:42:29 - MetadataSourceProcessor property name with lazy=false -2024-08-08 00:42:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-08 00:42:29 - building BasicValue for name -2024-08-08 00:42:29 - Skipping column re-registration: event_step.name -2024-08-08 00:42:29 - Building property name -2024-08-08 00:42:29 - Binding column: AnnotatedColumn() -2024-08-08 00:42:29 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 00:42:29 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-08 00:42:29 - building BasicValue for sequence -2024-08-08 00:42:29 - Skipping column re-registration: event_step.sequence -2024-08-08 00:42:29 - Building property sequence -2024-08-08 00:42:29 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 00:42:29 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:42:29 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 00:42:29 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:42:29 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-08 00:42:29 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-08 00:42:29 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:42:29 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-08 00:42:29 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-08 00:42:29 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-08 00:42:29 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:42:29 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 00:42:29 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-08 00:42:29 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-08 00:42:29 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:42:29 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 00:42:29 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 00:42:29 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-08 00:42:29 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-08 00:42:29 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-08 00:42:29 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-08 00:42:29 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-08 00:42:29 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-08 00:42:29 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-08 00:42:29 - Building session factory -2024-08-08 00:42:29 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:42:29 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@6b3bc1f6, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@7491cdae, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.525416603836267967, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=87814, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.525416603836267967, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@3050d479, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-08 00:42:29 - Session factory constructed with filter configurations : {} -2024-08-08 00:42:29 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:42:29 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:42:29 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:42:29 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:42:29 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:42:29 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:42:29 - Loaded expression factory via original TCCL -2024-08-08 00:42:29 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:42:29 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:42:29 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:42:29 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:42:29 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:42:29 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:42:29 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:42:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:42:29 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:42:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:42:29 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:42:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:42:29 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:42:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:42:29 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:42:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:42:29 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:42:29 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-08 00:42:29 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@39fc17be] under count; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@55d8f6bb] under every; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@56b48163] under any; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4fe9adfb] under sinh; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@f8fe81e] under cosh; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6ad0cd43] under tanh; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7de43652] under pi; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7fe0ca60] under log; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-08 00:42:29 - Registering alternate key : length -> character_length -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@2a9ea03f] under position; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@78e7b83] under overlay; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@74e175c7] under trim; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@21d48c40] under cast; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4a10c019] under collate; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@639cb0c8] under extract; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@7f9d40b3] under ifnull; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@2ba9ed19] under pad; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@641cea11] under str; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@4b7c0f39] under format; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@1b30b6f8] under timestampadd; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@b814e23] under timestampdiff; prior registration was null -2024-08-08 00:42:29 - Registering alternate key : dateadd -> timestampadd -2024-08-08 00:42:29 - Registering alternate key : datediff -> timestampdiff -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7c4a5ef2] under current_date; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@299dd381] under current_time; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@34d3409d] under current_timestamp; prior registration was null -2024-08-08 00:42:29 - Registering alternate key : current date -> current_date -2024-08-08 00:42:29 - Registering alternate key : current time -> current_time -2024-08-08 00:42:29 - Registering alternate key : current timestamp -> current_timestamp -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@16732340] under local_date; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@38e052b2] under local_time; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7fa68ff4] under local_datetime; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@515fff35] under offset_datetime; prior registration was null -2024-08-08 00:42:29 - Registering alternate key : local date -> local_date -2024-08-08 00:42:29 - Registering alternate key : local time -> local_time -2024-08-08 00:42:29 - Registering alternate key : local datetime -> local_datetime -2024-08-08 00:42:29 - Registering alternate key : offset datetime -> offset_datetime -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5eb9bf7d] under instant; prior registration was null -2024-08-08 00:42:29 - Registering alternate key : current_instant -> instant -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@123d0816] under sql; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@4601a148] under count; prior registration was org.hibernate.dialect.function.CountFunction@39fc17be -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@1e033801] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7de43652 -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@58e4aa67] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-08 00:42:29 - Registering alternate key : day -> day_of_month -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@38e052b2 -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@7fa68ff4 -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@156eeff1] under trunc; prior registration was null -2024-08-08 00:42:29 - Registering alternate key : truncate -> trunc -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@34001c5d] under date_trunc; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-08 00:42:29 - Registering alternate key : chr -> char -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@30e15628] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@2a9ea03f -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@37ab1b10] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-08 00:42:29 - Registering alternate key : every -> bool_and -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-08 00:42:29 - Registering alternate key : any -> bool_or -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@55d87b73] under format; prior registration was org.hibernate.dialect.function.FormatFunction@4b7c0f39 -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@30ca66c5] under listagg; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@125a8ab6] under mode; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@792b9dd3] under percentile_cont; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@cbc3bf3] under percentile_disc; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@3fdede3a] under rank; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@41948c13] under dense_rank; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@3085befb] under percent_rank; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@62264d4f] under cume_dist; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@57ac236a] under array; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@4542af89] under array_list; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@cce92b5] under array_agg; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@1a6a4595] under array_position; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@2a9e7b4d] under array_positions; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@69fe8c75] under array_positions_list; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@633cad4d] under array_length; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@384f0e32] under array_concat; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@4803bf73] under array_prepend; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@13731ff4] under array_append; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@257d3968] under array_contains; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@23cfdfa2] under array_contains_nullable; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@a84b6de] under array_overlaps; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@76eee0b1] under array_overlaps_nullable; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5d67bf4d] under array_get; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@18918d70] under array_set; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@2681185e] under array_remove; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@15fd3088] under array_remove_index; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@f13e0a2] under array_slice; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@4fe3f9ef] under array_replace; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2c86b0ea] under array_trim; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@30b97fcf] under array_fill; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@b791e6e] under array_fill_list; prior registration was null -2024-08-08 00:42:29 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@510bd87a] under array_to_string; prior registration was null -2024-08-08 00:42:29 - abs(NUMERIC arg) -2024-08-08 00:42:29 - Double acos(NUMERIC arg) -2024-08-08 00:42:29 - Boolean any(BOOLEAN predicate) -2024-08-08 00:42:29 - array( ... ) -2024-08-08 00:42:29 - array_agg(arg) -2024-08-08 00:42:29 - array_append( ... ) -2024-08-08 00:42:29 - array_concat( ... ) -2024-08-08 00:42:29 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 00:42:29 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 00:42:29 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-08 00:42:29 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-08 00:42:29 - array_get(ARRAY array, INTEGER index) -2024-08-08 00:42:29 - Integer array_length(ARRAY array) -2024-08-08 00:42:29 - array_list( ... ) -2024-08-08 00:42:29 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-08 00:42:29 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-08 00:42:29 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-08 00:42:29 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-08 00:42:29 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-08 00:42:29 - array_prepend( ... ) -2024-08-08 00:42:29 - array_remove( ... ) -2024-08-08 00:42:29 - array_remove_index( ... ) -2024-08-08 00:42:29 - array_replace( ... ) -2024-08-08 00:42:29 - array_set( ... ) -2024-08-08 00:42:29 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-08 00:42:29 - String array_to_string( ... ) -2024-08-08 00:42:29 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-08 00:42:29 - Integer ascii(STRING arg) -2024-08-08 00:42:29 - Double asin(NUMERIC arg) -2024-08-08 00:42:29 - Double atan(NUMERIC arg) -2024-08-08 00:42:29 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-08 00:42:29 - avg(NUMERIC arg) -2024-08-08 00:42:29 - bit_and(arg) -2024-08-08 00:42:29 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-08 00:42:29 - bit_or(arg) -2024-08-08 00:42:29 - bitand(arg0, arg1) -2024-08-08 00:42:29 - bitnot(arg) -2024-08-08 00:42:29 - bitor(arg0, arg1) -2024-08-08 00:42:29 - bitxor(arg0, arg1) -2024-08-08 00:42:29 - Boolean bool_and(BOOLEAN predicate) -2024-08-08 00:42:29 - Boolean bool_or(BOOLEAN predicate) -2024-08-08 00:42:29 - cast(arg as Type) -2024-08-08 00:42:29 - ceiling(NUMERIC arg) -2024-08-08 00:42:29 - Character char(INTEGER arg) -2024-08-08 00:42:29 - Integer character_length(STRING_OR_CLOB arg) -2024-08-08 00:42:29 - Character chr(INTEGER arg) -2024-08-08 00:42:29 - coalesce(arg0[, arg1[, ...]]) -2024-08-08 00:42:29 - String collate(STRING string as COLLATION collation) -2024-08-08 00:42:29 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-08 00:42:29 - Double cos(NUMERIC arg) -2024-08-08 00:42:29 - Double cosh(NUMERIC arg) -2024-08-08 00:42:29 - Double cot(NUMERIC arg) -2024-08-08 00:42:29 - Long count([distinct ]{arg|*}) -2024-08-08 00:42:29 - Double cume_dist([arg0[, ...]]) -2024-08-08 00:42:29 - Date curdate() -2024-08-08 00:42:29 - Date current date -2024-08-08 00:42:29 - Time current time -2024-08-08 00:42:29 - Timestamp current timestamp -2024-08-08 00:42:29 - Date current_date -2024-08-08 00:42:29 - Instant current_instant -2024-08-08 00:42:29 - Time current_time -2024-08-08 00:42:29 - Timestamp current_timestamp -2024-08-08 00:42:29 - Time curtime() -2024-08-08 00:42:29 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-08 00:42:29 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 00:42:29 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 00:42:29 - Integer day(DATE arg) -2024-08-08 00:42:29 - Integer day_of_month(DATE arg) -2024-08-08 00:42:29 - Integer day_of_week(DATE arg) -2024-08-08 00:42:29 - Integer day_of_year(DATE arg) -2024-08-08 00:42:29 - String dayname(DATE arg) -2024-08-08 00:42:29 - Double degrees(NUMERIC arg) -2024-08-08 00:42:29 - Long dense_rank([arg0[, ...]]) -2024-08-08 00:42:29 - Boolean every(BOOLEAN predicate) -2024-08-08 00:42:29 - Double exp(NUMERIC arg) -2024-08-08 00:42:29 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-08 00:42:29 - first_valueANY value -2024-08-08 00:42:29 - floor(NUMERIC arg) -2024-08-08 00:42:29 - String format(TEMPORAL datetime as STRING pattern) -2024-08-08 00:42:29 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 00:42:29 - Integer hour(TIME arg) -2024-08-08 00:42:29 - ifnull(arg0, arg1) -2024-08-08 00:42:29 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-08 00:42:29 - Instant instant -2024-08-08 00:42:29 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-08 00:42:29 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-08 00:42:29 - last_valueANY value -2024-08-08 00:42:29 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-08 00:42:29 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 00:42:29 - String left(STRING string, INTEGER length) -2024-08-08 00:42:29 - Integer length(STRING_OR_CLOB arg) -2024-08-08 00:42:29 - String listagg(STRING arg0, STRING arg1) -2024-08-08 00:42:29 - Double ln(NUMERIC arg) -2024-08-08 00:42:29 - LocalDate local date -2024-08-08 00:42:29 - LocalDateTime local datetime -2024-08-08 00:42:29 - LocalTime local time -2024-08-08 00:42:29 - LocalDate local_date -2024-08-08 00:42:29 - LocalDateTime local_datetime -2024-08-08 00:42:29 - LocalTime local_time -2024-08-08 00:42:29 - Time localtime -2024-08-08 00:42:29 - Timestamp localtimestamp -2024-08-08 00:42:29 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-08 00:42:29 - Double log(NUMERIC base, NUMERIC arg) -2024-08-08 00:42:29 - Double log10(NUMERIC arg) -2024-08-08 00:42:29 - String lower(STRING string) -2024-08-08 00:42:29 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 00:42:29 - String ltrim(STRING string) -2024-08-08 00:42:29 - max(COMPARABLE arg) -2024-08-08 00:42:29 - Double median(NUMERIC arg) -2024-08-08 00:42:29 - Integer microsecond(TIME arg) -2024-08-08 00:42:29 - min(COMPARABLE arg) -2024-08-08 00:42:29 - Integer minute(TIME arg) -2024-08-08 00:42:29 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-08 00:42:29 - mode() -2024-08-08 00:42:29 - Integer month(DATE arg) -2024-08-08 00:42:29 - String monthname(DATE arg) -2024-08-08 00:42:29 - Timestamp now() -2024-08-08 00:42:29 - nth_valueANY value, INTEGER nth -2024-08-08 00:42:29 - nullif(arg0, arg1) -2024-08-08 00:42:29 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-08 00:42:29 - OffsetDateTime offset datetime -2024-08-08 00:42:29 - OffsetDateTime offset_datetime -2024-08-08 00:42:29 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-08 00:42:29 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-08 00:42:29 - Double percent_rank([arg0[, ...]]) -2024-08-08 00:42:29 - percentile_cont(NUMERIC arg) -2024-08-08 00:42:29 - percentile_disc(NUMERIC arg) -2024-08-08 00:42:29 - Double pi -2024-08-08 00:42:29 - Integer position(STRING pattern in STRING string) -2024-08-08 00:42:29 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-08 00:42:29 - Integer quarter(DATE arg) -2024-08-08 00:42:29 - Double radians(NUMERIC arg) -2024-08-08 00:42:29 - Double rand([INTEGER seed]) -2024-08-08 00:42:29 - Long rank([arg0[, ...]]) -2024-08-08 00:42:29 - String repeat(STRING string, INTEGER times) -2024-08-08 00:42:29 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-08 00:42:29 - String right(STRING string, INTEGER length) -2024-08-08 00:42:29 - round(NUMERIC number[, INTEGER places]) -2024-08-08 00:42:29 - Long row_number() -2024-08-08 00:42:29 - Long rownum() -2024-08-08 00:42:29 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 00:42:29 - String rtrim(STRING string) -2024-08-08 00:42:29 - Integer second(TIME arg) -2024-08-08 00:42:29 - Integer sign(NUMERIC arg) -2024-08-08 00:42:29 - Double sin(NUMERIC arg) -2024-08-08 00:42:29 - Double sinh(NUMERIC arg) -2024-08-08 00:42:29 - String soundex(arg) -2024-08-08 00:42:29 - String space(INTEGER arg) -2024-08-08 00:42:29 - Object sql -2024-08-08 00:42:29 - Double sqrt(NUMERIC arg) -2024-08-08 00:42:29 - Double stddev_pop(NUMERIC arg) -2024-08-08 00:42:29 - Double stddev_samp(NUMERIC arg) -2024-08-08 00:42:29 - String str(arg) -2024-08-08 00:42:29 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-08 00:42:29 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-08 00:42:29 - sum(arg) -2024-08-08 00:42:29 - Timestamp sysdate -2024-08-08 00:42:29 - Double tan(NUMERIC arg) -2024-08-08 00:42:29 - Double tanh(NUMERIC arg) -2024-08-08 00:42:29 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 00:42:29 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 00:42:29 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-08 00:42:29 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-08 00:42:29 - trunc( ... ) -2024-08-08 00:42:29 - truncate( ... ) -2024-08-08 00:42:29 - String upper(STRING string) -2024-08-08 00:42:29 - Double var_pop(NUMERIC arg) -2024-08-08 00:42:29 - Double var_samp(NUMERIC arg) -2024-08-08 00:42:29 - Integer week(DATE arg) -2024-08-08 00:42:29 - Integer year(DATE arg) -2024-08-08 00:42:29 - Starting QueryInterpretationCache(2048) -2024-08-08 00:42:29 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-08 00:42:29 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-08 00:42:29 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:42:29 - Configured EntityCopyObserver strategy: disallow -2024-08-08 00:42:29 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:42:29 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:42:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:42:29 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-08 00:42:29 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:42:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:42:29 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-08 00:42:29 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:42:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:42:29 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-08 00:42:29 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:42:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:42:29 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-08 00:42:29 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:42:29 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:42:29 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-08 00:42:29 - Starting post-init callbacks -2024-08-08 00:42:29 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-08 00:42:29 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-08 00:42:29 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-08 00:42:29 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-08 00:42:29 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-08 00:42:29 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-08 00:42:29 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-08 00:42:29 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-08 00:42:29 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 82 -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 84 -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:29 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:29 - [javax.management.remote.rmi.RMIConnectionImpl@7b866594: connectionId=rmi://127.0.0.1 2] closing. -2024-08-08 00:42:29 - [javax.management.remote.rmi.RMIConnectionImpl@7b866594: connectionId=rmi://127.0.0.1 2] closed. -2024-08-08 00:42:29 - Created new SQL alias : ba1_0 -2024-08-08 00:42:29 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-08 00:42:29 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@40f931ec] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-08 00:42:29 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-08 00:42:29 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-08 00:42:29 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-08 00:42:29 - Version select: select id from bill_action where id=? -2024-08-08 00:42:29 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-08 00:42:29 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-08 00:42:29 - Delete (0): delete from bill_action where id=? -2024-08-08 00:42:29 - Created new SQL alias : ma1_0 -2024-08-08 00:42:29 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-08 00:42:29 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6dd7af2f] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-08 00:42:29 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-08 00:42:29 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-08 00:42:29 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-08 00:42:29 - Version select: select id from member_action where id=? -2024-08-08 00:42:29 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-08 00:42:29 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-08 00:42:29 - Delete (0): delete from member_action where id=? -2024-08-08 00:42:29 - Created new SQL alias : e1_0 -2024-08-08 00:42:29 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-08 00:42:29 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-08 00:42:29 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-08 00:42:29 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-08 00:42:29 - Version select: select id from event where id=? -2024-08-08 00:42:29 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-08 00:42:29 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-08 00:42:29 - Delete (0): delete from event where id=? -2024-08-08 00:42:29 - Created new SQL alias : a1_0 -2024-08-08 00:42:29 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-08 00:42:29 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@39c93af6] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-08 00:42:29 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-08 00:42:29 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-08 00:42:29 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-08 00:42:29 - Version select: select id from action where id=? -2024-08-08 00:42:29 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-08 00:42:29 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-08 00:42:29 - Delete (0): delete from action where id=? -2024-08-08 00:42:29 - Created new SQL alias : es1_0 -2024-08-08 00:42:29 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-08 00:42:29 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7b1b1784] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-08 00:42:29 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-08 00:42:29 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-08 00:42:29 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-08 00:42:29 - Version select: select id from event_step where id=? -2024-08-08 00:42:29 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-08 00:42:29 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-08 00:42:29 - Delete (0): delete from event_step where id=? -2024-08-08 00:42:29 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-08 00:42:29 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@229514ff] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@299c86f0] -2024-08-08 00:42:29 - Checking 0 named HQL queries -2024-08-08 00:42:29 - Checking 0 named SQL queries -2024-08-08 00:42:29 - - drop table if exists action cascade -2024-08-08 00:42:29 - - drop table if exists bill_action cascade -2024-08-08 00:42:29 - - drop table if exists event cascade -2024-08-08 00:42:29 - - drop table if exists event_step cascade -2024-08-08 00:42:29 - - drop table if exists member_action cascade -2024-08-08 00:42:29 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-08 00:42:29 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-08 00:42:29 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-08 00:42:29 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-08 00:42:29 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-08 00:42:29 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-08 00:42:29 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-08 00:42:29 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-08 00:42:29 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-08 00:42:29 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@1eda853f -2024-08-08 00:42:29 - Registering SessionFactory: 9cfce657-a63f-460f-90cc-e1f10349fae8 (<unnamed>) -2024-08-08 00:42:29 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-08 00:42:29 - Instantiated SessionFactory -2024-08-08 00:42:29 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'actionService' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-08 00:42:29 - Initializing JpaMetamodelMappingContext… -2024-08-08 00:42:29 - Finished initializing JpaMetamodelMappingContext -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - Statistics initialized [enabled=false] -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-08 00:42:29 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-08 00:42:29 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-08 00:42:29 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-08 00:42:29 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:42:29 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - Looking up named query BillAction.findByAction_Event -2024-08-08 00:42:29 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:42:29 - Did not find named query BillAction.findByAction_Event -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - Looking up named query BillAction.findByAction_Id -2024-08-08 00:42:29 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:42:29 - Did not find named query BillAction.findByAction_Id -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 00:42:29 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:42:29 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 00:42:29 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:42:29 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-08 00:42:29 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:42:29 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-08 00:42:29 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 00:42:29 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:42:29 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 00:42:29 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:42:29 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-08 00:42:29 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 00:42:29 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-08 00:42:29 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 00:42:29 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:42:29 - Did not find named query MemberAction.findAllByEvent.count -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-08 00:42:29 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:42:29 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(767612352603041)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(767612352603041)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(767612352603041)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(767612352603041)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(767612352603041).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:42:29 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:42:29 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-08 00:42:29 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:42:29 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:42:29 - Looking up named query MemberAction.findByAction -2024-08-08 00:42:29 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:42:29 - Did not find named query MemberAction.findByAction -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'eventRepository' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - Looking up named query Event.findByToken -2024-08-08 00:42:29 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:42:29 - Did not find named query Event.findByToken -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-08 00:42:29 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-08 00:42:29 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:42:29 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'billActionService' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'actionRepository' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:42:29 - Did not find named query Action.findLastByEvent.count -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-08 00:42:29 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:42:29 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:42:29 - Looking up named query Action.findByIdAndEvent -2024-08-08 00:42:29 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:42:29 - Did not find named query Action.findByIdAndEvent -2024-08-08 00:42:29 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:42:29 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-08 00:42:29 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-08 00:42:29 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-08 00:42:29 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'eventService' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-08 00:42:29 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-08 00:42:29 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-08 00:42:29 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-08 00:42:29 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-08 00:42:29 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'memberActionService' -2024-08-08 00:42:29 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-08 00:42:29 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:42:29 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-08 00:42:29 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 00:42:29 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 00:42:29 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-08 00:42:29 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'actionController' -2024-08-08 00:42:29 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'billActionController' -2024-08-08 00:42:29 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'eventController' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'authService' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 00:42:29 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-08 00:42:29 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-08 00:42:29 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'memberActionController' -2024-08-08 00:42:29 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 82 -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 82 -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 82 -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 84 -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 82 -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 82 -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:29 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:42:29 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 82 -2024-08-08 00:42:29 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:29 - [javax.management.remote.rmi.RMIConnectionImpl@6c8d3797: connectionId=rmi://127.0.0.1 3] closing. -2024-08-08 00:42:29 - [javax.management.remote.rmi.RMIConnectionImpl@6c8d3797: connectionId=rmi://127.0.0.1 3] closed. -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-08 00:42:29 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-08 00:42:29 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-08 00:42:29 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:42:29 - Loaded expression factory via original TCCL -2024-08-08 00:42:29 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-08 00:42:29 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-08 00:42:29 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:42:29 - Trying to load META-INF/validation.xml via user class loader -2024-08-08 00:42:29 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:42:29 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:42:29 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:42:29 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:42:29 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:42:29 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:42:29 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:42:29 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:42:29 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:42:29 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:42:29 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'error' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:42:29 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:42:29 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-08 00:42:29 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-08 00:42:29 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:42:29 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:42:29 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-08 00:42:29 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:42:29 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:42:29 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-08 00:42:29 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-08 00:42:29 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-08 00:42:29 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-08 00:42:29 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-08 00:42:29 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-08 00:42:29 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:42:29 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:42:29 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-08 00:42:29 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:42:29 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:42:29 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'localeResolver' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'themeResolver' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-08 00:42:29 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:42:29 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:42:29 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:42:29 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-08 00:42:29 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-08 00:42:29 - - s.h.p.EventController: - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) -2024-08-08 00:42:29 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-08 00:42:29 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-08 00:42:29 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-08 00:42:29 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:42:29 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-08 00:42:29 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:42:29 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:42:29 - 'beanNameHandlerMapping' {} -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-08 00:42:29 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:42:29 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'messageConverters' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-08 00:42:29 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 00:42:29 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-08 00:42:29 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:42:29 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:42:29 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-08 00:42:29 - Creating shared instance of singleton bean 'pageModule' -2024-08-08 00:42:29 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:42:29 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 00:42:29 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-08 00:42:30 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-08 00:42:30 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:42:30 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:42:30 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:42:30 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-08 00:42:30 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:42:30 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-08 00:42:30 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'sortResolver' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-08 00:42:30 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-08 00:42:30 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-08 00:42:30 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-08 00:42:30 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-08 00:42:30 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-08 00:42:30 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:42:30 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-08 00:42:30 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 00:42:30 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-08 00:42:30 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-08 00:42:30 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'transactionManager' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-08 00:42:30 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-08 00:42:30 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:42:30 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-08 00:42:30 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:42:30 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-08 00:42:30 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-08 00:42:30 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-08 00:42:30 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-08 00:42:30 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-08 00:42:30 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-08 00:42:30 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-08 00:42:30 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-08 00:42:30 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-08 00:42:30 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-08 00:42:30 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-08 00:42:30 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-08 00:42:30 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-08 00:42:30 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:42:30 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:42:30 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-08 00:42:30 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-08 00:42:30 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-08 00:42:30 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-08 00:42:30 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-08 00:42:30 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-08 00:42:30 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-08 00:42:30 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-08 00:42:30 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-08 00:42:30 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 00:42:30 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-08 00:42:30 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:42:30 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:42:30 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 00:42:30 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-08 00:42:30 - Using SLF4J as the default logging framework -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-08 00:42:30 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-08 00:42:30 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-08 00:42:30 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-08 00:42:30 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-08 00:42:30 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-08 00:42:30 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'observedAspect' -2024-08-08 00:42:30 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-08 00:42:30 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-08 00:42:30 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 00:42:30 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-08 00:42:30 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 00:42:30 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-08 00:42:30 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-08 00:42:30 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-08 00:42:30 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-08 00:42:30 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-08 00:42:30 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-08 00:42:30 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-08 00:42:30 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 00:42:30 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:42:30 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:42:30 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-08 00:42:30 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-08 00:42:30 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-08 00:42:30 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:42:30 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:42:30 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-08 00:42:30 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-08 00:42:30 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-08 00:42:30 - Registering beans for JMX exposure on startup -2024-08-08 00:42:30 - Auto-detecting user-defined JMX MBeans -2024-08-08 00:42:30 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-08 00:42:30 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-08 00:42:30 - Starting beans in phase -2147483647 -2024-08-08 00:42:30 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-08 00:42:30 - Starting beans in phase 2147481599 -2024-08-08 00:42:30 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-08 00:42:30 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-08 00:42:30 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-08 00:42:30 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-08 00:42:30 - Tomcat started on port 8080 (http) with context path '/' -2024-08-08 00:42:30 - Successfully started bean 'webServerStartStop' -2024-08-08 00:42:30 - Starting beans in phase 2147482623 -2024-08-08 00:42:30 - Successfully started bean 'webServerGracefulShutdown' -2024-08-08 00:42:30 - Starting beans in phase 2147483647 -2024-08-08 00:42:30 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-08 00:42:30 - Started HaengdongApplication in 2.305 seconds (process running for 2.49) -2024-08-08 00:42:30 - Application availability state LivenessState changed to CORRECT -2024-08-08 00:42:30 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-08 00:42:30 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 82 -2024-08-08 00:42:30 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 84 -2024-08-08 00:42:30 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:42:30 - RMI TCP Connection(1)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - [javax.management.remote.rmi.RMIConnectionImpl@20df6b0a: connectionId=rmi://127.0.0.1 4] closing. -2024-08-08 00:42:30 - [javax.management.remote.rmi.RMIConnectionImpl@20df6b0a: connectionId=rmi://127.0.0.1 4] closed. -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:60944] -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:60945] -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 84 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 84 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - [javax.management.remote.rmi.RMIConnectionImpl@5361e8c5: connectionId=rmi://127.0.0.1 6] closing. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - [javax.management.remote.rmi.RMIConnectionImpl@5361e8c5: connectionId=rmi://127.0.0.1 6] closed. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 84 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - [javax.management.remote.rmi.RMIConnectionImpl@223562f1: connectionId=rmi://127.0.0.1 5] closing. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - [javax.management.remote.rmi.RMIConnectionImpl@223562f1: connectionId=rmi://127.0.0.1 5] closed. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - [javax.management.remote.rmi.RMIConnectionImpl@7898a36d: connectionId=rmi://127.0.0.1 7] closing. -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - [javax.management.remote.rmi.RMIConnectionImpl@7898a36d: connectionId=rmi://127.0.0.1 7] closed. -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 84 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - [javax.management.remote.rmi.RMIConnectionImpl@60d578b9: connectionId=rmi://127.0.0.1 8] closing. -2024-08-08 00:42:30 - [javax.management.remote.rmi.RMIConnectionImpl@60d578b9: connectionId=rmi://127.0.0.1 8] closed. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 82 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 82 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 84 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 84 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - [javax.management.remote.rmi.RMIConnectionImpl@20466378: connectionId=rmi://127.0.0.1 9] closing. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - [javax.management.remote.rmi.RMIConnectionImpl@20466378: connectionId=rmi://127.0.0.1 9] closed. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - [javax.management.remote.rmi.RMIConnectionImpl@22c02b45: connectionId=rmi://127.0.0.1 10] closing. -2024-08-08 00:42:30 - [javax.management.remote.rmi.RMIConnectionImpl@22c02b45: connectionId=rmi://127.0.0.1 10] closed. -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 84 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 84 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:42:30 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-08 00:42:30 - Fetching JDBC Connection from DataSource -2024-08-08 00:42:30 - Fetching JDBC Connection from DataSource -2024-08-08 00:42:30 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-08 00:42:30 - Initializing Servlet 'dispatcherServlet' -2024-08-08 00:42:30 - Detected StandardServletMultipartResolver -2024-08-08 00:42:30 - Detected AcceptHeaderLocaleResolver -2024-08-08 00:42:30 - Detected FixedThemeResolver -2024-08-08 00:42:30 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@6679a082 -2024-08-08 00:42:30 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@5a1c0bcc -2024-08-08 00:42:30 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-08 00:42:30 - Completed initialization in 1 ms -2024-08-08 00:42:30 - RMI TCP Connection(3)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - [javax.management.remote.rmi.RMIConnectionImpl@5bc1efef: connectionId=rmi://127.0.0.1 11] closing. -2024-08-08 00:42:30 - [javax.management.remote.rmi.RMIConnectionImpl@5bc1efef: connectionId=rmi://127.0.0.1 11] closed. -2024-08-08 00:42:30 - RMI TCP Connection(2)-127.0.0.1: (port 60930) op = 80 -2024-08-08 00:42:30 - [javax.management.remote.rmi.RMIConnectionImpl@4b911ae0: connectionId=rmi://127.0.0.1 12] closing. -2024-08-08 00:42:30 - [javax.management.remote.rmi.RMIConnectionImpl@4b911ae0: connectionId=rmi://127.0.0.1 12] closed. -2024-08-08 00:42:35 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.525416603836267967/conf/jaspic-providers.xml] -2024-08-08 00:42:35 - POST "/api/events", parameters={} -2024-08-08 00:42:35 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:42:35 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:42:35 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=토다리, password=0987]] -2024-08-08 00:42:35 - Found thread-bound EntityManager [SessionImpl(781729558<open>)] for JPA transaction -2024-08-08 00:42:35 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-08 00:42:35 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:42:35 - begin -2024-08-08 00:42:35 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@32d3ee7a] -2024-08-08 00:42:35 - Found thread-bound EntityManager [SessionImpl(781729558<open>)] for JPA transaction -2024-08-08 00:42:35 - Participating in existing transaction -2024-08-08 00:42:35 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-08 00:42:35 - Executing identity-insert immediately -2024-08-08 00:42:35 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-08 00:42:35 - Initializer list is empty -2024-08-08 00:42:35 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@7aa013c -2024-08-08 00:42:35 - Extracted JDBC value [0] - [1] -2024-08-08 00:42:35 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@4a055f6c -2024-08-08 00:42:35 - Initiating transaction commit -2024-08-08 00:42:35 - Committing JPA transaction on EntityManager [SessionImpl(781729558<open>)] -2024-08-08 00:42:35 - committing -2024-08-08 00:42:35 - Processing flush-time cascades -2024-08-08 00:42:35 - Dirty checking collections -2024-08-08 00:42:35 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-08 00:42:35 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-08 00:42:35 - Listing entities: -2024-08-08 00:42:35 - server.haengdong.domain.event.Event{password=0987, name=토다리, id=1, token=7428f2a7-cb8d-49bf-8111-f9ff80eb7f2e} -2024-08-08 00:42:35 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:42:35 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:42:35 - Writing [EventResponse[eventId=7428f2a7-cb8d-49bf-8111-f9ff80eb7f2e]] -2024-08-08 00:42:35 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:42:35 - Completed 200 OK -2024-08-08 00:42:58 - RMI TCP Connection(3)-127.0.0.1: (port 60930) connection closed -2024-08-08 00:42:58 - RMI TCP Connection(2)-127.0.0.1: (port 60930) connection closed -2024-08-08 00:42:58 - RMI TCP Connection(1)-127.0.0.1: (port 60930) connection closed -2024-08-08 00:42:58 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60945,localport=60930] -2024-08-08 00:42:58 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60935,localport=60930] -2024-08-08 00:42:58 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=60944,localport=60930] -2024-08-08 00:42:58 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60945,localport=60930] -2024-08-08 00:42:58 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60935,localport=60930] -2024-08-08 00:42:58 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=60944,localport=60930] -2024-08-08 00:42:58 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:42:58 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:43:18 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-08 00:43:18 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Thu Aug 08 00:42:28 KST 2024 -2024-08-08 00:43:18 - Stopping beans in phase 2147483647 -2024-08-08 00:43:18 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-08 00:43:18 - Stopping beans in phase 2147482623 -2024-08-08 00:43:18 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-08 00:43:18 - Stopping beans in phase 2147481599 -2024-08-08 00:43:18 - Bean 'webServerStartStop' completed its stop procedure -2024-08-08 00:43:18 - Stopping beans in phase -2147483647 -2024-08-08 00:43:18 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-08 00:43:18 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-08 00:43:18 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-08 00:43:18 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-08 00:43:18 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-08 00:43:18 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-08 00:43:18 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-08 00:43:18 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-08 00:43:18 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-08 00:43:18 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-08 00:43:18 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-08 00:43:18 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-08 00:43:18 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-08 00:43:18 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-08 00:43:18 - Unregistering JMX-exposed beans on shutdown -2024-08-08 00:43:18 - Unregistering JMX-exposed beans -2024-08-08 00:43:18 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-08 00:43:18 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 00:43:18 - HHH000031: Closing -2024-08-08 00:43:18 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@6d176d85] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@299c86f0] -2024-08-08 00:43:18 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-08 00:43:18 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-08 00:43:18 - HikariPool-1 - Shutdown initiated... -2024-08-08 00:43:18 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:43:18 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:43:18 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:43:18 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:43:18 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:43:18 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:43:18 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:43:18 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:43:18 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:43:18 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:43:18 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:43:18 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-08 00:43:18 - HikariPool-1 - Shutdown completed. -2024-08-08 00:43:18 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-08 00:44:19 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-08 00:44:19 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-08 00:44:19 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:44:19 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:44:19 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:44:19 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:44:19 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:44:19 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:44:19 - Loaded expression factory via original TCCL -2024-08-08 00:44:19 - Starting HaengdongApplication using Java 17.0.12 with PID 87964 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-08 00:44:19 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-08 00:44:19 - No active profile set, falling back to 1 default profile: "default" -2024-08-08 00:44:19 - Loading source class server.haengdong.HaengdongApplication -2024-08-08 00:44:19 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-08 00:44:19 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:44:19 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:44:19 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:44:19 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:44:19 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:44:19 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-08 00:44:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-08 00:44:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-08 00:44:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-08 00:44:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-08 00:44:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-08 00:44:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-08 00:44:19 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 00:44:19 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 00:44:19 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 00:44:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-08 00:44:19 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 00:44:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-08 00:44:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-08 00:44:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-08 00:44:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-08 00:44:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-08 00:44:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-08 00:44:19 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-08 00:44:19 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-08 00:44:19 - Scanning for JPA repositories in packages server.haengdong. -2024-08-08 00:44:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 00:44:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 00:44:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 00:44:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 00:44:19 - Finished Spring Data repository scanning in 15 ms. Found 4 JPA repository interfaces. -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-08 00:44:19 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-08 00:44:19 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-08 00:44:19 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 00:44:19 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-08 00:44:19 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 00:44:19 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 00:44:19 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-08 00:44:19 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-08 00:44:19 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@1d6a8386] -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-08 00:44:19 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-08 00:44:19 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 00:44:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-08 00:44:19 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-08 00:44:19 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-08 00:44:19 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-08 00:44:19 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-08 00:44:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-08 00:44:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:44:19 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:44:19 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-08 00:44:19 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 00:44:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 00:44:19 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 00:44:19 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:44:19 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:44:19 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:44:19 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-08 00:44:19 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 00:44:19 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 00:44:19 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-08 00:44:19 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-08 00:44:19 - Tomcat initialized with port 8080 (http) -2024-08-08 00:44:19 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [INITIALIZING] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [INITIALIZED] -2024-08-08 00:44:19 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-08 00:44:19 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-08 00:44:19 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [INITIALIZING] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [INITIALIZED] -2024-08-08 00:44:19 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-08 00:44:19 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-08 00:44:19 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-08 00:44:19 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-08 00:44:19 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-08 00:44:19 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-08 00:44:19 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [STARTING_PREP] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [STARTING] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19cdc217] to [STARTED] -2024-08-08 00:44:19 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-08 00:44:19 - Starting service [Tomcat] -2024-08-08 00:44:19 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-08 00:44:19 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-08 00:44:19 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-08 00:44:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:44:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:44:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:44:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:44:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:44:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-08 00:44:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-08 00:44:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-08 00:44:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-08 00:44:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-08 00:44:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [INITIALIZING] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [INITIALIZED] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [STARTING_PREP] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [INITIALIZING] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [INITIALIZED] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [STARTING_PREP] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [STARTING] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.webresources.DirResourceSet@437281c5] to [STARTED] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [STARTING] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.webresources.StandardRoot@65bd19bf] to [STARTED] -2024-08-08 00:44:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:44:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:44:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:44:19 - Starting this Loader -2024-08-08 00:44:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:44:19 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:44:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:44:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:44:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:44:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:44:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:44:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:44:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:44:19 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:44:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:44:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:44:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:44:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:44:19 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:44:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:44:19 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:44:19 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-08 00:44:19 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [INITIALIZING] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [INITIALIZED] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [STARTING_PREP] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [STARTING] -2024-08-08 00:44:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@1cde374] to [STARTED] -2024-08-08 00:44:19 - Initializing Spring embedded WebApplicationContext -2024-08-08 00:44:19 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-08 00:44:19 - Root WebApplicationContext: initialization completed in 619 ms -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:44:19 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 00:44:19 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-08 00:44:19 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-08 00:44:19 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:44:19 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-08 00:44:19 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:44:19 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-08 00:44:19 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:44:19 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:44:19 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:44:19 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:44:19 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-08 00:44:19 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'h2Console' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 00:44:19 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'dataSource' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-08 00:44:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-08 00:44:19 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:44:19 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:44:19 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-08 00:44:19 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-08 00:44:19 - HikariPool-1 - configuration: -2024-08-08 00:44:19 - allowPoolSuspension.............false -2024-08-08 00:44:19 - autoCommit......................true -2024-08-08 00:44:19 - catalog.........................none -2024-08-08 00:44:19 - connectionInitSql...............none -2024-08-08 00:44:19 - connectionTestQuery.............none -2024-08-08 00:44:19 - connectionTimeout...............30000 -2024-08-08 00:44:19 - dataSource......................none -2024-08-08 00:44:19 - dataSourceClassName.............none -2024-08-08 00:44:19 - dataSourceJNDI..................none -2024-08-08 00:44:19 - dataSourceProperties............{password=<masked>} -2024-08-08 00:44:19 - driverClassName................."org.h2.Driver" -2024-08-08 00:44:19 - exceptionOverrideClassName......none -2024-08-08 00:44:19 - healthCheckProperties...........{} -2024-08-08 00:44:19 - healthCheckRegistry.............none -2024-08-08 00:44:19 - idleTimeout.....................600000 -2024-08-08 00:44:19 - initializationFailTimeout.......1 -2024-08-08 00:44:19 - isolateInternalQueries..........false -2024-08-08 00:44:19 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-08 00:44:19 - keepaliveTime...................0 -2024-08-08 00:44:19 - leakDetectionThreshold..........0 -2024-08-08 00:44:19 - maxLifetime.....................1800000 -2024-08-08 00:44:19 - maximumPoolSize.................10 -2024-08-08 00:44:19 - metricRegistry..................none -2024-08-08 00:44:19 - metricsTrackerFactory...........none -2024-08-08 00:44:19 - minimumIdle.....................10 -2024-08-08 00:44:19 - password........................<masked> -2024-08-08 00:44:19 - poolName........................"HikariPool-1" -2024-08-08 00:44:19 - readOnly........................false -2024-08-08 00:44:19 - registerMbeans..................false -2024-08-08 00:44:19 - scheduledExecutor...............none -2024-08-08 00:44:19 - schema..........................none -2024-08-08 00:44:19 - threadFactory...................internal -2024-08-08 00:44:19 - transactionIsolation............default -2024-08-08 00:44:19 - username........................"sa" -2024-08-08 00:44:19 - validationTimeout...............5000 -2024-08-08 00:44:19 - HikariPool-1 - Starting... -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:61400] -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 84 -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:19 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:44:19 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:20 - [javax.management.remote.rmi.RMIConnectionImpl@29a10f20: connectionId=rmi://127.0.0.1 1] closing. -2024-08-08 00:44:20 - [javax.management.remote.rmi.RMIConnectionImpl@29a10f20: connectionId=rmi://127.0.0.1 1] closed. -2024-08-08 00:44:20 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-08 00:44:20 - HikariPool-1 - Start completed. -2024-08-08 00:44:20 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-08 00:44:20 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-08 00:44:20 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:44:20 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-08 00:44:20 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:44:20 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:44:20 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:44:20 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-08 00:44:20 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-08 00:44:20 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-08 00:44:20 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 00:44:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-08 00:44:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-08 00:44:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-08 00:44:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 00:44:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 00:44:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 00:44:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 00:44:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 00:44:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 00:44:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 00:44:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 00:44:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 00:44:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 00:44:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-08 00:44:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-08 00:44:20 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 00:44:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-08 00:44:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-08 00:44:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-08 00:44:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 00:44:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 00:44:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 00:44:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 00:44:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 00:44:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 00:44:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 00:44:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 00:44:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 00:44:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 00:44:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-08 00:44:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-08 00:44:20 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:44:20 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:44:20 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:44:20 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@23469199] to [INITIALIZING] -2024-08-08 00:44:20 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@23469199] to [INITIALIZED] -2024-08-08 00:44:20 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@23469199] to [STARTING_PREP] -2024-08-08 00:44:20 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@23469199] to [STARTING] -2024-08-08 00:44:20 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@23469199] to [STARTED] -2024-08-08 00:44:20 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:44:20 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:44:20 - Filter 'requestContextFilter' configured for use -2024-08-08 00:44:20 - Filter 'webMvcObservationFilter' configured for use -2024-08-08 00:44:20 - Filter 'characterEncodingFilter' configured for use -2024-08-08 00:44:20 - Filter 'formContentFilter' configured for use -2024-08-08 00:44:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-08 00:44:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-08 00:44:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:44:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:44:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:44:20 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:44:20 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:44:20 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:44:20 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:44:20 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:44:20 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:44:20 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:44:20 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:44:20 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:44:20 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:44:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:44:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:44:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-08 00:44:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-08 00:44:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:44:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:44:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:44:20 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:44:20 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:44:20 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:44:20 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:44:20 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:44:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:44:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:44:20 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-08 00:44:20 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-08 00:44:20 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [STARTING_PREP] -2024-08-08 00:44:20 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [STARTING] -2024-08-08 00:44:20 - Registered host [localhost] -2024-08-08 00:44:20 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-08 00:44:20 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-08 00:44:20 - Register Context [] for service [StandardService[Tomcat]] -2024-08-08 00:44:20 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-08 00:44:20 - Setting state for [org.apache.catalina.mapper.MapperListener@7ec3a8bd] to [STARTED] -2024-08-08 00:44:20 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-08 00:44:20 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 00:44:20 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-08 00:44:20 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 00:44:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-08 00:44:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:44:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:44:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-08 00:44:20 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-08 00:44:20 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:44:20 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:44:20 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-08 00:44:20 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-08 00:44:20 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-08 00:44:20 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-08 00:44:20 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-08 00:44:20 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-08 00:44:20 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-08 00:44:20 - HHH000206: 'hibernate.properties' not found -2024-08-08 00:44:20 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-08 00:44:20 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-08 00:44:20 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-08 00:44:20 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-08 00:44:20 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 00:44:20 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 00:44:20 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-08 00:44:20 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-08 00:44:20 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-08 00:44:20 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 00:44:20 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-08 00:44:20 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-08 00:44:20 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 00:44:20 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-08 00:44:20 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-08 00:44:20 - HHH000026: Second-level cache disabled -2024-08-08 00:44:20 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-08 00:44:20 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-08 00:44:20 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-08 00:44:20 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-08 00:44:20 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-08 00:44:20 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-08 00:44:20 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-08 00:44:20 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-08 00:44:20 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-08 00:44:20 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-08 00:44:20 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-08 00:44:20 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-08 00:44:20 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-08 00:44:20 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-08 00:44:20 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-08 00:44:20 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-08 00:44:20 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-08 00:44:20 - Adding type registration image -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-08 00:44:20 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-08 00:44:20 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-08 00:44:20 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-08 00:44:20 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-08 00:44:20 - Adding type registration short -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-08 00:44:20 - Adding type registration short -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-08 00:44:20 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-08 00:44:20 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-08 00:44:20 - Adding type registration int -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-08 00:44:20 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-08 00:44:20 - Adding type registration long -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-08 00:44:20 - Adding type registration long -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-08 00:44:20 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-08 00:44:20 - Adding type registration float -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-08 00:44:20 - Adding type registration float -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-08 00:44:20 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-08 00:44:20 - Adding type registration double -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-08 00:44:20 - Adding type registration double -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-08 00:44:20 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-08 00:44:20 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-08 00:44:20 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-08 00:44:20 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 00:44:20 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 00:44:20 - Adding type registration character -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:44:20 - Adding type registration char -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:44:20 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:44:20 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-08 00:44:20 - Adding type registration string -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 00:44:20 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 00:44:20 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 00:44:20 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 00:44:20 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 00:44:20 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 00:44:20 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-08 00:44:20 - Adding type registration text -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-08 00:44:20 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-08 00:44:20 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-08 00:44:20 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-08 00:44:20 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 00:44:20 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 00:44:20 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 00:44:20 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 00:44:20 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-08 00:44:20 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 00:44:20 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 00:44:20 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-08 00:44:20 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-08 00:44:20 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-08 00:44:20 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 00:44:20 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 00:44:20 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-08 00:44:20 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-08 00:44:20 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-08 00:44:20 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-08 00:44:20 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 00:44:20 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 00:44:20 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 00:44:20 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 00:44:20 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 00:44:20 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 00:44:20 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 00:44:20 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-08 00:44:20 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-08 00:44:20 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-08 00:44:20 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-08 00:44:20 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-08 00:44:20 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-08 00:44:20 - Adding type registration date -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-08 00:44:20 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-08 00:44:20 - Adding type registration time -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-08 00:44:20 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-08 00:44:20 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 00:44:20 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 00:44:20 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 00:44:20 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 00:44:20 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 00:44:20 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 00:44:20 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-08 00:44:20 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-08 00:44:20 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 00:44:20 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 00:44:20 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 00:44:20 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 00:44:20 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 00:44:20 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-08 00:44:20 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-08 00:44:20 - Adding type registration class -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-08 00:44:20 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-08 00:44:20 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-08 00:44:20 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-08 00:44:20 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-08 00:44:20 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-08 00:44:20 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-08 00:44:20 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-08 00:44:20 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-08 00:44:20 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-08 00:44:20 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-08 00:44:20 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-08 00:44:20 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-08 00:44:20 - Adding type registration url -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-08 00:44:20 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-08 00:44:20 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-08 00:44:20 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-08 00:44:20 - Adding type registration object -> org.hibernate.type.JavaObjectType@570ed9c -2024-08-08 00:44:20 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@570ed9c -2024-08-08 00:44:20 - Adding type registration null -> org.hibernate.type.NullType@1b8ee69d -2024-08-08 00:44:20 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@2b400bd0 -2024-08-08 00:44:20 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@fceab5d -2024-08-08 00:44:20 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@79445efb -2024-08-08 00:44:20 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@1592e540 -2024-08-08 00:44:20 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@3e2772a9 -2024-08-08 00:44:20 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@4449b273 -2024-08-08 00:44:20 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@1fa18f87 -2024-08-08 00:44:20 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@1d9bd1d6 -2024-08-08 00:44:20 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@37364634] into BootstrapContext; was [null] -2024-08-08 00:44:20 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@37364634) [was null] -2024-08-08 00:44:20 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@4f4d05b3] into BootstrapContext; was [null] -2024-08-08 00:44:20 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@2bd4780c] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@2c154508] -2024-08-08 00:44:20 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-08 00:44:20 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-08 00:44:20 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-08 00:44:20 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-08 00:44:20 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-08 00:44:20 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-08 00:44:20 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-08 00:44:20 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@37364634] -2024-08-08 00:44:20 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@37364634] -2024-08-08 00:44:20 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 00:44:20 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 00:44:20 - JDBC version : 4.2 -2024-08-08 00:44:20 - HikariPool-1 - After adding stats (total=5, active=1, idle=4, waiting=0) -2024-08-08 00:44:20 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-08 00:44:20 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-08 00:44:20 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-08 00:44:20 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-08 00:44:20 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-08 00:44:20 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-08 00:44:20 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 00:44:20 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 00:44:20 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-08 00:44:20 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-08 00:44:20 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 00:44:20 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 00:44:20 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@6738e8b2] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@609ad016] -2024-08-08 00:44:20 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-08 00:44:20 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-08 00:44:20 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-08 00:44:20 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-08 00:44:20 - Import with entity name Action -2024-08-08 00:44:20 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-08 00:44:20 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:44:20 - Binding column: AnnotatedColumn() -2024-08-08 00:44:20 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:44:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:44:20 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:44:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-08 00:44:20 - building BasicValue for id -2024-08-08 00:44:20 - Skipping column re-registration: action.id -2024-08-08 00:44:20 - Building property id -2024-08-08 00:44:20 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:44:20 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:44:20 - Binding column: AnnotatedColumn() -2024-08-08 00:44:20 - Building property event -2024-08-08 00:44:20 - Binding column: AnnotatedColumn() -2024-08-08 00:44:20 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 00:44:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-08 00:44:20 - building BasicValue for sequence -2024-08-08 00:44:20 - Skipping column re-registration: action.sequence -2024-08-08 00:44:20 - Building property sequence -2024-08-08 00:44:20 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:44:20 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-08 00:44:20 - Import with entity name BillAction -2024-08-08 00:44:20 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-08 00:44:20 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:44:20 - Binding column: AnnotatedColumn() -2024-08-08 00:44:20 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:44:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:44:20 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:44:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-08 00:44:20 - building BasicValue for id -2024-08-08 00:44:20 - Skipping column re-registration: bill_action.id -2024-08-08 00:44:20 - Building property id -2024-08-08 00:44:20 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:44:20 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:44:20 - Binding column: AnnotatedColumn() -2024-08-08 00:44:20 - Building property action -2024-08-08 00:44:20 - Binding column: AnnotatedColumn() -2024-08-08 00:44:20 - MetadataSourceProcessor property price with lazy=false -2024-08-08 00:44:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-08 00:44:20 - building BasicValue for price -2024-08-08 00:44:20 - Skipping column re-registration: bill_action.price -2024-08-08 00:44:20 - Building property price -2024-08-08 00:44:20 - Binding column: AnnotatedColumn() -2024-08-08 00:44:20 - MetadataSourceProcessor property title with lazy=false -2024-08-08 00:44:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-08 00:44:20 - building BasicValue for title -2024-08-08 00:44:20 - Skipping column re-registration: bill_action.title -2024-08-08 00:44:20 - Building property title -2024-08-08 00:44:20 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:44:20 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-08 00:44:20 - Import with entity name MemberAction -2024-08-08 00:44:20 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-08 00:44:20 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:44:20 - Binding column: AnnotatedColumn() -2024-08-08 00:44:20 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:44:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:44:20 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:44:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-08 00:44:20 - building BasicValue for id -2024-08-08 00:44:20 - Skipping column re-registration: member_action.id -2024-08-08 00:44:20 - Building property id -2024-08-08 00:44:20 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:44:20 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:44:20 - Binding column: AnnotatedColumn() -2024-08-08 00:44:20 - Building property action -2024-08-08 00:44:20 - Binding column: AnnotatedColumn() -2024-08-08 00:44:20 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-08 00:44:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-08 00:44:20 - building BasicValue for memberGroupId -2024-08-08 00:44:20 - Skipping column re-registration: member_action.member_group_id -2024-08-08 00:44:20 - Building property memberGroupId -2024-08-08 00:44:20 - Binding column: AnnotatedColumn() -2024-08-08 00:44:20 - MetadataSourceProcessor property memberName with lazy=false -2024-08-08 00:44:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-08 00:44:20 - building BasicValue for memberName -2024-08-08 00:44:20 - Skipping column re-registration: member_action.member_name -2024-08-08 00:44:20 - Building property memberName -2024-08-08 00:44:20 - Binding column: AnnotatedColumn() -2024-08-08 00:44:20 - MetadataSourceProcessor property status with lazy=false -2024-08-08 00:44:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-08 00:44:20 - building BasicValue for status -2024-08-08 00:44:20 - Skipping column re-registration: member_action.status -2024-08-08 00:44:20 - Building property status -2024-08-08 00:44:20 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:44:20 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-08 00:44:20 - Import with entity name Event -2024-08-08 00:44:20 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-08 00:44:20 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:44:20 - Binding column: AnnotatedColumn() -2024-08-08 00:44:20 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:44:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:44:20 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:44:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-08 00:44:20 - building BasicValue for id -2024-08-08 00:44:20 - Skipping column re-registration: event.id -2024-08-08 00:44:20 - Building property id -2024-08-08 00:44:20 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:44:20 - Binding column: AnnotatedColumn() -2024-08-08 00:44:20 - MetadataSourceProcessor property name with lazy=false -2024-08-08 00:44:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-08 00:44:20 - building BasicValue for name -2024-08-08 00:44:20 - Skipping column re-registration: event.name -2024-08-08 00:44:20 - Building property name -2024-08-08 00:44:20 - Binding column: AnnotatedColumn() -2024-08-08 00:44:20 - MetadataSourceProcessor property password with lazy=false -2024-08-08 00:44:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-08 00:44:20 - building BasicValue for password -2024-08-08 00:44:20 - Skipping column re-registration: event.password -2024-08-08 00:44:20 - Building property password -2024-08-08 00:44:20 - Binding column: AnnotatedColumn() -2024-08-08 00:44:20 - MetadataSourceProcessor property token with lazy=false -2024-08-08 00:44:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-08 00:44:20 - building BasicValue for token -2024-08-08 00:44:20 - Skipping column re-registration: event.token -2024-08-08 00:44:20 - Building property token -2024-08-08 00:44:20 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 00:44:20 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-08 00:44:20 - Import with entity name EventStep -2024-08-08 00:44:20 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-08 00:44:20 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:44:20 - Binding column: AnnotatedColumn() -2024-08-08 00:44:20 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:44:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:44:20 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:44:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-08 00:44:20 - building BasicValue for id -2024-08-08 00:44:20 - Skipping column re-registration: event_step.id -2024-08-08 00:44:20 - Building property id -2024-08-08 00:44:20 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:44:20 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:44:20 - Binding column: AnnotatedColumn() -2024-08-08 00:44:20 - Building property event -2024-08-08 00:44:20 - Binding column: AnnotatedColumn() -2024-08-08 00:44:20 - MetadataSourceProcessor property name with lazy=false -2024-08-08 00:44:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-08 00:44:20 - building BasicValue for name -2024-08-08 00:44:20 - Skipping column re-registration: event_step.name -2024-08-08 00:44:20 - Building property name -2024-08-08 00:44:20 - Binding column: AnnotatedColumn() -2024-08-08 00:44:20 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 00:44:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-08 00:44:20 - building BasicValue for sequence -2024-08-08 00:44:20 - Skipping column re-registration: event_step.sequence -2024-08-08 00:44:20 - Building property sequence -2024-08-08 00:44:20 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 00:44:20 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:44:20 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 00:44:20 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:44:20 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-08 00:44:20 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-08 00:44:20 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:44:20 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-08 00:44:20 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-08 00:44:20 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-08 00:44:20 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:44:20 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 00:44:20 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-08 00:44:20 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-08 00:44:20 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:44:20 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 00:44:20 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 00:44:20 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-08 00:44:20 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-08 00:44:20 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-08 00:44:20 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-08 00:44:20 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-08 00:44:20 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-08 00:44:20 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-08 00:44:20 - Building session factory -2024-08-08 00:44:20 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:44:20 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@2484c868, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@19d13d04, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1779211151007259798, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=87964, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1779211151007259798, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@30d5fc1b, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-08 00:44:20 - Session factory constructed with filter configurations : {} -2024-08-08 00:44:20 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:44:20 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:44:20 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:44:20 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:44:20 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:44:20 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:44:20 - Loaded expression factory via original TCCL -2024-08-08 00:44:20 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:44:20 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:44:20 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:44:20 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:44:20 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:44:20 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:44:20 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:44:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:44:20 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-08 00:44:20 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-08 00:44:20 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:44:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:44:20 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:44:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:44:20 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:44:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:44:20 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:44:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:44:20 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@7bc6b117] under count; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@5c43cb12] under every; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@5db66c3] under any; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@24ee6faa] under sinh; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6d4f266] under cosh; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6b756a62] under tanh; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@394b9e22] under pi; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6e0f259e] under log; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-08 00:44:20 - Registering alternate key : length -> character_length -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@31f5ffb9] under position; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@7fb9a83c] under overlay; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@3aa8c337] under trim; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@34ff08c6] under cast; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@e2344da] under collate; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@21d48c40] under extract; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@2fc0ad21] under ifnull; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@7901a5ab] under pad; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@3e24bab6] under str; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@288b8663] under format; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@3055f310] under timestampadd; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@575fe6da] under timestampdiff; prior registration was null -2024-08-08 00:44:20 - Registering alternate key : dateadd -> timestampadd -2024-08-08 00:44:20 - Registering alternate key : datediff -> timestampdiff -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@ed1d2cf] under current_date; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@b814e23] under current_time; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5f81507a] under current_timestamp; prior registration was null -2024-08-08 00:44:20 - Registering alternate key : current date -> current_date -2024-08-08 00:44:20 - Registering alternate key : current time -> current_time -2024-08-08 00:44:20 - Registering alternate key : current timestamp -> current_timestamp -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7d7c05fa] under local_date; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7dbbf730] under local_time; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7c4a5ef2] under local_datetime; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@299dd381] under offset_datetime; prior registration was null -2024-08-08 00:44:20 - Registering alternate key : local date -> local_date -2024-08-08 00:44:20 - Registering alternate key : local time -> local_time -2024-08-08 00:44:20 - Registering alternate key : local datetime -> local_datetime -2024-08-08 00:44:20 - Registering alternate key : offset datetime -> offset_datetime -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@34d3409d] under instant; prior registration was null -2024-08-08 00:44:20 - Registering alternate key : current_instant -> instant -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@515fff35] under sql; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@5eb9bf7d] under count; prior registration was org.hibernate.dialect.function.CountFunction@7bc6b117 -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@123d0816] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@394b9e22 -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4601a148] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-08 00:44:20 - Registering alternate key : day -> day_of_month -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@7dbbf730 -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@7c4a5ef2 -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@655f92a1] under trunc; prior registration was null -2024-08-08 00:44:20 - Registering alternate key : truncate -> trunc -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1d2d793d] under date_trunc; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-08 00:44:20 - Registering alternate key : chr -> char -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@57fec63f] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@31f5ffb9 -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7a2fd94c] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-08 00:44:20 - Registering alternate key : every -> bool_and -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-08 00:44:20 - Registering alternate key : any -> bool_or -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@637c8632] under format; prior registration was org.hibernate.dialect.function.FormatFunction@288b8663 -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@55d87b73] under listagg; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@4abfa2ff] under mode; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@38c1b1a7] under percentile_cont; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@73230721] under percentile_disc; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@792b9dd3] under rank; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@cbc3bf3] under dense_rank; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@31f9f9b3] under percent_rank; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@7730da00] under cume_dist; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@2b4ba2d9] under array; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@69f24965] under array_list; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@57ac236a] under array_agg; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@4113d9ab] under array_position; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@4423692a] under array_positions; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@180e33b0] under array_positions_list; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@270be080] under array_length; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@5b86f4cb] under array_concat; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@5f14590c] under array_prepend; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@46051269] under array_append; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@222eda8a] under array_contains; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@3331800f] under array_contains_nullable; prior registration was null -2024-08-08 00:44:20 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@4880a9d] under array_overlaps; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@48f2d51d] under array_overlaps_nullable; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@a84b6de] under array_get; prior registration was null -2024-08-08 00:44:20 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@75507e68] under array_set; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@7304ca87] under array_remove; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@3a012678] under array_remove_index; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@396c1228] under array_slice; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@32f45e15] under array_replace; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4e7151b3] under array_trim; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@5ca3acad] under array_fill; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@b75f3f4] under array_fill_list; prior registration was null -2024-08-08 00:44:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@72c175f1] under array_to_string; prior registration was null -2024-08-08 00:44:20 - abs(NUMERIC arg) -2024-08-08 00:44:20 - Double acos(NUMERIC arg) -2024-08-08 00:44:20 - Boolean any(BOOLEAN predicate) -2024-08-08 00:44:20 - array( ... ) -2024-08-08 00:44:20 - array_agg(arg) -2024-08-08 00:44:20 - array_append( ... ) -2024-08-08 00:44:20 - array_concat( ... ) -2024-08-08 00:44:20 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 00:44:20 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 00:44:20 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-08 00:44:20 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-08 00:44:20 - array_get(ARRAY array, INTEGER index) -2024-08-08 00:44:20 - Integer array_length(ARRAY array) -2024-08-08 00:44:20 - array_list( ... ) -2024-08-08 00:44:20 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-08 00:44:20 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-08 00:44:20 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-08 00:44:20 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-08 00:44:20 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-08 00:44:20 - array_prepend( ... ) -2024-08-08 00:44:20 - array_remove( ... ) -2024-08-08 00:44:20 - array_remove_index( ... ) -2024-08-08 00:44:20 - array_replace( ... ) -2024-08-08 00:44:20 - array_set( ... ) -2024-08-08 00:44:20 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-08 00:44:20 - String array_to_string( ... ) -2024-08-08 00:44:20 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-08 00:44:20 - Integer ascii(STRING arg) -2024-08-08 00:44:20 - Double asin(NUMERIC arg) -2024-08-08 00:44:20 - Double atan(NUMERIC arg) -2024-08-08 00:44:20 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-08 00:44:20 - avg(NUMERIC arg) -2024-08-08 00:44:20 - bit_and(arg) -2024-08-08 00:44:20 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-08 00:44:20 - bit_or(arg) -2024-08-08 00:44:20 - bitand(arg0, arg1) -2024-08-08 00:44:20 - bitnot(arg) -2024-08-08 00:44:20 - bitor(arg0, arg1) -2024-08-08 00:44:20 - bitxor(arg0, arg1) -2024-08-08 00:44:20 - Boolean bool_and(BOOLEAN predicate) -2024-08-08 00:44:20 - Boolean bool_or(BOOLEAN predicate) -2024-08-08 00:44:20 - cast(arg as Type) -2024-08-08 00:44:20 - ceiling(NUMERIC arg) -2024-08-08 00:44:20 - Character char(INTEGER arg) -2024-08-08 00:44:20 - Integer character_length(STRING_OR_CLOB arg) -2024-08-08 00:44:20 - Character chr(INTEGER arg) -2024-08-08 00:44:20 - coalesce(arg0[, arg1[, ...]]) -2024-08-08 00:44:20 - String collate(STRING string as COLLATION collation) -2024-08-08 00:44:20 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-08 00:44:20 - Double cos(NUMERIC arg) -2024-08-08 00:44:20 - Double cosh(NUMERIC arg) -2024-08-08 00:44:20 - Double cot(NUMERIC arg) -2024-08-08 00:44:20 - Long count([distinct ]{arg|*}) -2024-08-08 00:44:20 - Double cume_dist([arg0[, ...]]) -2024-08-08 00:44:20 - Date curdate() -2024-08-08 00:44:20 - Date current date -2024-08-08 00:44:20 - Time current time -2024-08-08 00:44:20 - Timestamp current timestamp -2024-08-08 00:44:20 - Date current_date -2024-08-08 00:44:20 - Instant current_instant -2024-08-08 00:44:20 - Time current_time -2024-08-08 00:44:20 - Timestamp current_timestamp -2024-08-08 00:44:20 - Time curtime() -2024-08-08 00:44:20 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-08 00:44:20 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 00:44:20 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 00:44:20 - Integer day(DATE arg) -2024-08-08 00:44:20 - Integer day_of_month(DATE arg) -2024-08-08 00:44:20 - Integer day_of_week(DATE arg) -2024-08-08 00:44:20 - Integer day_of_year(DATE arg) -2024-08-08 00:44:20 - String dayname(DATE arg) -2024-08-08 00:44:20 - Double degrees(NUMERIC arg) -2024-08-08 00:44:20 - Long dense_rank([arg0[, ...]]) -2024-08-08 00:44:20 - Boolean every(BOOLEAN predicate) -2024-08-08 00:44:20 - Double exp(NUMERIC arg) -2024-08-08 00:44:20 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-08 00:44:20 - first_valueANY value -2024-08-08 00:44:20 - floor(NUMERIC arg) -2024-08-08 00:44:20 - String format(TEMPORAL datetime as STRING pattern) -2024-08-08 00:44:20 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 00:44:20 - Integer hour(TIME arg) -2024-08-08 00:44:20 - ifnull(arg0, arg1) -2024-08-08 00:44:20 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-08 00:44:20 - Instant instant -2024-08-08 00:44:20 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-08 00:44:20 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-08 00:44:20 - last_valueANY value -2024-08-08 00:44:20 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-08 00:44:20 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 00:44:20 - String left(STRING string, INTEGER length) -2024-08-08 00:44:20 - Integer length(STRING_OR_CLOB arg) -2024-08-08 00:44:20 - String listagg(STRING arg0, STRING arg1) -2024-08-08 00:44:20 - Double ln(NUMERIC arg) -2024-08-08 00:44:20 - LocalDate local date -2024-08-08 00:44:20 - LocalDateTime local datetime -2024-08-08 00:44:20 - LocalTime local time -2024-08-08 00:44:20 - LocalDate local_date -2024-08-08 00:44:20 - LocalDateTime local_datetime -2024-08-08 00:44:20 - LocalTime local_time -2024-08-08 00:44:20 - Time localtime -2024-08-08 00:44:20 - Timestamp localtimestamp -2024-08-08 00:44:20 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-08 00:44:20 - Double log(NUMERIC base, NUMERIC arg) -2024-08-08 00:44:20 - Double log10(NUMERIC arg) -2024-08-08 00:44:20 - String lower(STRING string) -2024-08-08 00:44:20 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 00:44:20 - String ltrim(STRING string) -2024-08-08 00:44:20 - max(COMPARABLE arg) -2024-08-08 00:44:20 - Double median(NUMERIC arg) -2024-08-08 00:44:20 - Integer microsecond(TIME arg) -2024-08-08 00:44:20 - min(COMPARABLE arg) -2024-08-08 00:44:20 - Integer minute(TIME arg) -2024-08-08 00:44:20 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-08 00:44:20 - mode() -2024-08-08 00:44:20 - Integer month(DATE arg) -2024-08-08 00:44:20 - String monthname(DATE arg) -2024-08-08 00:44:20 - Timestamp now() -2024-08-08 00:44:20 - nth_valueANY value, INTEGER nth -2024-08-08 00:44:20 - nullif(arg0, arg1) -2024-08-08 00:44:20 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-08 00:44:20 - OffsetDateTime offset datetime -2024-08-08 00:44:20 - OffsetDateTime offset_datetime -2024-08-08 00:44:20 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-08 00:44:20 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-08 00:44:20 - Double percent_rank([arg0[, ...]]) -2024-08-08 00:44:20 - percentile_cont(NUMERIC arg) -2024-08-08 00:44:20 - percentile_disc(NUMERIC arg) -2024-08-08 00:44:20 - Double pi -2024-08-08 00:44:20 - Integer position(STRING pattern in STRING string) -2024-08-08 00:44:20 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-08 00:44:20 - Integer quarter(DATE arg) -2024-08-08 00:44:20 - Double radians(NUMERIC arg) -2024-08-08 00:44:20 - Double rand([INTEGER seed]) -2024-08-08 00:44:20 - Long rank([arg0[, ...]]) -2024-08-08 00:44:20 - String repeat(STRING string, INTEGER times) -2024-08-08 00:44:20 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-08 00:44:20 - String right(STRING string, INTEGER length) -2024-08-08 00:44:20 - round(NUMERIC number[, INTEGER places]) -2024-08-08 00:44:20 - Long row_number() -2024-08-08 00:44:20 - Long rownum() -2024-08-08 00:44:20 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 00:44:20 - String rtrim(STRING string) -2024-08-08 00:44:20 - Integer second(TIME arg) -2024-08-08 00:44:20 - Integer sign(NUMERIC arg) -2024-08-08 00:44:20 - Double sin(NUMERIC arg) -2024-08-08 00:44:20 - Double sinh(NUMERIC arg) -2024-08-08 00:44:20 - String soundex(arg) -2024-08-08 00:44:20 - String space(INTEGER arg) -2024-08-08 00:44:20 - Object sql -2024-08-08 00:44:20 - Double sqrt(NUMERIC arg) -2024-08-08 00:44:20 - Double stddev_pop(NUMERIC arg) -2024-08-08 00:44:20 - Double stddev_samp(NUMERIC arg) -2024-08-08 00:44:20 - String str(arg) -2024-08-08 00:44:20 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-08 00:44:20 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-08 00:44:20 - sum(arg) -2024-08-08 00:44:20 - Timestamp sysdate -2024-08-08 00:44:20 - Double tan(NUMERIC arg) -2024-08-08 00:44:20 - Double tanh(NUMERIC arg) -2024-08-08 00:44:20 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 00:44:20 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 00:44:20 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-08 00:44:20 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-08 00:44:20 - trunc( ... ) -2024-08-08 00:44:20 - truncate( ... ) -2024-08-08 00:44:20 - String upper(STRING string) -2024-08-08 00:44:20 - Double var_pop(NUMERIC arg) -2024-08-08 00:44:20 - Double var_samp(NUMERIC arg) -2024-08-08 00:44:20 - Integer week(DATE arg) -2024-08-08 00:44:20 - Integer year(DATE arg) -2024-08-08 00:44:20 - Starting QueryInterpretationCache(2048) -2024-08-08 00:44:20 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:44:20 - Configured EntityCopyObserver strategy: disallow -2024-08-08 00:44:20 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:44:20 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:44:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 82 -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 82 -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 82 -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 84 -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 82 -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 82 -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:20 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 82 -2024-08-08 00:44:20 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:20 - [javax.management.remote.rmi.RMIConnectionImpl@48f4b729: connectionId=rmi://127.0.0.1 2] closing. -2024-08-08 00:44:20 - [javax.management.remote.rmi.RMIConnectionImpl@48f4b729: connectionId=rmi://127.0.0.1 2] closed. -2024-08-08 00:44:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-08 00:44:20 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:44:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:44:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-08 00:44:20 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:44:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:44:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-08 00:44:20 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:44:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:44:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-08 00:44:20 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:44:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:44:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-08 00:44:20 - Starting post-init callbacks -2024-08-08 00:44:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-08 00:44:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-08 00:44:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-08 00:44:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-08 00:44:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-08 00:44:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-08 00:44:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-08 00:44:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-08 00:44:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-08 00:44:20 - Created new SQL alias : ba1_0 -2024-08-08 00:44:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-08 00:44:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7be9e9fc] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-08 00:44:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-08 00:44:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-08 00:44:20 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-08 00:44:20 - Version select: select id from bill_action where id=? -2024-08-08 00:44:20 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-08 00:44:20 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-08 00:44:20 - Delete (0): delete from bill_action where id=? -2024-08-08 00:44:20 - Created new SQL alias : ma1_0 -2024-08-08 00:44:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-08 00:44:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@182469d0] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-08 00:44:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-08 00:44:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-08 00:44:20 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-08 00:44:20 - Version select: select id from member_action where id=? -2024-08-08 00:44:20 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-08 00:44:20 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-08 00:44:20 - Delete (0): delete from member_action where id=? -2024-08-08 00:44:20 - Created new SQL alias : e1_0 -2024-08-08 00:44:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-08 00:44:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-08 00:44:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-08 00:44:20 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-08 00:44:20 - Version select: select id from event where id=? -2024-08-08 00:44:20 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-08 00:44:20 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-08 00:44:20 - Delete (0): delete from event where id=? -2024-08-08 00:44:20 - Created new SQL alias : a1_0 -2024-08-08 00:44:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-08 00:44:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@788fa91f] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-08 00:44:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-08 00:44:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-08 00:44:20 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-08 00:44:20 - Version select: select id from action where id=? -2024-08-08 00:44:20 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-08 00:44:20 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-08 00:44:20 - Delete (0): delete from action where id=? -2024-08-08 00:44:20 - Created new SQL alias : es1_0 -2024-08-08 00:44:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-08 00:44:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5e8bc83e] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-08 00:44:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-08 00:44:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-08 00:44:20 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-08 00:44:20 - Version select: select id from event_step where id=? -2024-08-08 00:44:20 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-08 00:44:20 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-08 00:44:20 - Delete (0): delete from event_step where id=? -2024-08-08 00:44:20 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-08 00:44:20 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@6738e8b2] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@6af02de0] -2024-08-08 00:44:20 - Checking 0 named HQL queries -2024-08-08 00:44:20 - Checking 0 named SQL queries -2024-08-08 00:44:20 - - drop table if exists action cascade -2024-08-08 00:44:20 - - drop table if exists bill_action cascade -2024-08-08 00:44:20 - - drop table if exists event cascade -2024-08-08 00:44:20 - - drop table if exists event_step cascade -2024-08-08 00:44:20 - - drop table if exists member_action cascade -2024-08-08 00:44:20 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-08 00:44:20 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-08 00:44:20 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-08 00:44:20 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-08 00:44:20 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-08 00:44:20 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-08 00:44:20 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-08 00:44:20 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-08 00:44:20 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-08 00:44:20 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@2e845f1c -2024-08-08 00:44:20 - Registering SessionFactory: e7724278-0edb-44fd-a293-a10c2b97c9c1 (<unnamed>) -2024-08-08 00:44:20 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-08 00:44:20 - Instantiated SessionFactory -2024-08-08 00:44:20 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'actionService' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-08 00:44:20 - Initializing JpaMetamodelMappingContext… -2024-08-08 00:44:20 - Finished initializing JpaMetamodelMappingContext -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - Statistics initialized [enabled=false] -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-08 00:44:20 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-08 00:44:20 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-08 00:44:20 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - Looking up named query BillAction.findByAction_Event -2024-08-08 00:44:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:44:20 - Did not find named query BillAction.findByAction_Event -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - Looking up named query BillAction.findByAction_Id -2024-08-08 00:44:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:44:20 - Did not find named query BillAction.findByAction_Id -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-08 00:44:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:44:20 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-08 00:44:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:44:20 - Did not find named query MemberAction.findAllByEvent.count -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-08 00:44:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:44:20 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(767723380663541)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(767723380663541)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(767723380663541)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(767723380663541)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(767723380663541).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:44:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:44:20 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-08 00:44:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:44:20 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:44:20 - Looking up named query MemberAction.findByAction -2024-08-08 00:44:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:44:20 - Did not find named query MemberAction.findByAction -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 00:44:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:44:20 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 00:44:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:44:20 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:44:20 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-08 00:44:20 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 00:44:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:44:20 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 00:44:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:44:20 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-08 00:44:20 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 00:44:20 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-08 00:44:20 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 00:44:20 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'eventRepository' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - Looking up named query Event.findByToken -2024-08-08 00:44:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:44:20 - Did not find named query Event.findByToken -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-08 00:44:20 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-08 00:44:20 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:44:20 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'billActionService' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'actionRepository' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:44:20 - Did not find named query Action.findLastByEvent.count -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-08 00:44:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:44:20 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:44:20 - Looking up named query Action.findByIdAndEvent -2024-08-08 00:44:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:44:20 - Did not find named query Action.findByIdAndEvent -2024-08-08 00:44:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:44:20 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-08 00:44:20 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-08 00:44:20 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-08 00:44:20 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'eventService' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-08 00:44:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-08 00:44:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-08 00:44:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-08 00:44:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-08 00:44:20 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'memberActionService' -2024-08-08 00:44:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-08 00:44:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:44:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-08 00:44:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 00:44:20 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 00:44:20 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-08 00:44:20 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'actionController' -2024-08-08 00:44:20 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'billActionController' -2024-08-08 00:44:20 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'eventController' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'authService' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 00:44:20 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-08 00:44:20 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-08 00:44:20 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'memberActionController' -2024-08-08 00:44:20 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:44:20 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-08 00:44:20 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-08 00:44:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-08 00:44:20 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:44:20 - Loaded expression factory via original TCCL -2024-08-08 00:44:20 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-08 00:44:20 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-08 00:44:20 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:44:20 - Trying to load META-INF/validation.xml via user class loader -2024-08-08 00:44:20 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:44:20 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:44:20 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:44:20 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:44:20 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:44:20 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:44:20 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:44:20 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:44:20 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:44:20 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:44:20 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'error' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:44:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:44:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-08 00:44:20 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-08 00:44:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:44:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:44:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-08 00:44:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:44:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:44:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-08 00:44:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-08 00:44:20 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-08 00:44:20 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-08 00:44:20 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-08 00:44:20 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-08 00:44:20 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:44:20 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:44:20 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-08 00:44:20 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:44:20 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:44:20 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'localeResolver' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'themeResolver' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-08 00:44:20 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-08 00:44:20 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:44:20 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:44:20 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:44:21 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-08 00:44:21 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-08 00:44:21 - - s.h.p.EventController: - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) -2024-08-08 00:44:21 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-08 00:44:21 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-08 00:44:21 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 82 -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 82 -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 84 -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - [javax.management.remote.rmi.RMIConnectionImpl@641ed2c0: connectionId=rmi://127.0.0.1 3] closing. -2024-08-08 00:44:21 - [javax.management.remote.rmi.RMIConnectionImpl@641ed2c0: connectionId=rmi://127.0.0.1 3] closed. -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-08 00:44:21 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:44:21 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-08 00:44:21 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:44:21 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:44:21 - 'beanNameHandlerMapping' {} -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-08 00:44:21 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:44:21 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'messageConverters' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-08 00:44:21 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-08 00:44:21 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:44:21 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:44:21 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'pageModule' -2024-08-08 00:44:21 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:44:21 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 00:44:21 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-08 00:44:21 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-08 00:44:21 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:44:21 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:44:21 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:44:21 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-08 00:44:21 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:44:21 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-08 00:44:21 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'sortResolver' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-08 00:44:21 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-08 00:44:21 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-08 00:44:21 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-08 00:44:21 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-08 00:44:21 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-08 00:44:21 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:44:21 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-08 00:44:21 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 00:44:21 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-08 00:44:21 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-08 00:44:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'transactionManager' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-08 00:44:21 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-08 00:44:21 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:44:21 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-08 00:44:21 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:44:21 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-08 00:44:21 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-08 00:44:21 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-08 00:44:21 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-08 00:44:21 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-08 00:44:21 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-08 00:44:21 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-08 00:44:21 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-08 00:44:21 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-08 00:44:21 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-08 00:44:21 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-08 00:44:21 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-08 00:44:21 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@1e886a5b' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-08 00:44:21 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:44:21 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:44:21 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-08 00:44:21 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-08 00:44:21 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-08 00:44:21 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-08 00:44:21 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-08 00:44:21 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-08 00:44:21 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-08 00:44:21 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-08 00:44:21 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-08 00:44:21 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 00:44:21 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-08 00:44:21 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:44:21 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:44:21 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 00:44:21 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-08 00:44:21 - Using SLF4J as the default logging framework -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-08 00:44:21 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-08 00:44:21 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-08 00:44:21 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-08 00:44:21 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-08 00:44:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-08 00:44:21 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'observedAspect' -2024-08-08 00:44:21 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-08 00:44:21 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-08 00:44:21 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 00:44:21 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-08 00:44:21 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 00:44:21 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-08 00:44:21 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-08 00:44:21 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-08 00:44:21 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-08 00:44:21 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-08 00:44:21 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-08 00:44:21 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-08 00:44:21 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 00:44:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:44:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:44:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-08 00:44:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-08 00:44:21 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-08 00:44:21 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:44:21 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:44:21 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-08 00:44:21 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-08 00:44:21 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-08 00:44:21 - Registering beans for JMX exposure on startup -2024-08-08 00:44:21 - Auto-detecting user-defined JMX MBeans -2024-08-08 00:44:21 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-08 00:44:21 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-08 00:44:21 - Starting beans in phase -2147483647 -2024-08-08 00:44:21 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-08 00:44:21 - Starting beans in phase 2147481599 -2024-08-08 00:44:21 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-08 00:44:21 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-08 00:44:21 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-08 00:44:21 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-08 00:44:21 - Tomcat started on port 8080 (http) with context path '/' -2024-08-08 00:44:21 - Successfully started bean 'webServerStartStop' -2024-08-08 00:44:21 - Starting beans in phase 2147482623 -2024-08-08 00:44:21 - Successfully started bean 'webServerGracefulShutdown' -2024-08-08 00:44:21 - Starting beans in phase 2147483647 -2024-08-08 00:44:21 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-08 00:44:21 - Started HaengdongApplication in 2.207 seconds (process running for 2.426) -2024-08-08 00:44:21 - Application availability state LivenessState changed to CORRECT -2024-08-08 00:44:21 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 82 -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 84 -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:44:21 - RMI TCP Connection(1)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - [javax.management.remote.rmi.RMIConnectionImpl@4d22407d: connectionId=rmi://127.0.0.1 4] closing. -2024-08-08 00:44:21 - [javax.management.remote.rmi.RMIConnectionImpl@4d22407d: connectionId=rmi://127.0.0.1 4] closed. -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:61410] -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:61409] -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 84 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 84 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - [javax.management.remote.rmi.RMIConnectionImpl@6da201e8: connectionId=rmi://127.0.0.1 6] closing. -2024-08-08 00:44:21 - [javax.management.remote.rmi.RMIConnectionImpl@6da201e8: connectionId=rmi://127.0.0.1 6] closed. -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 84 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - [javax.management.remote.rmi.RMIConnectionImpl@1720f919: connectionId=rmi://127.0.0.1 5] closing. -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - [javax.management.remote.rmi.RMIConnectionImpl@1720f919: connectionId=rmi://127.0.0.1 5] closed. -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 84 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - [javax.management.remote.rmi.RMIConnectionImpl@79d0e1f1: connectionId=rmi://127.0.0.1 7] closing. -2024-08-08 00:44:21 - [javax.management.remote.rmi.RMIConnectionImpl@79d0e1f1: connectionId=rmi://127.0.0.1 7] closed. -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - [javax.management.remote.rmi.RMIConnectionImpl@7a7a7d38: connectionId=rmi://127.0.0.1 8] closing. -2024-08-08 00:44:21 - [javax.management.remote.rmi.RMIConnectionImpl@7a7a7d38: connectionId=rmi://127.0.0.1 8] closed. -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 82 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 82 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 84 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 82 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 84 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - [javax.management.remote.rmi.RMIConnectionImpl@42e33170: connectionId=rmi://127.0.0.1 10] closing. -2024-08-08 00:44:21 - [javax.management.remote.rmi.RMIConnectionImpl@42e33170: connectionId=rmi://127.0.0.1 10] closed. -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - [javax.management.remote.rmi.RMIConnectionImpl@609015f6: connectionId=rmi://127.0.0.1 9] closing. -2024-08-08 00:44:21 - [javax.management.remote.rmi.RMIConnectionImpl@609015f6: connectionId=rmi://127.0.0.1 9] closed. -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 84 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 84 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:44:21 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-08 00:44:21 - Fetching JDBC Connection from DataSource -2024-08-08 00:44:21 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-08 00:44:21 - Initializing Servlet 'dispatcherServlet' -2024-08-08 00:44:21 - Detected StandardServletMultipartResolver -2024-08-08 00:44:21 - Detected AcceptHeaderLocaleResolver -2024-08-08 00:44:21 - Detected FixedThemeResolver -2024-08-08 00:44:21 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@177d7e98 -2024-08-08 00:44:21 - Fetching JDBC Connection from DataSource -2024-08-08 00:44:21 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@442545ab -2024-08-08 00:44:21 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-08 00:44:21 - Completed initialization in 1 ms -2024-08-08 00:44:21 - RMI TCP Connection(2)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - [javax.management.remote.rmi.RMIConnectionImpl@4a4c014b: connectionId=rmi://127.0.0.1 11] closing. -2024-08-08 00:44:21 - [javax.management.remote.rmi.RMIConnectionImpl@4a4c014b: connectionId=rmi://127.0.0.1 11] closed. -2024-08-08 00:44:21 - RMI TCP Connection(3)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:44:21 - [javax.management.remote.rmi.RMIConnectionImpl@6fc79715: connectionId=rmi://127.0.0.1 12] closing. -2024-08-08 00:44:21 - [javax.management.remote.rmi.RMIConnectionImpl@6fc79715: connectionId=rmi://127.0.0.1 12] closed. -2024-08-08 00:44:25 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1779211151007259798/conf/jaspic-providers.xml] -2024-08-08 00:44:25 - POST "/api/events", parameters={} -2024-08-08 00:44:25 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:44:25 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:44:25 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=토다리, password=0987]] -2024-08-08 00:44:25 - Found thread-bound EntityManager [SessionImpl(1651612298<open>)] for JPA transaction -2024-08-08 00:44:25 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-08 00:44:25 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:44:25 - begin -2024-08-08 00:44:25 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@237a3e74] -2024-08-08 00:44:25 - Found thread-bound EntityManager [SessionImpl(1651612298<open>)] for JPA transaction -2024-08-08 00:44:25 - Participating in existing transaction -2024-08-08 00:44:25 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-08 00:44:25 - Executing identity-insert immediately -2024-08-08 00:44:25 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-08 00:44:25 - Initializer list is empty -2024-08-08 00:44:25 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@6f113183 -2024-08-08 00:44:25 - Extracted JDBC value [0] - [1] -2024-08-08 00:44:25 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@2a619580 -2024-08-08 00:44:25 - Initiating transaction commit -2024-08-08 00:44:25 - Committing JPA transaction on EntityManager [SessionImpl(1651612298<open>)] -2024-08-08 00:44:25 - committing -2024-08-08 00:44:25 - Processing flush-time cascades -2024-08-08 00:44:25 - Dirty checking collections -2024-08-08 00:44:25 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-08 00:44:25 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-08 00:44:25 - Listing entities: -2024-08-08 00:44:25 - server.haengdong.domain.event.Event{password=0987, name=토다리, id=1, token=d259e37c-d553-49b3-8cbc-63bd18a239f8} -2024-08-08 00:44:25 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:44:25 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:44:25 - Writing [EventResponse[eventId=d259e37c-d553-49b3-8cbc-63bd18a239f8]] -2024-08-08 00:44:25 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:44:25 - Completed 200 OK -2024-08-08 00:44:50 - RMI TCP Connection(2)-127.0.0.1: (port 61395) connection closed -2024-08-08 00:44:50 - RMI TCP Connection(3)-127.0.0.1: (port 61395) connection closed -2024-08-08 00:44:50 - RMI TCP Connection(1)-127.0.0.1: (port 61395) connection closed -2024-08-08 00:44:50 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=61400,localport=61395] -2024-08-08 00:44:50 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=61409,localport=61395] -2024-08-08 00:44:50 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=61410,localport=61395] -2024-08-08 00:44:50 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=61409,localport=61395] -2024-08-08 00:44:50 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=61410,localport=61395] -2024-08-08 00:44:50 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=61400,localport=61395] -2024-08-08 00:44:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:44:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:44:52 - POST "/api/events", parameters={} -2024-08-08 00:44:52 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:44:52 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:44:52 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=토다리, password=0987]] -2024-08-08 00:44:52 - Found thread-bound EntityManager [SessionImpl(373312274<open>)] for JPA transaction -2024-08-08 00:44:52 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-08 00:44:52 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:44:52 - begin -2024-08-08 00:44:52 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@5342c7be] -2024-08-08 00:44:52 - Found thread-bound EntityManager [SessionImpl(373312274<open>)] for JPA transaction -2024-08-08 00:44:52 - Participating in existing transaction -2024-08-08 00:44:52 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-08 00:44:52 - Executing identity-insert immediately -2024-08-08 00:44:52 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-08 00:44:52 - Initializer list is empty -2024-08-08 00:44:52 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@2620db97 -2024-08-08 00:44:52 - Extracted JDBC value [0] - [2] -2024-08-08 00:44:52 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@6719a7d6 -2024-08-08 00:44:52 - Initiating transaction commit -2024-08-08 00:44:52 - Committing JPA transaction on EntityManager [SessionImpl(373312274<open>)] -2024-08-08 00:44:52 - committing -2024-08-08 00:44:52 - Processing flush-time cascades -2024-08-08 00:44:52 - Dirty checking collections -2024-08-08 00:44:52 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-08 00:44:52 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-08 00:44:52 - Listing entities: -2024-08-08 00:44:52 - server.haengdong.domain.event.Event{password=0987, name=토다리, id=2, token=d7d5d548-f2fd-46f4-8e52-534daeee45cc} -2024-08-08 00:44:52 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:44:52 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:44:52 - Writing [EventResponse[eventId=d7d5d548-f2fd-46f4-8e52-534daeee45cc]] -2024-08-08 00:44:52 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:44:52 - Completed 200 OK -2024-08-08 00:44:55 - POST "/api/events", parameters={} -2024-08-08 00:44:55 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:44:55 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:44:55 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=토다리, password=0987]] -2024-08-08 00:44:55 - Found thread-bound EntityManager [SessionImpl(470279315<open>)] for JPA transaction -2024-08-08 00:44:55 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-08 00:44:55 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:44:55 - begin -2024-08-08 00:44:55 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@59057977] -2024-08-08 00:44:55 - Found thread-bound EntityManager [SessionImpl(470279315<open>)] for JPA transaction -2024-08-08 00:44:55 - Participating in existing transaction -2024-08-08 00:44:55 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-08 00:44:55 - Executing identity-insert immediately -2024-08-08 00:44:55 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-08 00:44:55 - Initializer list is empty -2024-08-08 00:44:55 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@6dc288ee -2024-08-08 00:44:55 - Extracted JDBC value [0] - [3] -2024-08-08 00:44:55 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@25372062 -2024-08-08 00:44:55 - Initiating transaction commit -2024-08-08 00:44:55 - Committing JPA transaction on EntityManager [SessionImpl(470279315<open>)] -2024-08-08 00:44:55 - committing -2024-08-08 00:44:55 - Processing flush-time cascades -2024-08-08 00:44:55 - Dirty checking collections -2024-08-08 00:44:55 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-08 00:44:55 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-08 00:44:55 - Listing entities: -2024-08-08 00:44:55 - server.haengdong.domain.event.Event{password=0987, name=토다리, id=3, token=a22e3df1-4e85-4337-afbd-cec98aa1ed44} -2024-08-08 00:44:55 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:44:55 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:44:55 - Writing [EventResponse[eventId=a22e3df1-4e85-4337-afbd-cec98aa1ed44]] -2024-08-08 00:44:55 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:44:55 - Completed 200 OK -2024-08-08 00:44:59 - POST "/api/events", parameters={} -2024-08-08 00:44:59 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:44:59 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:44:59 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=토다리, password=0987]] -2024-08-08 00:44:59 - Found thread-bound EntityManager [SessionImpl(8735598<open>)] for JPA transaction -2024-08-08 00:44:59 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-08 00:44:59 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:44:59 - begin -2024-08-08 00:44:59 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@59416eb0] -2024-08-08 00:44:59 - Found thread-bound EntityManager [SessionImpl(8735598<open>)] for JPA transaction -2024-08-08 00:44:59 - Participating in existing transaction -2024-08-08 00:44:59 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-08 00:44:59 - Executing identity-insert immediately -2024-08-08 00:44:59 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-08 00:44:59 - Initializer list is empty -2024-08-08 00:44:59 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@41b7f249 -2024-08-08 00:44:59 - Extracted JDBC value [0] - [4] -2024-08-08 00:44:59 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@59a68ae9 -2024-08-08 00:44:59 - Initiating transaction commit -2024-08-08 00:44:59 - Committing JPA transaction on EntityManager [SessionImpl(8735598<open>)] -2024-08-08 00:44:59 - committing -2024-08-08 00:44:59 - Processing flush-time cascades -2024-08-08 00:44:59 - Dirty checking collections -2024-08-08 00:44:59 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-08 00:44:59 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-08 00:44:59 - Listing entities: -2024-08-08 00:44:59 - server.haengdong.domain.event.Event{password=0987, name=토다리, id=4, token=27d139a9-b007-4ae0-9897-cd7c8acfd398} -2024-08-08 00:44:59 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:44:59 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:44:59 - Writing [EventResponse[eventId=27d139a9-b007-4ae0-9897-cd7c8acfd398]] -2024-08-08 00:44:59 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:44:59 - Completed 200 OK -2024-08-08 00:45:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:45:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:45:33 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:61701] -2024-08-08 00:45:33 - RMI TCP Connection(4)-127.0.0.1: (port 61395) op = 80 -2024-08-08 00:45:33 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:45:33 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:45:33 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:45:33 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:45:33 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@6f3bd37f -2024-08-08 00:45:48 - RMI TCP Connection(4)-127.0.0.1: (port 61395) connection closed -2024-08-08 00:45:48 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=61701,localport=61395] -2024-08-08 00:45:48 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=61701,localport=61395] -2024-08-08 00:45:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:45:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:45:55 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-08 00:45:55 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Thu Aug 08 00:44:19 KST 2024 -2024-08-08 00:45:55 - Stopping beans in phase 2147483647 -2024-08-08 00:45:55 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-08 00:45:55 - Stopping beans in phase 2147482623 -2024-08-08 00:45:55 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-08 00:45:55 - Stopping beans in phase 2147481599 -2024-08-08 00:45:55 - Bean 'webServerStartStop' completed its stop procedure -2024-08-08 00:45:55 - Stopping beans in phase -2147483647 -2024-08-08 00:45:55 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-08 00:45:55 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-08 00:45:55 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-08 00:45:55 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-08 00:45:55 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-08 00:45:55 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-08 00:45:55 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-08 00:45:55 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-08 00:45:55 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-08 00:45:55 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-08 00:45:55 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-08 00:45:55 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-08 00:45:55 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-08 00:45:55 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-08 00:45:55 - Unregistering JMX-exposed beans on shutdown -2024-08-08 00:45:55 - Unregistering JMX-exposed beans -2024-08-08 00:45:55 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-08 00:45:55 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 00:45:55 - HHH000031: Closing -2024-08-08 00:45:55 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@12fecce] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@6af02de0] -2024-08-08 00:45:55 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-08 00:45:55 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-08 00:45:55 - HikariPool-1 - Shutdown initiated... -2024-08-08 00:45:55 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:45:55 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:45:55 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:45:55 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:45:55 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:45:55 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:45:55 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:45:55 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:45:55 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:45:55 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:45:55 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:45:55 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-08 00:45:55 - HikariPool-1 - Shutdown completed. -2024-08-08 00:45:55 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-08 00:45:56 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-08 00:45:56 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-08 00:45:56 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:45:56 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:45:56 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:45:56 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:45:56 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:45:56 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:45:56 - Loaded expression factory via original TCCL -2024-08-08 00:45:56 - Starting HaengdongApplication using Java 17.0.12 with PID 88038 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-08 00:45:56 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-08 00:45:56 - No active profile set, falling back to 1 default profile: "default" -2024-08-08 00:45:56 - Loading source class server.haengdong.HaengdongApplication -2024-08-08 00:45:56 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-08 00:45:56 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:45:56 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:45:56 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:45:56 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:45:56 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:45:56 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-08 00:45:56 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-08 00:45:56 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-08 00:45:56 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-08 00:45:56 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-08 00:45:56 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-08 00:45:56 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-08 00:45:56 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 00:45:56 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 00:45:56 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 00:45:56 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-08 00:45:56 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 00:45:56 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-08 00:45:56 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-08 00:45:56 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-08 00:45:56 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-08 00:45:56 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-08 00:45:56 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-08 00:45:56 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-08 00:45:56 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-08 00:45:56 - Scanning for JPA repositories in packages server.haengdong. -2024-08-08 00:45:56 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 00:45:56 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 00:45:56 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 00:45:56 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 00:45:56 - Finished Spring Data repository scanning in 16 ms. Found 4 JPA repository interfaces. -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-08 00:45:56 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-08 00:45:56 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-08 00:45:56 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 00:45:56 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-08 00:45:56 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 00:45:56 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 00:45:56 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-08 00:45:56 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-08 00:45:56 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@50b734c4] -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-08 00:45:56 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-08 00:45:56 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 00:45:56 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-08 00:45:56 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-08 00:45:56 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-08 00:45:56 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-08 00:45:56 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-08 00:45:56 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-08 00:45:56 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:45:56 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:45:56 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-08 00:45:56 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-08 00:45:56 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 00:45:56 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 00:45:56 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 00:45:56 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:45:56 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:45:56 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:45:57 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-08 00:45:57 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 00:45:57 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 00:45:57 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-08 00:45:57 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-08 00:45:57 - Tomcat initialized with port 8080 (http) -2024-08-08 00:45:57 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@71c0b742] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@71c0b742] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.mapper.MapperListener@11eec06b] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.mapper.MapperListener@11eec06b] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-08 00:45:57 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-08 00:45:57 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@71c0b742] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@71c0b742] to [STARTING] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@71c0b742] to [STARTED] -2024-08-08 00:45:57 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-08 00:45:57 - Starting service [Tomcat] -2024-08-08 00:45:57 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-08 00:45:57 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-08 00:45:57 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.webresources.StandardRoot@101330ad] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.webresources.StandardRoot@101330ad] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.webresources.StandardRoot@101330ad] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.webresources.DirResourceSet@684ce74c] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.webresources.DirResourceSet@684ce74c] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.webresources.DirResourceSet@684ce74c] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.webresources.DirResourceSet@684ce74c] to [STARTING] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.webresources.DirResourceSet@684ce74c] to [STARTED] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.webresources.StandardRoot@101330ad] to [STARTING] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.webresources.StandardRoot@101330ad] to [STARTED] -2024-08-08 00:45:57 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:45:57 - Starting this Loader -2024-08-08 00:45:57 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:45:57 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:45:57 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-08 00:45:57 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@3a109ff7] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@3a109ff7] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@3a109ff7] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@3a109ff7] to [STARTING] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@3a109ff7] to [STARTED] -2024-08-08 00:45:57 - Initializing Spring embedded WebApplicationContext -2024-08-08 00:45:57 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-08 00:45:57 - Root WebApplicationContext: initialization completed in 616 ms -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:45:57 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 00:45:57 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-08 00:45:57 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-08 00:45:57 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:45:57 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-08 00:45:57 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:45:57 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-08 00:45:57 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:45:57 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:45:57 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:45:57 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:45:57 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-08 00:45:57 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'h2Console' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 00:45:57 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'dataSource' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-08 00:45:57 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:45:57 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:45:57 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-08 00:45:57 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-08 00:45:57 - HikariPool-1 - configuration: -2024-08-08 00:45:57 - allowPoolSuspension.............false -2024-08-08 00:45:57 - autoCommit......................true -2024-08-08 00:45:57 - catalog.........................none -2024-08-08 00:45:57 - connectionInitSql...............none -2024-08-08 00:45:57 - connectionTestQuery.............none -2024-08-08 00:45:57 - connectionTimeout...............30000 -2024-08-08 00:45:57 - dataSource......................none -2024-08-08 00:45:57 - dataSourceClassName.............none -2024-08-08 00:45:57 - dataSourceJNDI..................none -2024-08-08 00:45:57 - dataSourceProperties............{password=<masked>} -2024-08-08 00:45:57 - driverClassName................."org.h2.Driver" -2024-08-08 00:45:57 - exceptionOverrideClassName......none -2024-08-08 00:45:57 - healthCheckProperties...........{} -2024-08-08 00:45:57 - healthCheckRegistry.............none -2024-08-08 00:45:57 - idleTimeout.....................600000 -2024-08-08 00:45:57 - initializationFailTimeout.......1 -2024-08-08 00:45:57 - isolateInternalQueries..........false -2024-08-08 00:45:57 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-08 00:45:57 - keepaliveTime...................0 -2024-08-08 00:45:57 - leakDetectionThreshold..........0 -2024-08-08 00:45:57 - maxLifetime.....................1800000 -2024-08-08 00:45:57 - maximumPoolSize.................10 -2024-08-08 00:45:57 - metricRegistry..................none -2024-08-08 00:45:57 - metricsTrackerFactory...........none -2024-08-08 00:45:57 - minimumIdle.....................10 -2024-08-08 00:45:57 - password........................<masked> -2024-08-08 00:45:57 - poolName........................"HikariPool-1" -2024-08-08 00:45:57 - readOnly........................false -2024-08-08 00:45:57 - registerMbeans..................false -2024-08-08 00:45:57 - scheduledExecutor...............none -2024-08-08 00:45:57 - schema..........................none -2024-08-08 00:45:57 - threadFactory...................internal -2024-08-08 00:45:57 - transactionIsolation............default -2024-08-08 00:45:57 - username........................"sa" -2024-08-08 00:45:57 - validationTimeout...............5000 -2024-08-08 00:45:57 - HikariPool-1 - Starting... -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:61805] -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 84 -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:57 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:57 - [javax.management.remote.rmi.RMIConnectionImpl@6cd94eee: connectionId=rmi://127.0.0.1 1] closing. -2024-08-08 00:45:57 - [javax.management.remote.rmi.RMIConnectionImpl@6cd94eee: connectionId=rmi://127.0.0.1 1] closed. -2024-08-08 00:45:57 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-08 00:45:57 - HikariPool-1 - Start completed. -2024-08-08 00:45:57 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-08 00:45:57 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-08 00:45:57 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:45:57 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-08 00:45:57 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:45:57 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:45:57 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:45:57 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-08 00:45:57 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-08 00:45:57 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-08 00:45:57 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-08 00:45:57 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-08 00:45:57 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@386e9fd8] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@386e9fd8] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@386e9fd8] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@386e9fd8] to [STARTING] -2024-08-08 00:45:57 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@386e9fd8] to [STARTED] -2024-08-08 00:45:57 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:45:57 - Filter 'requestContextFilter' configured for use -2024-08-08 00:45:57 - Filter 'webMvcObservationFilter' configured for use -2024-08-08 00:45:57 - Filter 'characterEncodingFilter' configured for use -2024-08-08 00:45:57 - Filter 'formContentFilter' configured for use -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:45:57 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:45:57 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:45:57 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-08 00:45:57 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.mapper.MapperListener@11eec06b] to [STARTING_PREP] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.mapper.MapperListener@11eec06b] to [STARTING] -2024-08-08 00:45:57 - Registered host [localhost] -2024-08-08 00:45:57 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-08 00:45:57 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-08 00:45:57 - Register Context [] for service [StandardService[Tomcat]] -2024-08-08 00:45:57 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-08 00:45:57 - Setting state for [org.apache.catalina.mapper.MapperListener@11eec06b] to [STARTED] -2024-08-08 00:45:57 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-08 00:45:57 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 00:45:57 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-08 00:45:57 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 00:45:57 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-08 00:45:57 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:45:57 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-08 00:45:57 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-08 00:45:57 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-08 00:45:57 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-08 00:45:57 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:45:57 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-08 00:45:57 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-08 00:45:57 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-08 00:45:57 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-08 00:45:57 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-08 00:45:57 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-08 00:45:57 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-08 00:45:57 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-08 00:45:57 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-08 00:45:57 - HHH000206: 'hibernate.properties' not found -2024-08-08 00:45:57 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-08 00:45:57 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-08 00:45:57 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 00:45:57 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 00:45:57 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-08 00:45:57 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-08 00:45:57 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-08 00:45:57 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 00:45:57 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-08 00:45:57 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-08 00:45:57 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 00:45:57 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-08 00:45:57 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-08 00:45:57 - HHH000026: Second-level cache disabled -2024-08-08 00:45:57 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-08 00:45:57 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-08 00:45:57 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@61836cd9 -2024-08-08 00:45:57 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@61836cd9 -2024-08-08 00:45:57 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@61836cd9 -2024-08-08 00:45:57 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@1b632442 -2024-08-08 00:45:57 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@1b632442 -2024-08-08 00:45:57 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@7227926b -2024-08-08 00:45:57 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@7227926b -2024-08-08 00:45:57 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@2f75a9b1 -2024-08-08 00:45:57 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@2f75a9b1 -2024-08-08 00:45:57 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@556aed22 -2024-08-08 00:45:57 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@556aed22 -2024-08-08 00:45:57 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@556aed22 -2024-08-08 00:45:57 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@57a982f9 -2024-08-08 00:45:57 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@57a982f9 -2024-08-08 00:45:57 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@57a982f9 -2024-08-08 00:45:57 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@19d3f6ad -2024-08-08 00:45:57 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@19d3f6ad -2024-08-08 00:45:57 - Adding type registration image -> org.hibernate.type.BasicTypeReference@1b69fc07 -2024-08-08 00:45:57 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@19e801b5 -2024-08-08 00:45:57 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@19e801b5 -2024-08-08 00:45:57 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-08 00:45:57 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-08 00:45:57 - Adding type registration short -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-08 00:45:57 - Adding type registration short -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-08 00:45:57 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-08 00:45:57 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-08 00:45:57 - Adding type registration int -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-08 00:45:57 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-08 00:45:57 - Adding type registration long -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-08 00:45:57 - Adding type registration long -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-08 00:45:57 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-08 00:45:57 - Adding type registration float -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-08 00:45:57 - Adding type registration float -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-08 00:45:57 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-08 00:45:57 - Adding type registration double -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-08 00:45:57 - Adding type registration double -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-08 00:45:57 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-08 00:45:57 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-08 00:45:57 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-08 00:45:57 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-08 00:45:57 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-08 00:45:57 - Adding type registration character -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-08 00:45:57 - Adding type registration char -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-08 00:45:57 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-08 00:45:57 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-08 00:45:57 - Adding type registration string -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-08 00:45:57 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-08 00:45:57 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-08 00:45:57 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-08 00:45:57 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-08 00:45:57 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-08 00:45:57 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-08 00:45:57 - Adding type registration text -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-08 00:45:57 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-08 00:45:57 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 00:45:57 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 00:45:57 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:45:57 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:45:57 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-08 00:45:57 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 00:45:57 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 00:45:57 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 00:45:57 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-08 00:45:57 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-08 00:45:57 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-08 00:45:57 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-08 00:45:57 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-08 00:45:57 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-08 00:45:57 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 00:45:57 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 00:45:57 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 00:45:57 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 00:45:57 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 00:45:57 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 00:45:57 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-08 00:45:57 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 00:45:57 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 00:45:57 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 00:45:57 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-08 00:45:57 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-08 00:45:57 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 00:45:57 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-08 00:45:57 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-08 00:45:57 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-08 00:45:57 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 00:45:57 - Adding type registration date -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 00:45:57 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 00:45:57 - Adding type registration time -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 00:45:57 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 00:45:57 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 00:45:57 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 00:45:57 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 00:45:57 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 00:45:57 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 00:45:57 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 00:45:57 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-08 00:45:57 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-08 00:45:57 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-08 00:45:57 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-08 00:45:57 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-08 00:45:57 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-08 00:45:57 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-08 00:45:57 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-08 00:45:57 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-08 00:45:57 - Adding type registration class -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-08 00:45:57 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-08 00:45:57 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 00:45:57 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 00:45:57 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 00:45:57 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 00:45:57 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 00:45:57 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-08 00:45:57 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-08 00:45:57 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-08 00:45:57 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-08 00:45:57 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 00:45:57 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 00:45:57 - Adding type registration url -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 00:45:57 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 00:45:57 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-08 00:45:57 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-08 00:45:57 - Adding type registration object -> org.hibernate.type.JavaObjectType@546083d6 -2024-08-08 00:45:57 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@546083d6 -2024-08-08 00:45:57 - Adding type registration null -> org.hibernate.type.NullType@5034681f -2024-08-08 00:45:57 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@1dfe5dd1 -2024-08-08 00:45:57 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@1fe05fff -2024-08-08 00:45:57 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@6e017950 -2024-08-08 00:45:57 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@1d06801f -2024-08-08 00:45:57 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@727956bb -2024-08-08 00:45:57 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@6ffbf0ac -2024-08-08 00:45:57 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@ad5cffa -2024-08-08 00:45:57 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@237aa0c7 -2024-08-08 00:45:57 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@708f7386] into BootstrapContext; was [null] -2024-08-08 00:45:57 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@708f7386) [was null] -2024-08-08 00:45:57 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@7eefaca0] into BootstrapContext; was [null] -2024-08-08 00:45:57 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@7d5ef1c3] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@33eab2e8] -2024-08-08 00:45:57 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-08 00:45:57 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-08 00:45:57 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-08 00:45:57 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-08 00:45:57 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-08 00:45:57 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@708f7386] -2024-08-08 00:45:57 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@708f7386] -2024-08-08 00:45:57 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 00:45:57 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 00:45:57 - JDBC version : 4.2 -2024-08-08 00:45:57 - HikariPool-1 - After adding stats (total=5, active=1, idle=4, waiting=0) -2024-08-08 00:45:57 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-08 00:45:57 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-08 00:45:57 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-08 00:45:57 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-08 00:45:57 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-08 00:45:57 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-08 00:45:57 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 00:45:57 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 00:45:57 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-08 00:45:57 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-08 00:45:57 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 00:45:57 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 00:45:57 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@767d9b9] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@593f7d2e] -2024-08-08 00:45:57 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-08 00:45:57 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-08 00:45:57 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-08 00:45:57 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-08 00:45:57 - Import with entity name Action -2024-08-08 00:45:57 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-08 00:45:57 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:45:57 - Binding column: AnnotatedColumn() -2024-08-08 00:45:57 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:45:57 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:45:57 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:45:57 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-08 00:45:57 - building BasicValue for id -2024-08-08 00:45:57 - Skipping column re-registration: action.id -2024-08-08 00:45:57 - Building property id -2024-08-08 00:45:57 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:45:57 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:45:57 - Binding column: AnnotatedColumn() -2024-08-08 00:45:57 - Building property event -2024-08-08 00:45:57 - Binding column: AnnotatedColumn() -2024-08-08 00:45:57 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 00:45:57 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-08 00:45:57 - building BasicValue for sequence -2024-08-08 00:45:57 - Skipping column re-registration: action.sequence -2024-08-08 00:45:57 - Building property sequence -2024-08-08 00:45:57 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:45:57 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-08 00:45:57 - Import with entity name BillAction -2024-08-08 00:45:57 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-08 00:45:57 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:45:57 - Binding column: AnnotatedColumn() -2024-08-08 00:45:57 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:45:57 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:45:57 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:45:57 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-08 00:45:57 - building BasicValue for id -2024-08-08 00:45:57 - Skipping column re-registration: bill_action.id -2024-08-08 00:45:57 - Building property id -2024-08-08 00:45:57 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:45:57 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:45:57 - Binding column: AnnotatedColumn() -2024-08-08 00:45:57 - Building property action -2024-08-08 00:45:57 - Binding column: AnnotatedColumn() -2024-08-08 00:45:57 - MetadataSourceProcessor property price with lazy=false -2024-08-08 00:45:57 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-08 00:45:57 - building BasicValue for price -2024-08-08 00:45:57 - Skipping column re-registration: bill_action.price -2024-08-08 00:45:57 - Building property price -2024-08-08 00:45:57 - Binding column: AnnotatedColumn() -2024-08-08 00:45:57 - MetadataSourceProcessor property title with lazy=false -2024-08-08 00:45:57 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-08 00:45:57 - building BasicValue for title -2024-08-08 00:45:57 - Skipping column re-registration: bill_action.title -2024-08-08 00:45:57 - Building property title -2024-08-08 00:45:57 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:45:57 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-08 00:45:57 - Import with entity name MemberAction -2024-08-08 00:45:57 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-08 00:45:57 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:45:57 - Binding column: AnnotatedColumn() -2024-08-08 00:45:57 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:45:57 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:45:57 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:45:57 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-08 00:45:57 - building BasicValue for id -2024-08-08 00:45:57 - Skipping column re-registration: member_action.id -2024-08-08 00:45:57 - Building property id -2024-08-08 00:45:57 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:45:57 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:45:57 - Binding column: AnnotatedColumn() -2024-08-08 00:45:57 - Building property action -2024-08-08 00:45:57 - Binding column: AnnotatedColumn() -2024-08-08 00:45:57 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-08 00:45:57 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-08 00:45:57 - building BasicValue for memberGroupId -2024-08-08 00:45:57 - Skipping column re-registration: member_action.member_group_id -2024-08-08 00:45:57 - Building property memberGroupId -2024-08-08 00:45:57 - Binding column: AnnotatedColumn() -2024-08-08 00:45:57 - MetadataSourceProcessor property memberName with lazy=false -2024-08-08 00:45:57 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-08 00:45:57 - building BasicValue for memberName -2024-08-08 00:45:57 - Skipping column re-registration: member_action.member_name -2024-08-08 00:45:57 - Building property memberName -2024-08-08 00:45:57 - Binding column: AnnotatedColumn() -2024-08-08 00:45:57 - MetadataSourceProcessor property status with lazy=false -2024-08-08 00:45:57 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-08 00:45:57 - building BasicValue for status -2024-08-08 00:45:57 - Skipping column re-registration: member_action.status -2024-08-08 00:45:57 - Building property status -2024-08-08 00:45:57 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:45:57 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-08 00:45:57 - Import with entity name Event -2024-08-08 00:45:57 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-08 00:45:57 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:45:57 - Binding column: AnnotatedColumn() -2024-08-08 00:45:57 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:45:57 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:45:57 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:45:57 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-08 00:45:57 - building BasicValue for id -2024-08-08 00:45:57 - Skipping column re-registration: event.id -2024-08-08 00:45:57 - Building property id -2024-08-08 00:45:57 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:45:57 - Binding column: AnnotatedColumn() -2024-08-08 00:45:57 - MetadataSourceProcessor property name with lazy=false -2024-08-08 00:45:57 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-08 00:45:57 - building BasicValue for name -2024-08-08 00:45:57 - Skipping column re-registration: event.name -2024-08-08 00:45:57 - Building property name -2024-08-08 00:45:57 - Binding column: AnnotatedColumn() -2024-08-08 00:45:57 - MetadataSourceProcessor property password with lazy=false -2024-08-08 00:45:57 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-08 00:45:57 - building BasicValue for password -2024-08-08 00:45:57 - Skipping column re-registration: event.password -2024-08-08 00:45:57 - Building property password -2024-08-08 00:45:57 - Binding column: AnnotatedColumn() -2024-08-08 00:45:57 - MetadataSourceProcessor property token with lazy=false -2024-08-08 00:45:57 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-08 00:45:57 - building BasicValue for token -2024-08-08 00:45:57 - Skipping column re-registration: event.token -2024-08-08 00:45:57 - Building property token -2024-08-08 00:45:57 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 00:45:57 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-08 00:45:57 - Import with entity name EventStep -2024-08-08 00:45:57 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-08 00:45:57 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:45:57 - Binding column: AnnotatedColumn() -2024-08-08 00:45:57 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:45:57 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:45:57 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:45:57 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-08 00:45:57 - building BasicValue for id -2024-08-08 00:45:57 - Skipping column re-registration: event_step.id -2024-08-08 00:45:57 - Building property id -2024-08-08 00:45:57 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:45:57 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:45:57 - Binding column: AnnotatedColumn() -2024-08-08 00:45:57 - Building property event -2024-08-08 00:45:57 - Binding column: AnnotatedColumn() -2024-08-08 00:45:57 - MetadataSourceProcessor property name with lazy=false -2024-08-08 00:45:57 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-08 00:45:57 - building BasicValue for name -2024-08-08 00:45:57 - Skipping column re-registration: event_step.name -2024-08-08 00:45:57 - Building property name -2024-08-08 00:45:57 - Binding column: AnnotatedColumn() -2024-08-08 00:45:57 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 00:45:57 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-08 00:45:57 - building BasicValue for sequence -2024-08-08 00:45:57 - Skipping column re-registration: event_step.sequence -2024-08-08 00:45:57 - Building property sequence -2024-08-08 00:45:57 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 00:45:57 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:45:57 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 00:45:57 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:45:57 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-08 00:45:57 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-08 00:45:57 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:45:57 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-08 00:45:57 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-08 00:45:57 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-08 00:45:57 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:45:57 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 00:45:57 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-08 00:45:57 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-08 00:45:57 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:45:57 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 00:45:57 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 00:45:57 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-08 00:45:57 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-08 00:45:57 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-08 00:45:57 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-08 00:45:57 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-08 00:45:57 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-08 00:45:57 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-08 00:45:57 - Building session factory -2024-08-08 00:45:57 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:45:57 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@6c25123e, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@5f5c0eda, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.10571017899159020738, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=88038, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.10571017899159020738, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@5e66733b, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-08 00:45:57 - Session factory constructed with filter configurations : {} -2024-08-08 00:45:57 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:45:57 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:45:57 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:45:57 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:45:57 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:45:57 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:45:57 - Loaded expression factory via original TCCL -2024-08-08 00:45:57 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-08 00:45:57 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-08 00:45:57 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:45:57 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:45:57 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:45:57 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:45:57 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:45:57 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:45:57 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:45:57 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:45:57 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:45:57 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:45:57 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:45:57 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:45:57 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:45:57 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:45:57 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:45:57 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:45:57 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@26728255] under count; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@51efdb72] under every; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@7bc6b117] under any; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5eae392d] under sinh; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4cd1716d] under cosh; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3e1c5e0d] under tanh; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6f7a65e] under pi; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@29bf90fc] under log; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-08 00:45:57 - Registering alternate key : length -> character_length -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@4fe9adfb] under position; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@19b3d3a4] under overlay; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@2a9ea03f] under trim; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@5216532a] under cast; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@862624f] under collate; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@7c8a91e2] under extract; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@34ff08c6] under ifnull; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@35451ba6] under pad; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@2a7392a3] under str; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@641cea11] under format; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@192ecf8] under timestampadd; prior registration was null -2024-08-08 00:45:57 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@78b2d29e] under timestampdiff; prior registration was null -2024-08-08 00:45:57 - Registering alternate key : dateadd -> timestampadd -2024-08-08 00:45:57 - Registering alternate key : datediff -> timestampdiff -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@25b402ea] under current_date; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2fccd98f] under current_time; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@309e7215] under current_timestamp; prior registration was null -2024-08-08 00:45:57 - Registering alternate key : current date -> current_date -2024-08-08 00:45:57 - Registering alternate key : current time -> current_time -2024-08-08 00:45:57 - Registering alternate key : current timestamp -> current_timestamp -2024-08-08 00:45:57 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1b30b6f8] under local_date; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1e965426] under local_time; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@575fe6da] under local_datetime; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@149238fe] under offset_datetime; prior registration was null -2024-08-08 00:45:57 - Registering alternate key : local date -> local_date -2024-08-08 00:45:57 - Registering alternate key : local time -> local_time -2024-08-08 00:45:57 - Registering alternate key : local datetime -> local_datetime -2024-08-08 00:45:57 - Registering alternate key : offset datetime -> offset_datetime -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@a0bdbe2] under instant; prior registration was null -2024-08-08 00:45:57 - Registering alternate key : current_instant -> instant -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@5f81507a] under sql; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@7d7c05fa] under count; prior registration was org.hibernate.dialect.function.CountFunction@26728255 -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@34d3409d] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6f7a65e -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@16732340] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-08 00:45:57 - Registering alternate key : day -> day_of_month -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@1e965426 -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@575fe6da -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@57ed8f95] under trunc; prior registration was null -2024-08-08 00:45:57 - Registering alternate key : truncate -> trunc -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1c25deb0] under date_trunc; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-08 00:45:57 - Registering alternate key : chr -> char -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1be12e05] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@4fe9adfb -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@66ab088c] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-08 00:45:57 - Registering alternate key : every -> bool_and -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-08 00:45:57 - Registering alternate key : any -> bool_or -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@5d01a2eb] under format; prior registration was org.hibernate.dialect.function.FormatFunction@641cea11 -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@655f92a1] under listagg; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@34001c5d] under mode; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@30e15628] under percentile_cont; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@37ab1b10] under percentile_disc; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@34f8ce89] under rank; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@22ed2886] under dense_rank; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@30ca66c5] under percent_rank; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@4abfa2ff] under cume_dist; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@52d01430] under array; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@3fdede3a] under array_list; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@2bc0603f] under array_agg; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@56adbb07] under array_position; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@6d8096ee] under array_positions; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@72406594] under array_positions_list; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4e1104f4] under array_length; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@623ded82] under array_concat; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@633cad4d] under array_prepend; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@15c3585] under array_append; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@4803bf73] under array_contains; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@13731ff4] under array_contains_nullable; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@58835bba] under array_overlaps; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@222eda8a] under array_overlaps_nullable; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1a73f3d1] under array_get; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@5400db7e] under array_set; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@31de8099] under array_remove; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@18918d70] under array_remove_index; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5d373794] under array_slice; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@41f5389f] under array_replace; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3a012678] under array_trim; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@5ef7ae2f] under array_fill; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@1bcf2c64] under array_fill_list; prior registration was null -2024-08-08 00:45:57 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@524dd373] under array_to_string; prior registration was null -2024-08-08 00:45:57 - abs(NUMERIC arg) -2024-08-08 00:45:57 - Double acos(NUMERIC arg) -2024-08-08 00:45:57 - Boolean any(BOOLEAN predicate) -2024-08-08 00:45:57 - array( ... ) -2024-08-08 00:45:57 - array_agg(arg) -2024-08-08 00:45:57 - array_append( ... ) -2024-08-08 00:45:57 - array_concat( ... ) -2024-08-08 00:45:57 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 00:45:57 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 00:45:57 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-08 00:45:57 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-08 00:45:57 - array_get(ARRAY array, INTEGER index) -2024-08-08 00:45:57 - Integer array_length(ARRAY array) -2024-08-08 00:45:57 - array_list( ... ) -2024-08-08 00:45:57 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-08 00:45:57 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-08 00:45:57 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-08 00:45:57 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-08 00:45:57 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-08 00:45:57 - array_prepend( ... ) -2024-08-08 00:45:57 - array_remove( ... ) -2024-08-08 00:45:57 - array_remove_index( ... ) -2024-08-08 00:45:57 - array_replace( ... ) -2024-08-08 00:45:57 - array_set( ... ) -2024-08-08 00:45:57 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-08 00:45:57 - String array_to_string( ... ) -2024-08-08 00:45:57 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-08 00:45:57 - Integer ascii(STRING arg) -2024-08-08 00:45:57 - Double asin(NUMERIC arg) -2024-08-08 00:45:57 - Double atan(NUMERIC arg) -2024-08-08 00:45:57 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-08 00:45:57 - avg(NUMERIC arg) -2024-08-08 00:45:57 - bit_and(arg) -2024-08-08 00:45:57 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-08 00:45:57 - bit_or(arg) -2024-08-08 00:45:57 - bitand(arg0, arg1) -2024-08-08 00:45:57 - bitnot(arg) -2024-08-08 00:45:57 - bitor(arg0, arg1) -2024-08-08 00:45:57 - bitxor(arg0, arg1) -2024-08-08 00:45:57 - Boolean bool_and(BOOLEAN predicate) -2024-08-08 00:45:57 - Boolean bool_or(BOOLEAN predicate) -2024-08-08 00:45:57 - cast(arg as Type) -2024-08-08 00:45:57 - ceiling(NUMERIC arg) -2024-08-08 00:45:57 - Character char(INTEGER arg) -2024-08-08 00:45:57 - Integer character_length(STRING_OR_CLOB arg) -2024-08-08 00:45:57 - Character chr(INTEGER arg) -2024-08-08 00:45:57 - coalesce(arg0[, arg1[, ...]]) -2024-08-08 00:45:57 - String collate(STRING string as COLLATION collation) -2024-08-08 00:45:57 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-08 00:45:57 - Double cos(NUMERIC arg) -2024-08-08 00:45:57 - Double cosh(NUMERIC arg) -2024-08-08 00:45:57 - Double cot(NUMERIC arg) -2024-08-08 00:45:57 - Long count([distinct ]{arg|*}) -2024-08-08 00:45:57 - Double cume_dist([arg0[, ...]]) -2024-08-08 00:45:57 - Date curdate() -2024-08-08 00:45:57 - Date current date -2024-08-08 00:45:57 - Time current time -2024-08-08 00:45:57 - Timestamp current timestamp -2024-08-08 00:45:57 - Date current_date -2024-08-08 00:45:57 - Instant current_instant -2024-08-08 00:45:57 - Time current_time -2024-08-08 00:45:57 - Timestamp current_timestamp -2024-08-08 00:45:57 - Time curtime() -2024-08-08 00:45:57 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-08 00:45:57 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 00:45:57 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 00:45:57 - Integer day(DATE arg) -2024-08-08 00:45:57 - Integer day_of_month(DATE arg) -2024-08-08 00:45:57 - Integer day_of_week(DATE arg) -2024-08-08 00:45:57 - Integer day_of_year(DATE arg) -2024-08-08 00:45:57 - String dayname(DATE arg) -2024-08-08 00:45:57 - Double degrees(NUMERIC arg) -2024-08-08 00:45:57 - Long dense_rank([arg0[, ...]]) -2024-08-08 00:45:57 - Boolean every(BOOLEAN predicate) -2024-08-08 00:45:57 - Double exp(NUMERIC arg) -2024-08-08 00:45:57 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-08 00:45:57 - first_valueANY value -2024-08-08 00:45:57 - floor(NUMERIC arg) -2024-08-08 00:45:57 - String format(TEMPORAL datetime as STRING pattern) -2024-08-08 00:45:57 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 00:45:57 - Integer hour(TIME arg) -2024-08-08 00:45:57 - ifnull(arg0, arg1) -2024-08-08 00:45:57 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-08 00:45:57 - Instant instant -2024-08-08 00:45:57 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-08 00:45:57 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-08 00:45:57 - last_valueANY value -2024-08-08 00:45:57 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-08 00:45:57 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 00:45:57 - String left(STRING string, INTEGER length) -2024-08-08 00:45:57 - Integer length(STRING_OR_CLOB arg) -2024-08-08 00:45:57 - String listagg(STRING arg0, STRING arg1) -2024-08-08 00:45:57 - Double ln(NUMERIC arg) -2024-08-08 00:45:57 - LocalDate local date -2024-08-08 00:45:57 - LocalDateTime local datetime -2024-08-08 00:45:57 - LocalTime local time -2024-08-08 00:45:57 - LocalDate local_date -2024-08-08 00:45:57 - LocalDateTime local_datetime -2024-08-08 00:45:57 - LocalTime local_time -2024-08-08 00:45:57 - Time localtime -2024-08-08 00:45:57 - Timestamp localtimestamp -2024-08-08 00:45:57 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-08 00:45:57 - Double log(NUMERIC base, NUMERIC arg) -2024-08-08 00:45:57 - Double log10(NUMERIC arg) -2024-08-08 00:45:57 - String lower(STRING string) -2024-08-08 00:45:57 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 00:45:57 - String ltrim(STRING string) -2024-08-08 00:45:57 - max(COMPARABLE arg) -2024-08-08 00:45:57 - Double median(NUMERIC arg) -2024-08-08 00:45:57 - Integer microsecond(TIME arg) -2024-08-08 00:45:57 - min(COMPARABLE arg) -2024-08-08 00:45:57 - Integer minute(TIME arg) -2024-08-08 00:45:57 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-08 00:45:57 - mode() -2024-08-08 00:45:57 - Integer month(DATE arg) -2024-08-08 00:45:57 - String monthname(DATE arg) -2024-08-08 00:45:57 - Timestamp now() -2024-08-08 00:45:57 - nth_valueANY value, INTEGER nth -2024-08-08 00:45:57 - nullif(arg0, arg1) -2024-08-08 00:45:57 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-08 00:45:57 - OffsetDateTime offset datetime -2024-08-08 00:45:57 - OffsetDateTime offset_datetime -2024-08-08 00:45:57 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-08 00:45:57 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-08 00:45:57 - Double percent_rank([arg0[, ...]]) -2024-08-08 00:45:57 - percentile_cont(NUMERIC arg) -2024-08-08 00:45:57 - percentile_disc(NUMERIC arg) -2024-08-08 00:45:57 - Double pi -2024-08-08 00:45:57 - Integer position(STRING pattern in STRING string) -2024-08-08 00:45:57 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-08 00:45:57 - Integer quarter(DATE arg) -2024-08-08 00:45:57 - Double radians(NUMERIC arg) -2024-08-08 00:45:57 - Double rand([INTEGER seed]) -2024-08-08 00:45:57 - Long rank([arg0[, ...]]) -2024-08-08 00:45:57 - String repeat(STRING string, INTEGER times) -2024-08-08 00:45:57 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-08 00:45:57 - String right(STRING string, INTEGER length) -2024-08-08 00:45:57 - round(NUMERIC number[, INTEGER places]) -2024-08-08 00:45:57 - Long row_number() -2024-08-08 00:45:57 - Long rownum() -2024-08-08 00:45:57 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 00:45:57 - String rtrim(STRING string) -2024-08-08 00:45:57 - Integer second(TIME arg) -2024-08-08 00:45:57 - Integer sign(NUMERIC arg) -2024-08-08 00:45:57 - Double sin(NUMERIC arg) -2024-08-08 00:45:57 - Double sinh(NUMERIC arg) -2024-08-08 00:45:57 - String soundex(arg) -2024-08-08 00:45:57 - String space(INTEGER arg) -2024-08-08 00:45:57 - Object sql -2024-08-08 00:45:57 - Double sqrt(NUMERIC arg) -2024-08-08 00:45:57 - Double stddev_pop(NUMERIC arg) -2024-08-08 00:45:57 - Double stddev_samp(NUMERIC arg) -2024-08-08 00:45:57 - String str(arg) -2024-08-08 00:45:57 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-08 00:45:57 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-08 00:45:57 - sum(arg) -2024-08-08 00:45:57 - Timestamp sysdate -2024-08-08 00:45:57 - Double tan(NUMERIC arg) -2024-08-08 00:45:57 - Double tanh(NUMERIC arg) -2024-08-08 00:45:57 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 00:45:57 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 00:45:57 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-08 00:45:57 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-08 00:45:57 - trunc( ... ) -2024-08-08 00:45:57 - truncate( ... ) -2024-08-08 00:45:57 - String upper(STRING string) -2024-08-08 00:45:57 - Double var_pop(NUMERIC arg) -2024-08-08 00:45:57 - Double var_samp(NUMERIC arg) -2024-08-08 00:45:57 - Integer week(DATE arg) -2024-08-08 00:45:57 - Integer year(DATE arg) -2024-08-08 00:45:57 - Starting QueryInterpretationCache(2048) -2024-08-08 00:45:57 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:45:57 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:45:57 - Configured EntityCopyObserver strategy: disallow -2024-08-08 00:45:57 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:45:57 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 84 -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:57 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:57 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:57 - [javax.management.remote.rmi.RMIConnectionImpl@11722c88: connectionId=rmi://127.0.0.1 2] closing. -2024-08-08 00:45:57 - [javax.management.remote.rmi.RMIConnectionImpl@11722c88: connectionId=rmi://127.0.0.1 2] closed. -2024-08-08 00:45:57 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-08 00:45:57 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:45:57 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:45:57 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-08 00:45:57 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:45:57 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:45:57 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-08 00:45:57 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:45:57 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:45:57 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-08 00:45:57 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:45:57 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:45:57 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-08 00:45:57 - Starting post-init callbacks -2024-08-08 00:45:57 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-08 00:45:57 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-08 00:45:57 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-08 00:45:57 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-08 00:45:57 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-08 00:45:57 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-08 00:45:57 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-08 00:45:57 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-08 00:45:57 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-08 00:45:57 - Created new SQL alias : ba1_0 -2024-08-08 00:45:57 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-08 00:45:57 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6b44121e] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-08 00:45:57 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-08 00:45:57 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-08 00:45:57 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-08 00:45:57 - Version select: select id from bill_action where id=? -2024-08-08 00:45:57 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-08 00:45:57 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-08 00:45:57 - Delete (0): delete from bill_action where id=? -2024-08-08 00:45:57 - Created new SQL alias : ma1_0 -2024-08-08 00:45:57 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-08 00:45:57 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6908674b] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-08 00:45:57 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-08 00:45:57 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-08 00:45:57 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-08 00:45:57 - Version select: select id from member_action where id=? -2024-08-08 00:45:57 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-08 00:45:57 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-08 00:45:57 - Delete (0): delete from member_action where id=? -2024-08-08 00:45:57 - Created new SQL alias : e1_0 -2024-08-08 00:45:57 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-08 00:45:57 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-08 00:45:57 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-08 00:45:57 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-08 00:45:57 - Version select: select id from event where id=? -2024-08-08 00:45:57 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-08 00:45:57 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-08 00:45:57 - Delete (0): delete from event where id=? -2024-08-08 00:45:57 - Created new SQL alias : a1_0 -2024-08-08 00:45:57 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-08 00:45:57 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@49c72fb7] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-08 00:45:57 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-08 00:45:57 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-08 00:45:57 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-08 00:45:57 - Version select: select id from action where id=? -2024-08-08 00:45:57 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-08 00:45:57 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-08 00:45:57 - Delete (0): delete from action where id=? -2024-08-08 00:45:57 - Created new SQL alias : es1_0 -2024-08-08 00:45:57 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-08 00:45:57 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@68024e57] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-08 00:45:57 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-08 00:45:57 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-08 00:45:57 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-08 00:45:57 - Version select: select id from event_step where id=? -2024-08-08 00:45:57 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-08 00:45:57 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-08 00:45:57 - Delete (0): delete from event_step where id=? -2024-08-08 00:45:57 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-08 00:45:57 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@767d9b9] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@467e7793] -2024-08-08 00:45:57 - Checking 0 named HQL queries -2024-08-08 00:45:57 - Checking 0 named SQL queries -2024-08-08 00:45:57 - - drop table if exists action cascade -2024-08-08 00:45:57 - - drop table if exists bill_action cascade -2024-08-08 00:45:57 - - drop table if exists event cascade -2024-08-08 00:45:57 - - drop table if exists event_step cascade -2024-08-08 00:45:57 - - drop table if exists member_action cascade -2024-08-08 00:45:57 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-08 00:45:57 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-08 00:45:57 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-08 00:45:57 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-08 00:45:57 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-08 00:45:57 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-08 00:45:57 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-08 00:45:57 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-08 00:45:57 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-08 00:45:57 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@190cc39e -2024-08-08 00:45:57 - Registering SessionFactory: 627ab319-a8bb-405d-90ed-9cf95c5cf012 (<unnamed>) -2024-08-08 00:45:57 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-08 00:45:57 - Instantiated SessionFactory -2024-08-08 00:45:57 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'actionService' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-08 00:45:57 - Initializing JpaMetamodelMappingContext… -2024-08-08 00:45:57 - Finished initializing JpaMetamodelMappingContext -2024-08-08 00:45:57 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:57 - Statistics initialized [enabled=false] -2024-08-08 00:45:57 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-08 00:45:57 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-08 00:45:57 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-08 00:45:57 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-08 00:45:57 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:57 - Looking up named query BillAction.findByAction_Id -2024-08-08 00:45:57 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:45:57 - Did not find named query BillAction.findByAction_Id -2024-08-08 00:45:57 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:57 - Looking up named query BillAction.findByAction_Event -2024-08-08 00:45:57 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:45:57 - Did not find named query BillAction.findByAction_Event -2024-08-08 00:45:57 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:57 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-08 00:45:57 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:45:57 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-08 00:45:57 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:57 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-08 00:45:57 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-08 00:45:57 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:57 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-08 00:45:57 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:57 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-08 00:45:57 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:45:57 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-08 00:45:57 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:58 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-08 00:45:58 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:45:58 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:45:58 - Looking up named query MemberAction.findByAction -2024-08-08 00:45:58 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:45:58 - Did not find named query MemberAction.findByAction -2024-08-08 00:45:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:58 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:45:58 - Did not find named query MemberAction.findAllByEvent.count -2024-08-08 00:45:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:58 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-08 00:45:58 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:45:58 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(767820595352833)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(767820595352833)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(767820595352833)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(767820595352833)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(767820595352833).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:45:58 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:45:58 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-08 00:45:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:58 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-08 00:45:58 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 00:45:58 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-08 00:45:58 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 00:45:58 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:45:58 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-08 00:45:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:58 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-08 00:45:58 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 00:45:58 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:45:58 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 00:45:58 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 00:45:58 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:45:58 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 00:45:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:58 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 00:45:58 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:45:58 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 00:45:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:58 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'eventRepository' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-08 00:45:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:58 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-08 00:45:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:58 - Looking up named query Event.findByToken -2024-08-08 00:45:58 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:45:58 - Did not find named query Event.findByToken -2024-08-08 00:45:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:58 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-08 00:45:58 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-08 00:45:58 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:45:58 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'billActionService' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'actionRepository' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-08 00:45:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:58 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-08 00:45:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:58 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:45:58 - Did not find named query Action.findLastByEvent.count -2024-08-08 00:45:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:58 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-08 00:45:58 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:45:58 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:45:58 - Looking up named query Action.findByIdAndEvent -2024-08-08 00:45:58 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:45:58 - Did not find named query Action.findByIdAndEvent -2024-08-08 00:45:58 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:45:58 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-08 00:45:58 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-08 00:45:58 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-08 00:45:58 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'eventService' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-08 00:45:58 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-08 00:45:58 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-08 00:45:58 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-08 00:45:58 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-08 00:45:58 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'memberActionService' -2024-08-08 00:45:58 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-08 00:45:58 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:45:58 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-08 00:45:58 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 00:45:58 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-08 00:45:58 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'actionController' -2024-08-08 00:45:58 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'billActionController' -2024-08-08 00:45:58 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'eventController' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'authService' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-08 00:45:58 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-08 00:45:58 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'memberActionController' -2024-08-08 00:45:58 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-08 00:45:58 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-08 00:45:58 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:45:58 - Loaded expression factory via original TCCL -2024-08-08 00:45:58 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-08 00:45:58 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-08 00:45:58 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:45:58 - Trying to load META-INF/validation.xml via user class loader -2024-08-08 00:45:58 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:45:58 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:45:58 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:45:58 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:45:58 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:45:58 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:45:58 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:45:58 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:45:58 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:45:58 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:45:58 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'error' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-08 00:45:58 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-08 00:45:58 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-08 00:45:58 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-08 00:45:58 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-08 00:45:58 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:45:58 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:45:58 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-08 00:45:58 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:45:58 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:45:58 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'localeResolver' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'themeResolver' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-08 00:45:58 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:45:58 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:45:58 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 84 -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:45:58 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - [javax.management.remote.rmi.RMIConnectionImpl@2057bbb4: connectionId=rmi://127.0.0.1 3] closing. -2024-08-08 00:45:58 - [javax.management.remote.rmi.RMIConnectionImpl@2057bbb4: connectionId=rmi://127.0.0.1 3] closed. -2024-08-08 00:45:58 - - s.h.p.EventController: - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) -2024-08-08 00:45:58 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-08 00:45:58 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-08 00:45:58 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-08 00:45:58 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:45:58 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-08 00:45:58 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:45:58 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:45:58 - 'beanNameHandlerMapping' {} -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-08 00:45:58 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:45:58 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'messageConverters' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-08 00:45:58 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-08 00:45:58 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:45:58 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:45:58 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'pageModule' -2024-08-08 00:45:58 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:45:58 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 00:45:58 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-08 00:45:58 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-08 00:45:58 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:45:58 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:45:58 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:45:58 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-08 00:45:58 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:45:58 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-08 00:45:58 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'sortResolver' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-08 00:45:58 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-08 00:45:58 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-08 00:45:58 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-08 00:45:58 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-08 00:45:58 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-08 00:45:58 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:45:58 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-08 00:45:58 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 00:45:58 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-08 00:45:58 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'transactionManager' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-08 00:45:58 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-08 00:45:58 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:45:58 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-08 00:45:58 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:45:58 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-08 00:45:58 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-08 00:45:58 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-08 00:45:58 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-08 00:45:58 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-08 00:45:58 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-08 00:45:58 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-08 00:45:58 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-08 00:45:58 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-08 00:45:58 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-08 00:45:58 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-08 00:45:58 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-08 00:45:58 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-08 00:45:58 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:45:58 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-08 00:45:58 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-08 00:45:58 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-08 00:45:58 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-08 00:45:58 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-08 00:45:58 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-08 00:45:58 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-08 00:45:58 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-08 00:45:58 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-08 00:45:58 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 00:45:58 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-08 00:45:58 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:45:58 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:45:58 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 00:45:58 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-08 00:45:58 - Using SLF4J as the default logging framework -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-08 00:45:58 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-08 00:45:58 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-08 00:45:58 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-08 00:45:58 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-08 00:45:58 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'observedAspect' -2024-08-08 00:45:58 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-08 00:45:58 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-08 00:45:58 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 00:45:58 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-08 00:45:58 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 00:45:58 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-08 00:45:58 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-08 00:45:58 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-08 00:45:58 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-08 00:45:58 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-08 00:45:58 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-08 00:45:58 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-08 00:45:58 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 00:45:58 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:45:58 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:45:58 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-08 00:45:58 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-08 00:45:58 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-08 00:45:58 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:45:58 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:45:58 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-08 00:45:58 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-08 00:45:58 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-08 00:45:58 - Registering beans for JMX exposure on startup -2024-08-08 00:45:58 - Auto-detecting user-defined JMX MBeans -2024-08-08 00:45:58 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-08 00:45:58 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-08 00:45:58 - Starting beans in phase -2147483647 -2024-08-08 00:45:58 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-08 00:45:58 - Starting beans in phase 2147481599 -2024-08-08 00:45:58 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-08 00:45:58 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-08 00:45:58 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-08 00:45:58 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-08 00:45:58 - Tomcat started on port 8080 (http) with context path '/' -2024-08-08 00:45:58 - Successfully started bean 'webServerStartStop' -2024-08-08 00:45:58 - Starting beans in phase 2147482623 -2024-08-08 00:45:58 - Successfully started bean 'webServerGracefulShutdown' -2024-08-08 00:45:58 - Starting beans in phase 2147483647 -2024-08-08 00:45:58 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-08 00:45:58 - Started HaengdongApplication in 2.244 seconds (process running for 2.444) -2024-08-08 00:45:58 - Application availability state LivenessState changed to CORRECT -2024-08-08 00:45:58 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 84 -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:45:58 - RMI TCP Connection(1)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - [javax.management.remote.rmi.RMIConnectionImpl@b7a8cb6: connectionId=rmi://127.0.0.1 4] closing. -2024-08-08 00:45:58 - [javax.management.remote.rmi.RMIConnectionImpl@b7a8cb6: connectionId=rmi://127.0.0.1 4] closed. -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:61811] -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:61810] -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 84 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 84 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - [javax.management.remote.rmi.RMIConnectionImpl@39ee5a8: connectionId=rmi://127.0.0.1 6] closing. -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - [javax.management.remote.rmi.RMIConnectionImpl@39ee5a8: connectionId=rmi://127.0.0.1 6] closed. -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 84 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - [javax.management.remote.rmi.RMIConnectionImpl@7a0a8829: connectionId=rmi://127.0.0.1 5] closing. -2024-08-08 00:45:58 - [javax.management.remote.rmi.RMIConnectionImpl@7a0a8829: connectionId=rmi://127.0.0.1 5] closed. -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 84 -2024-08-08 00:45:58 - [javax.management.remote.rmi.RMIConnectionImpl@24f4ca4a: connectionId=rmi://127.0.0.1 7] closing. -2024-08-08 00:45:58 - [javax.management.remote.rmi.RMIConnectionImpl@24f4ca4a: connectionId=rmi://127.0.0.1 7] closed. -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - [javax.management.remote.rmi.RMIConnectionImpl@15e3181a: connectionId=rmi://127.0.0.1 8] closing. -2024-08-08 00:45:58 - [javax.management.remote.rmi.RMIConnectionImpl@15e3181a: connectionId=rmi://127.0.0.1 8] closed. -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 84 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 84 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - [javax.management.remote.rmi.RMIConnectionImpl@1d420bff: connectionId=rmi://127.0.0.1 10] closing. -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - [javax.management.remote.rmi.RMIConnectionImpl@1d420bff: connectionId=rmi://127.0.0.1 10] closed. -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - [javax.management.remote.rmi.RMIConnectionImpl@3f15cd6b: connectionId=rmi://127.0.0.1 9] closing. -2024-08-08 00:45:58 - [javax.management.remote.rmi.RMIConnectionImpl@3f15cd6b: connectionId=rmi://127.0.0.1 9] closed. -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 82 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 84 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 84 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:45:58 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-08 00:45:58 - Fetching JDBC Connection from DataSource -2024-08-08 00:45:58 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-08 00:45:58 - Initializing Servlet 'dispatcherServlet' -2024-08-08 00:45:58 - Detected StandardServletMultipartResolver -2024-08-08 00:45:58 - Detected AcceptHeaderLocaleResolver -2024-08-08 00:45:58 - Detected FixedThemeResolver -2024-08-08 00:45:58 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@56c72fff -2024-08-08 00:45:58 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@71639428 -2024-08-08 00:45:58 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-08 00:45:58 - Fetching JDBC Connection from DataSource -2024-08-08 00:45:58 - Completed initialization in 1 ms -2024-08-08 00:45:58 - RMI TCP Connection(3)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - [javax.management.remote.rmi.RMIConnectionImpl@6e6b3da6: connectionId=rmi://127.0.0.1 11] closing. -2024-08-08 00:45:58 - [javax.management.remote.rmi.RMIConnectionImpl@6e6b3da6: connectionId=rmi://127.0.0.1 11] closed. -2024-08-08 00:45:58 - RMI TCP Connection(2)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:45:58 - [javax.management.remote.rmi.RMIConnectionImpl@5e328a6: connectionId=rmi://127.0.0.1 12] closing. -2024-08-08 00:45:58 - [javax.management.remote.rmi.RMIConnectionImpl@5e328a6: connectionId=rmi://127.0.0.1 12] closed. -2024-08-08 00:46:02 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.10571017899159020738/conf/jaspic-providers.xml] -2024-08-08 00:46:02 - POST "/api/events", parameters={} -2024-08-08 00:46:02 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:46:02 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:46:02 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=토다리, password=0987]] -2024-08-08 00:46:02 - Found thread-bound EntityManager [SessionImpl(546193491<open>)] for JPA transaction -2024-08-08 00:46:02 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-08 00:46:02 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:46:02 - begin -2024-08-08 00:46:02 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@454df7f8] -2024-08-08 00:46:02 - Found thread-bound EntityManager [SessionImpl(546193491<open>)] for JPA transaction -2024-08-08 00:46:02 - Participating in existing transaction -2024-08-08 00:46:02 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-08 00:46:02 - Executing identity-insert immediately -2024-08-08 00:46:02 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-08 00:46:02 - Initializer list is empty -2024-08-08 00:46:02 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@6455f201 -2024-08-08 00:46:02 - Extracted JDBC value [0] - [1] -2024-08-08 00:46:02 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@7f59631c -2024-08-08 00:46:02 - Initiating transaction commit -2024-08-08 00:46:02 - Committing JPA transaction on EntityManager [SessionImpl(546193491<open>)] -2024-08-08 00:46:02 - committing -2024-08-08 00:46:02 - Processing flush-time cascades -2024-08-08 00:46:02 - Dirty checking collections -2024-08-08 00:46:02 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-08 00:46:02 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-08 00:46:02 - Listing entities: -2024-08-08 00:46:02 - server.haengdong.domain.event.Event{password=0987, name=토다리, id=1, token=7093846f-20d5-45cf-9d41-e30145a112d2} -2024-08-08 00:46:02 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:46:02 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:46:02 - Writing [EventResponse[eventId=7093846f-20d5-45cf-9d41-e30145a112d2]] -2024-08-08 00:46:02 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:46:02 - Completed 200 OK -2024-08-08 00:46:18 - GET "/", parameters={} -2024-08-08 00:46:18 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 00:46:18 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:46:18 - Resource not found -2024-08-08 00:46:18 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 00:46:18 - Using 'application/json;q=0.8', given [text/html, application/xhtml+xml, image/avif, image/webp, image/apng, application/xml;q=0.9, */*;q=0.8, application/signed-exchange;v=b3;q=0.7] and supported [application/json, application/*+json] -2024-08-08 00:46:18 - Writing [ErrorResponse[code=R_002, message=잘못된 엔드포인트입니다.]] -2024-08-08 00:46:18 - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource .] -2024-08-08 00:46:18 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:46:18 - Completed 400 BAD_REQUEST -2024-08-08 00:46:18 - GET "/favicon.ico", parameters={} -2024-08-08 00:46:18 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 00:46:18 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:46:18 - Resource not found -2024-08-08 00:46:18 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 00:46:18 - Using 'application/json;q=0.8', given [image/avif, image/webp, image/apng, image/svg+xml, image/*, */*;q=0.8] and supported [application/json, application/*+json] -2024-08-08 00:46:18 - Writing [ErrorResponse[code=R_002, message=잘못된 엔드포인트입니다.]] -2024-08-08 00:46:18 - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource favicon.ico.] -2024-08-08 00:46:18 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:46:18 - Completed 400 BAD_REQUEST -2024-08-08 00:46:27 - RMI TCP Connection(2)-127.0.0.1: (port 61800) connection closed -2024-08-08 00:46:27 - RMI TCP Connection(3)-127.0.0.1: (port 61800) connection closed -2024-08-08 00:46:27 - RMI TCP Connection(1)-127.0.0.1: (port 61800) connection closed -2024-08-08 00:46:27 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=61810,localport=61800] -2024-08-08 00:46:27 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=61805,localport=61800] -2024-08-08 00:46:27 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=61811,localport=61800] -2024-08-08 00:46:27 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=61810,localport=61800] -2024-08-08 00:46:27 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=61811,localport=61800] -2024-08-08 00:46:27 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=61805,localport=61800] -2024-08-08 00:46:27 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:46:27 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:46:41 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:62013] -2024-08-08 00:46:41 - RMI TCP Connection(4)-127.0.0.1: (port 61800) op = 80 -2024-08-08 00:46:41 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:46:41 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:46:41 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:46:41 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:46:41 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@4863c8ac -2024-08-08 00:46:56 - RMI TCP Connection(4)-127.0.0.1: (port 61800) connection closed -2024-08-08 00:46:56 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=62013,localport=61800] -2024-08-08 00:46:56 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=62013,localport=61800] -2024-08-08 00:46:57 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:46:57 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:47:27 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:47:27 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:47:57 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:47:57 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:48:27 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:48:27 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:48:57 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:48:57 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:49:01 - GET "/", parameters={} -2024-08-08 00:49:01 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 00:49:01 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:49:01 - Resource not found -2024-08-08 00:49:01 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 00:49:01 - Using 'application/json;q=0.8', given [text/html, application/xhtml+xml, image/avif, image/webp, image/apng, application/xml;q=0.9, */*;q=0.8, application/signed-exchange;v=b3;q=0.7] and supported [application/json, application/*+json] -2024-08-08 00:49:01 - Writing [ErrorResponse[code=R_002, message=잘못된 엔드포인트입니다.]] -2024-08-08 00:49:01 - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource .] -2024-08-08 00:49:01 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:49:01 - Completed 400 BAD_REQUEST -2024-08-08 00:49:01 - GET "/favicon.ico", parameters={} -2024-08-08 00:49:01 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 00:49:01 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:49:01 - Resource not found -2024-08-08 00:49:01 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 00:49:01 - Using 'application/json;q=0.8', given [image/avif, image/webp, image/apng, image/svg+xml, image/*, */*;q=0.8] and supported [application/json, application/*+json] -2024-08-08 00:49:01 - Writing [ErrorResponse[code=R_002, message=잘못된 엔드포인트입니다.]] -2024-08-08 00:49:01 - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource favicon.ico.] -2024-08-08 00:49:01 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:49:01 - Completed 400 BAD_REQUEST -2024-08-08 00:49:12 - POST "/api/events", parameters={} -2024-08-08 00:49:12 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:49:12 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:49:12 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=토다리, password=0987]] -2024-08-08 00:49:12 - Found thread-bound EntityManager [SessionImpl(1047603326<open>)] for JPA transaction -2024-08-08 00:49:12 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-08 00:49:12 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:49:12 - begin -2024-08-08 00:49:12 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@7b73a1d4] -2024-08-08 00:49:12 - Found thread-bound EntityManager [SessionImpl(1047603326<open>)] for JPA transaction -2024-08-08 00:49:12 - Participating in existing transaction -2024-08-08 00:49:12 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-08 00:49:12 - Executing identity-insert immediately -2024-08-08 00:49:12 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-08 00:49:12 - Initializer list is empty -2024-08-08 00:49:12 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@4cefdf4d -2024-08-08 00:49:12 - Extracted JDBC value [0] - [2] -2024-08-08 00:49:12 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@467c4e27 -2024-08-08 00:49:12 - Initiating transaction commit -2024-08-08 00:49:12 - Committing JPA transaction on EntityManager [SessionImpl(1047603326<open>)] -2024-08-08 00:49:12 - committing -2024-08-08 00:49:12 - Processing flush-time cascades -2024-08-08 00:49:12 - Dirty checking collections -2024-08-08 00:49:12 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-08 00:49:12 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-08 00:49:12 - Listing entities: -2024-08-08 00:49:12 - server.haengdong.domain.event.Event{password=0987, name=토다리, id=2, token=b4da91c4-8a37-4f99-acdb-97d2dec392b4} -2024-08-08 00:49:12 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:49:12 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:49:12 - Writing [EventResponse[eventId=b4da91c4-8a37-4f99-acdb-97d2dec392b4]] -2024-08-08 00:49:12 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:49:12 - Completed 200 OK -2024-08-08 00:49:15 - POST "/api/events", parameters={} -2024-08-08 00:49:15 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:49:15 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:49:15 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=토다리, password=0987]] -2024-08-08 00:49:15 - Found thread-bound EntityManager [SessionImpl(1306704476<open>)] for JPA transaction -2024-08-08 00:49:15 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-08 00:49:15 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:49:15 - begin -2024-08-08 00:49:15 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@8e02d84] -2024-08-08 00:49:15 - Found thread-bound EntityManager [SessionImpl(1306704476<open>)] for JPA transaction -2024-08-08 00:49:15 - Participating in existing transaction -2024-08-08 00:49:15 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-08 00:49:15 - Executing identity-insert immediately -2024-08-08 00:49:15 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-08 00:49:15 - Initializer list is empty -2024-08-08 00:49:15 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@2a4c2b27 -2024-08-08 00:49:15 - Extracted JDBC value [0] - [3] -2024-08-08 00:49:15 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@2c3e46b -2024-08-08 00:49:15 - Initiating transaction commit -2024-08-08 00:49:15 - Committing JPA transaction on EntityManager [SessionImpl(1306704476<open>)] -2024-08-08 00:49:15 - committing -2024-08-08 00:49:15 - Processing flush-time cascades -2024-08-08 00:49:15 - Dirty checking collections -2024-08-08 00:49:15 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-08 00:49:15 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-08 00:49:15 - Listing entities: -2024-08-08 00:49:15 - server.haengdong.domain.event.Event{password=0987, name=토다리, id=3, token=aa1b180c-c2c8-4110-a9a3-45f4b056c4f6} -2024-08-08 00:49:15 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:49:15 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:49:15 - Writing [EventResponse[eventId=aa1b180c-c2c8-4110-a9a3-45f4b056c4f6]] -2024-08-08 00:49:15 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:49:15 - Completed 200 OK -2024-08-08 00:49:27 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:49:27 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:49:35 - OPTIONS "/api/events/aa1b180c-c2c8-4110-a9a3-45f4b056c4f6/member-actions", parameters={} -2024-08-08 00:49:35 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-08 00:49:35 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:49:35 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:49:35 - Completed 200 OK -2024-08-08 00:49:35 - POST "/api/events/aa1b180c-c2c8-4110-a9a3-45f4b056c4f6/member-actions", parameters={} -2024-08-08 00:49:35 - Mapped to server.haengdong.presentation.MemberActionController#saveMemberAction(String, MemberActionsSaveRequest) -2024-08-08 00:49:35 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#authenticationException() -2024-08-08 00:49:35 - Using 'application/json', given [*/*] and supported [application/json, application/*+json] -2024-08-08 00:49:35 - Writing [ErrorResponse[code=A_001, message=인증에 실패했습니다.]] -2024-08-08 00:49:35 - Resolved [server.haengdong.exception.AuthenticationException] -2024-08-08 00:49:35 - Completed 401 UNAUTHORIZED -2024-08-08 00:49:57 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:49:57 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:50:27 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:50:27 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:50:44 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-08 00:50:44 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Thu Aug 08 00:45:56 KST 2024 -2024-08-08 00:50:44 - Stopping beans in phase 2147483647 -2024-08-08 00:50:44 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-08 00:50:44 - Stopping beans in phase 2147482623 -2024-08-08 00:50:44 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-08 00:50:44 - Stopping beans in phase 2147481599 -2024-08-08 00:50:44 - Bean 'webServerStartStop' completed its stop procedure -2024-08-08 00:50:44 - Stopping beans in phase -2147483647 -2024-08-08 00:50:44 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-08 00:50:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-08 00:50:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-08 00:50:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-08 00:50:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-08 00:50:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-08 00:50:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-08 00:50:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-08 00:50:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-08 00:50:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-08 00:50:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-08 00:50:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-08 00:50:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-08 00:50:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-08 00:50:44 - Unregistering JMX-exposed beans on shutdown -2024-08-08 00:50:44 - Unregistering JMX-exposed beans -2024-08-08 00:50:44 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-08 00:50:44 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 00:50:44 - HHH000031: Closing -2024-08-08 00:50:44 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@43538ee4] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@467e7793] -2024-08-08 00:50:44 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-08 00:50:44 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-08 00:50:44 - HikariPool-1 - Shutdown initiated... -2024-08-08 00:50:44 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:50:44 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:50:44 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:50:44 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:50:44 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:50:44 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:50:44 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:50:44 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:50:44 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:50:44 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:50:44 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 00:50:44 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-08 00:50:44 - HikariPool-1 - Shutdown completed. -2024-08-08 00:50:44 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-08 00:51:49 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-08 00:51:49 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-08 00:51:49 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:51:49 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:51:49 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:51:49 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:51:49 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:51:49 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:51:49 - Loaded expression factory via original TCCL -2024-08-08 00:51:49 - Starting HaengdongApplication using Java 17.0.12 with PID 88457 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-08 00:51:49 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-08 00:51:49 - No active profile set, falling back to 1 default profile: "default" -2024-08-08 00:51:49 - Loading source class server.haengdong.HaengdongApplication -2024-08-08 00:51:49 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929 -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-08 00:51:49 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-08 00:51:49 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:51:49 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:51:49 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:51:49 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:51:49 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:51:49 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-08 00:51:49 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-08 00:51:49 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-08 00:51:49 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-08 00:51:49 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-08 00:51:49 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-08 00:51:49 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 00:51:49 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 00:51:49 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 00:51:49 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-08 00:51:49 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 00:51:49 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-08 00:51:49 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-08 00:51:49 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-08 00:51:49 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-08 00:51:49 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-08 00:51:49 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-08 00:51:49 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-08 00:51:49 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-08 00:51:49 - Scanning for JPA repositories in packages server.haengdong. -2024-08-08 00:51:49 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 00:51:49 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 00:51:49 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 00:51:49 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 00:51:49 - Finished Spring Data repository scanning in 15 ms. Found 4 JPA repository interfaces. -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-08 00:51:49 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-08 00:51:49 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-08 00:51:49 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 00:51:49 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-08 00:51:49 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 00:51:49 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 00:51:49 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-08 00:51:49 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-08 00:51:49 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@7f5614f9] -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-08 00:51:49 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-08 00:51:49 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 00:51:49 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-08 00:51:49 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-08 00:51:49 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-08 00:51:49 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-08 00:51:49 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-08 00:51:49 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-08 00:51:49 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:51:49 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:51:49 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-08 00:51:49 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 00:51:49 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 00:51:49 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 00:51:49 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:51:49 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:51:49 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:51:49 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-08 00:51:49 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 00:51:49 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 00:51:49 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-08 00:51:49 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-08 00:51:49 - Tomcat initialized with port 8080 (http) -2024-08-08 00:51:49 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@3be3e76c] to [INITIALIZING] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@3be3e76c] to [INITIALIZED] -2024-08-08 00:51:49 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-08 00:51:49 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-08 00:51:49 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.mapper.MapperListener@76e4212] to [INITIALIZING] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.mapper.MapperListener@76e4212] to [INITIALIZED] -2024-08-08 00:51:49 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-08 00:51:49 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-08 00:51:49 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-08 00:51:49 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-08 00:51:49 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-08 00:51:49 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-08 00:51:49 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@3be3e76c] to [STARTING_PREP] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@3be3e76c] to [STARTING] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@3be3e76c] to [STARTED] -2024-08-08 00:51:49 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-08 00:51:49 - Starting service [Tomcat] -2024-08-08 00:51:49 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-08 00:51:49 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-08 00:51:49 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-08 00:51:49 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:51:49 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:51:49 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:51:49 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:51:49 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:51:49 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-08 00:51:49 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-08 00:51:49 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-08 00:51:49 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-08 00:51:49 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-08 00:51:49 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.webresources.StandardRoot@4d69d288] to [INITIALIZING] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.webresources.StandardRoot@4d69d288] to [INITIALIZED] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.webresources.StandardRoot@4d69d288] to [STARTING_PREP] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.webresources.DirResourceSet@4dd2ef54] to [INITIALIZING] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.webresources.DirResourceSet@4dd2ef54] to [INITIALIZED] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.webresources.DirResourceSet@4dd2ef54] to [STARTING_PREP] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.webresources.DirResourceSet@4dd2ef54] to [STARTING] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.webresources.DirResourceSet@4dd2ef54] to [STARTED] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.webresources.StandardRoot@4d69d288] to [STARTING] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.webresources.StandardRoot@4d69d288] to [STARTED] -2024-08-08 00:51:49 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:51:49 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:51:49 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:51:49 - Starting this Loader -2024-08-08 00:51:49 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:51:49 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:51:49 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:51:49 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:51:49 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:51:49 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:51:49 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:51:49 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:51:49 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:51:49 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:51:49 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:51:49 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:51:49 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:51:49 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:51:49 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:51:49 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:51:49 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:51:49 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-08 00:51:49 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@642c6461] to [INITIALIZING] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@642c6461] to [INITIALIZED] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@642c6461] to [STARTING_PREP] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@642c6461] to [STARTING] -2024-08-08 00:51:49 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@642c6461] to [STARTED] -2024-08-08 00:51:49 - Initializing Spring embedded WebApplicationContext -2024-08-08 00:51:49 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-08 00:51:49 - Root WebApplicationContext: initialization completed in 633 ms -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:51:49 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 00:51:49 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-08 00:51:49 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-08 00:51:49 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:51:49 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-08 00:51:49 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:51:49 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-08 00:51:49 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:51:49 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:51:49 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:51:49 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:51:49 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-08 00:51:49 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'h2Console' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 00:51:49 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'dataSource' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-08 00:51:49 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-08 00:51:49 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:51:49 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 00:51:49 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-08 00:51:49 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-08 00:51:49 - HikariPool-1 - configuration: -2024-08-08 00:51:49 - allowPoolSuspension.............false -2024-08-08 00:51:49 - autoCommit......................true -2024-08-08 00:51:49 - catalog.........................none -2024-08-08 00:51:49 - connectionInitSql...............none -2024-08-08 00:51:49 - connectionTestQuery.............none -2024-08-08 00:51:49 - connectionTimeout...............30000 -2024-08-08 00:51:49 - dataSource......................none -2024-08-08 00:51:49 - dataSourceClassName.............none -2024-08-08 00:51:49 - dataSourceJNDI..................none -2024-08-08 00:51:49 - dataSourceProperties............{password=<masked>} -2024-08-08 00:51:49 - driverClassName................."org.h2.Driver" -2024-08-08 00:51:49 - exceptionOverrideClassName......none -2024-08-08 00:51:49 - healthCheckProperties...........{} -2024-08-08 00:51:49 - healthCheckRegistry.............none -2024-08-08 00:51:49 - idleTimeout.....................600000 -2024-08-08 00:51:49 - initializationFailTimeout.......1 -2024-08-08 00:51:49 - isolateInternalQueries..........false -2024-08-08 00:51:49 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-08 00:51:49 - keepaliveTime...................0 -2024-08-08 00:51:49 - leakDetectionThreshold..........0 -2024-08-08 00:51:49 - maxLifetime.....................1800000 -2024-08-08 00:51:49 - maximumPoolSize.................10 -2024-08-08 00:51:49 - metricRegistry..................none -2024-08-08 00:51:49 - metricsTrackerFactory...........none -2024-08-08 00:51:49 - minimumIdle.....................10 -2024-08-08 00:51:49 - password........................<masked> -2024-08-08 00:51:49 - poolName........................"HikariPool-1" -2024-08-08 00:51:49 - readOnly........................false -2024-08-08 00:51:49 - registerMbeans..................false -2024-08-08 00:51:49 - scheduledExecutor...............none -2024-08-08 00:51:49 - schema..........................none -2024-08-08 00:51:49 - threadFactory...................internal -2024-08-08 00:51:49 - transactionIsolation............default -2024-08-08 00:51:49 - username........................"sa" -2024-08-08 00:51:49 - validationTimeout...............5000 -2024-08-08 00:51:49 - HikariPool-1 - Starting... -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:62601] -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 84 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:50 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:50 - [javax.management.remote.rmi.RMIConnectionImpl@44f6d79e: connectionId=rmi://127.0.0.1 1] closing. -2024-08-08 00:51:50 - [javax.management.remote.rmi.RMIConnectionImpl@44f6d79e: connectionId=rmi://127.0.0.1 1] closed. -2024-08-08 00:51:50 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-08 00:51:50 - HikariPool-1 - Start completed. -2024-08-08 00:51:50 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-08 00:51:50 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-08 00:51:50 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:51:50 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-08 00:51:50 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:51:50 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:51:50 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:51:50 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-08 00:51:50 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-08 00:51:50 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-08 00:51:50 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 00:51:50 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-08 00:51:50 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-08 00:51:50 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-08 00:51:50 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 00:51:50 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 00:51:50 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 00:51:50 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 00:51:50 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 00:51:50 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 00:51:50 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 00:51:50 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 00:51:50 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 00:51:50 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 00:51:50 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-08 00:51:50 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-08 00:51:50 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 00:51:50 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-08 00:51:50 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-08 00:51:50 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-08 00:51:50 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 00:51:50 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 00:51:50 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 00:51:50 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 00:51:50 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 00:51:50 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 00:51:50 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 00:51:50 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 00:51:50 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 00:51:50 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 00:51:50 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-08 00:51:50 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-08 00:51:50 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 00:51:50 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 00:51:50 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 00:51:50 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@4a4b288a] to [INITIALIZING] -2024-08-08 00:51:50 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@4a4b288a] to [INITIALIZED] -2024-08-08 00:51:50 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@4a4b288a] to [STARTING_PREP] -2024-08-08 00:51:50 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@4a4b288a] to [STARTING] -2024-08-08 00:51:50 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@4a4b288a] to [STARTED] -2024-08-08 00:51:50 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 00:51:50 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 00:51:50 - Filter 'requestContextFilter' configured for use -2024-08-08 00:51:50 - Filter 'webMvcObservationFilter' configured for use -2024-08-08 00:51:50 - Filter 'characterEncodingFilter' configured for use -2024-08-08 00:51:50 - Filter 'formContentFilter' configured for use -2024-08-08 00:51:50 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-08 00:51:50 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-08 00:51:50 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:51:50 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:51:50 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:51:50 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:51:50 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:51:50 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:51:50 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:51:50 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:51:50 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 00:51:50 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 00:51:50 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 00:51:50 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:51:50 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:51:50 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 00:51:50 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 00:51:50 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-08 00:51:50 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-08 00:51:50 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:51:50 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:51:50 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:51:50 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 00:51:50 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 00:51:50 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 00:51:50 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:51:50 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:51:50 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 00:51:50 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 00:51:50 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-08 00:51:50 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-08 00:51:50 - Setting state for [org.apache.catalina.mapper.MapperListener@76e4212] to [STARTING_PREP] -2024-08-08 00:51:50 - Setting state for [org.apache.catalina.mapper.MapperListener@76e4212] to [STARTING] -2024-08-08 00:51:50 - Registered host [localhost] -2024-08-08 00:51:50 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-08 00:51:50 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-08 00:51:50 - Register Context [] for service [StandardService[Tomcat]] -2024-08-08 00:51:50 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-08 00:51:50 - Setting state for [org.apache.catalina.mapper.MapperListener@76e4212] to [STARTED] -2024-08-08 00:51:50 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-08 00:51:50 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 00:51:50 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-08 00:51:50 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 00:51:50 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-08 00:51:50 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:51:50 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-08 00:51:50 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-08 00:51:50 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-08 00:51:50 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-08 00:51:50 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:51:50 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-08 00:51:50 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-08 00:51:50 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-08 00:51:50 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-08 00:51:50 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-08 00:51:50 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-08 00:51:50 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-08 00:51:50 - HHH000206: 'hibernate.properties' not found -2024-08-08 00:51:50 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-08 00:51:50 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-08 00:51:50 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-08 00:51:50 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-08 00:51:50 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 00:51:50 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 00:51:50 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-08 00:51:50 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-08 00:51:50 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-08 00:51:50 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 00:51:50 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-08 00:51:50 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-08 00:51:50 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 00:51:50 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-08 00:51:50 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-08 00:51:50 - HHH000026: Second-level cache disabled -2024-08-08 00:51:50 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-08 00:51:50 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-08 00:51:50 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 00:51:50 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 00:51:50 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 00:51:50 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:51:50 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 00:51:50 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-08 00:51:50 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-08 00:51:50 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 00:51:50 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 00:51:50 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 00:51:50 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 00:51:50 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 00:51:50 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 00:51:50 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 00:51:50 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 00:51:50 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-08 00:51:50 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-08 00:51:50 - Adding type registration image -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-08 00:51:50 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-08 00:51:50 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-08 00:51:50 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-08 00:51:50 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 00:51:50 - Adding type registration short -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 00:51:50 - Adding type registration short -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 00:51:50 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 00:51:50 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 00:51:50 - Adding type registration int -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 00:51:50 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 00:51:50 - Adding type registration long -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-08 00:51:50 - Adding type registration long -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-08 00:51:50 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-08 00:51:50 - Adding type registration float -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 00:51:50 - Adding type registration float -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 00:51:50 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 00:51:50 - Adding type registration double -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 00:51:50 - Adding type registration double -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 00:51:50 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 00:51:50 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-08 00:51:50 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-08 00:51:50 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-08 00:51:50 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-08 00:51:50 - Adding type registration character -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 00:51:50 - Adding type registration char -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 00:51:50 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 00:51:50 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-08 00:51:50 - Adding type registration string -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-08 00:51:50 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-08 00:51:50 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 00:51:50 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 00:51:50 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 00:51:50 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 00:51:50 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 00:51:50 - Adding type registration text -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 00:51:50 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 00:51:50 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-08 00:51:50 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-08 00:51:50 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-08 00:51:50 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-08 00:51:50 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-08 00:51:50 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-08 00:51:50 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-08 00:51:50 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-08 00:51:50 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-08 00:51:50 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 00:51:50 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 00:51:50 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 00:51:50 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-08 00:51:50 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-08 00:51:50 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-08 00:51:50 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-08 00:51:50 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 00:51:50 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 00:51:50 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 00:51:50 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 00:51:50 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-08 00:51:50 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-08 00:51:50 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-08 00:51:50 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-08 00:51:50 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-08 00:51:50 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-08 00:51:50 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-08 00:51:50 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-08 00:51:50 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-08 00:51:50 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-08 00:51:50 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-08 00:51:50 - Adding type registration date -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-08 00:51:50 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-08 00:51:50 - Adding type registration time -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-08 00:51:50 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-08 00:51:50 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-08 00:51:50 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-08 00:51:50 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-08 00:51:50 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-08 00:51:50 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-08 00:51:50 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-08 00:51:50 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-08 00:51:50 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-08 00:51:50 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-08 00:51:50 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-08 00:51:50 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-08 00:51:50 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-08 00:51:50 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-08 00:51:50 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-08 00:51:50 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-08 00:51:50 - Adding type registration class -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-08 00:51:50 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-08 00:51:50 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-08 00:51:50 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-08 00:51:50 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-08 00:51:50 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@2c5708e7 -2024-08-08 00:51:50 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@2c5708e7 -2024-08-08 00:51:50 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-08 00:51:50 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-08 00:51:50 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@4e26564d -2024-08-08 00:51:50 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@4e26564d -2024-08-08 00:51:50 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@42238078 -2024-08-08 00:51:50 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@42238078 -2024-08-08 00:51:50 - Adding type registration url -> org.hibernate.type.BasicTypeReference@5627b8eb -2024-08-08 00:51:50 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@5627b8eb -2024-08-08 00:51:50 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@49fe0bcd -2024-08-08 00:51:50 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@3516b881 -2024-08-08 00:51:50 - Adding type registration object -> org.hibernate.type.JavaObjectType@4449b273 -2024-08-08 00:51:50 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@4449b273 -2024-08-08 00:51:50 - Adding type registration null -> org.hibernate.type.NullType@2932e15f -2024-08-08 00:51:50 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@3d98729a -2024-08-08 00:51:50 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@2375a976 -2024-08-08 00:51:50 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@4bc21e34 -2024-08-08 00:51:50 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@7544260a -2024-08-08 00:51:50 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@bb6869a -2024-08-08 00:51:50 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@506b083 -2024-08-08 00:51:50 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@5eee3da9 -2024-08-08 00:51:50 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@ace2408 -2024-08-08 00:51:50 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@32646ecf] into BootstrapContext; was [null] -2024-08-08 00:51:50 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@32646ecf) [was null] -2024-08-08 00:51:50 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@b6136eb] into BootstrapContext; was [null] -2024-08-08 00:51:50 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@2cce10bc] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@73234691] -2024-08-08 00:51:50 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-08 00:51:50 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-08 00:51:50 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-08 00:51:50 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-08 00:51:50 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-08 00:51:50 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@32646ecf] -2024-08-08 00:51:50 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@32646ecf] -2024-08-08 00:51:50 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 00:51:50 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 00:51:50 - JDBC version : 4.2 -2024-08-08 00:51:50 - HikariPool-1 - After adding stats (total=5, active=1, idle=4, waiting=0) -2024-08-08 00:51:50 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-08 00:51:50 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-08 00:51:50 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-08 00:51:50 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-08 00:51:50 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-08 00:51:50 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-08 00:51:50 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 00:51:50 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 00:51:50 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-08 00:51:50 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-08 00:51:50 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 00:51:50 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 00:51:50 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@727f36dd] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@2c70a1de] -2024-08-08 00:51:50 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-08 00:51:50 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-08 00:51:50 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-08 00:51:50 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-08 00:51:50 - Import with entity name Action -2024-08-08 00:51:50 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-08 00:51:50 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:51:50 - Binding column: AnnotatedColumn() -2024-08-08 00:51:50 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:51:50 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:51:50 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:51:50 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-08 00:51:50 - building BasicValue for id -2024-08-08 00:51:50 - Skipping column re-registration: action.id -2024-08-08 00:51:50 - Building property id -2024-08-08 00:51:50 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:51:50 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:51:50 - Binding column: AnnotatedColumn() -2024-08-08 00:51:50 - Building property event -2024-08-08 00:51:50 - Binding column: AnnotatedColumn() -2024-08-08 00:51:50 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 00:51:50 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-08 00:51:50 - building BasicValue for sequence -2024-08-08 00:51:50 - Skipping column re-registration: action.sequence -2024-08-08 00:51:50 - Building property sequence -2024-08-08 00:51:50 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:51:50 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-08 00:51:50 - Import with entity name BillAction -2024-08-08 00:51:50 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-08 00:51:50 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:51:50 - Binding column: AnnotatedColumn() -2024-08-08 00:51:50 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:51:50 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:51:50 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:51:50 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-08 00:51:50 - building BasicValue for id -2024-08-08 00:51:50 - Skipping column re-registration: bill_action.id -2024-08-08 00:51:50 - Building property id -2024-08-08 00:51:50 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:51:50 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:51:50 - Binding column: AnnotatedColumn() -2024-08-08 00:51:50 - Building property action -2024-08-08 00:51:50 - Binding column: AnnotatedColumn() -2024-08-08 00:51:50 - MetadataSourceProcessor property price with lazy=false -2024-08-08 00:51:50 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-08 00:51:50 - building BasicValue for price -2024-08-08 00:51:50 - Skipping column re-registration: bill_action.price -2024-08-08 00:51:50 - Building property price -2024-08-08 00:51:50 - Binding column: AnnotatedColumn() -2024-08-08 00:51:50 - MetadataSourceProcessor property title with lazy=false -2024-08-08 00:51:50 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-08 00:51:50 - building BasicValue for title -2024-08-08 00:51:50 - Skipping column re-registration: bill_action.title -2024-08-08 00:51:50 - Building property title -2024-08-08 00:51:50 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:51:50 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-08 00:51:50 - Import with entity name MemberAction -2024-08-08 00:51:50 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-08 00:51:50 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:51:50 - Binding column: AnnotatedColumn() -2024-08-08 00:51:50 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:51:50 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:51:50 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:51:50 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-08 00:51:50 - building BasicValue for id -2024-08-08 00:51:50 - Skipping column re-registration: member_action.id -2024-08-08 00:51:50 - Building property id -2024-08-08 00:51:50 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:51:50 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:51:50 - Binding column: AnnotatedColumn() -2024-08-08 00:51:50 - Building property action -2024-08-08 00:51:50 - Binding column: AnnotatedColumn() -2024-08-08 00:51:50 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-08 00:51:50 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-08 00:51:50 - building BasicValue for memberGroupId -2024-08-08 00:51:50 - Skipping column re-registration: member_action.member_group_id -2024-08-08 00:51:50 - Building property memberGroupId -2024-08-08 00:51:50 - Binding column: AnnotatedColumn() -2024-08-08 00:51:50 - MetadataSourceProcessor property memberName with lazy=false -2024-08-08 00:51:50 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-08 00:51:50 - building BasicValue for memberName -2024-08-08 00:51:50 - Skipping column re-registration: member_action.member_name -2024-08-08 00:51:50 - Building property memberName -2024-08-08 00:51:50 - Binding column: AnnotatedColumn() -2024-08-08 00:51:50 - MetadataSourceProcessor property status with lazy=false -2024-08-08 00:51:50 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-08 00:51:50 - building BasicValue for status -2024-08-08 00:51:50 - Skipping column re-registration: member_action.status -2024-08-08 00:51:50 - Building property status -2024-08-08 00:51:50 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 00:51:50 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-08 00:51:50 - Import with entity name Event -2024-08-08 00:51:50 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-08 00:51:50 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:51:50 - Binding column: AnnotatedColumn() -2024-08-08 00:51:50 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:51:50 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:51:50 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:51:50 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-08 00:51:50 - building BasicValue for id -2024-08-08 00:51:50 - Skipping column re-registration: event.id -2024-08-08 00:51:50 - Building property id -2024-08-08 00:51:50 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:51:50 - Binding column: AnnotatedColumn() -2024-08-08 00:51:50 - MetadataSourceProcessor property name with lazy=false -2024-08-08 00:51:50 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-08 00:51:50 - building BasicValue for name -2024-08-08 00:51:50 - Skipping column re-registration: event.name -2024-08-08 00:51:50 - Building property name -2024-08-08 00:51:50 - Binding column: AnnotatedColumn() -2024-08-08 00:51:50 - MetadataSourceProcessor property password with lazy=false -2024-08-08 00:51:50 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-08 00:51:50 - building BasicValue for password -2024-08-08 00:51:50 - Skipping column re-registration: event.password -2024-08-08 00:51:50 - Building property password -2024-08-08 00:51:50 - Binding column: AnnotatedColumn() -2024-08-08 00:51:50 - MetadataSourceProcessor property token with lazy=false -2024-08-08 00:51:50 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-08 00:51:50 - building BasicValue for token -2024-08-08 00:51:50 - Skipping column re-registration: event.token -2024-08-08 00:51:50 - Building property token -2024-08-08 00:51:50 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 00:51:50 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-08 00:51:50 - Import with entity name EventStep -2024-08-08 00:51:50 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-08 00:51:50 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 00:51:50 - Binding column: AnnotatedColumn() -2024-08-08 00:51:50 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:51:50 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:51:50 - MetadataSourceProcessor property id with lazy=false -2024-08-08 00:51:50 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-08 00:51:50 - building BasicValue for id -2024-08-08 00:51:50 - Skipping column re-registration: event_step.id -2024-08-08 00:51:50 - Building property id -2024-08-08 00:51:50 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 00:51:50 - Binding column: AnnotatedJoinColumn() -2024-08-08 00:51:50 - Binding column: AnnotatedColumn() -2024-08-08 00:51:50 - Building property event -2024-08-08 00:51:50 - Binding column: AnnotatedColumn() -2024-08-08 00:51:50 - MetadataSourceProcessor property name with lazy=false -2024-08-08 00:51:50 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-08 00:51:50 - building BasicValue for name -2024-08-08 00:51:50 - Skipping column re-registration: event_step.name -2024-08-08 00:51:50 - Building property name -2024-08-08 00:51:50 - Binding column: AnnotatedColumn() -2024-08-08 00:51:50 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 00:51:50 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-08 00:51:50 - building BasicValue for sequence -2024-08-08 00:51:50 - Skipping column re-registration: event_step.sequence -2024-08-08 00:51:50 - Building property sequence -2024-08-08 00:51:50 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 00:51:50 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:51:50 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 00:51:50 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:51:50 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-08 00:51:50 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-08 00:51:50 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:51:50 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-08 00:51:50 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-08 00:51:50 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-08 00:51:50 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:51:50 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 00:51:50 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-08 00:51:50 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-08 00:51:50 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 00:51:50 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 00:51:50 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 00:51:50 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-08 00:51:50 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-08 00:51:50 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-08 00:51:50 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-08 00:51:50 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-08 00:51:50 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-08 00:51:50 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-08 00:51:50 - Building session factory -2024-08-08 00:51:50 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-08 00:51:50 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:51:50 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@4a094f90, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@1b5623b4, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1037830524874286319, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=88457, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1037830524874286319, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@8c34631, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-08 00:51:50 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-08 00:51:50 - Session factory constructed with filter configurations : {} -2024-08-08 00:51:50 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:51:50 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:51:50 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:51:50 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:51:50 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:51:50 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:51:50 - Loaded expression factory via original TCCL -2024-08-08 00:51:50 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:51:50 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:51:50 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:51:50 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:51:50 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:51:50 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:51:50 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:51:50 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:51:50 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:51:50 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:51:50 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:51:50 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:51:50 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:51:50 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:51:50 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:51:50 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:51:50 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@4cd1716d] under count; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@24ee6faa] under every; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@6d4f266] under any; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@33214124] under sinh; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2d3768ce] under cosh; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2a9ea03f] under tanh; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1231f25c] under pi; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2ba0b95f] under log; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-08 00:51:50 - Registering alternate key : length -> character_length -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@7c8a91e2] under position; prior registration was null -2024-08-08 00:51:50 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-08 00:51:50 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@4a10c019] under overlay; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@639cb0c8] under trim; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@3e24bab6] under cast; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2ba9ed19] under collate; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@641cea11] under extract; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@192ecf8] under ifnull; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@7c680fe1] under pad; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@4419cd6e] under str; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@5f81507a] under format; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@299dd381] under timestampadd; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@64f613da] under timestampdiff; prior registration was null -2024-08-08 00:51:50 - Registering alternate key : dateadd -> timestampadd -2024-08-08 00:51:50 - Registering alternate key : datediff -> timestampdiff -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@4601a148] under current_date; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@4e210016] under current_time; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2fc40856] under current_timestamp; prior registration was null -2024-08-08 00:51:50 - Registering alternate key : current date -> current_date -2024-08-08 00:51:50 - Registering alternate key : current time -> current_time -2024-08-08 00:51:50 - Registering alternate key : current timestamp -> current_timestamp -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5543d800] under local_date; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1e033801] under local_time; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@58e4aa67] under local_datetime; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@57ed8f95] under offset_datetime; prior registration was null -2024-08-08 00:51:50 - Registering alternate key : local date -> local_date -2024-08-08 00:51:50 - Registering alternate key : local time -> local_time -2024-08-08 00:51:50 - Registering alternate key : local datetime -> local_datetime -2024-08-08 00:51:50 - Registering alternate key : offset datetime -> offset_datetime -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1c25deb0] under instant; prior registration was null -2024-08-08 00:51:50 - Registering alternate key : current_instant -> instant -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@6fe337a5] under sql; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@7d60bd5a] under count; prior registration was org.hibernate.dialect.function.CountFunction@4cd1716d -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@1d2d793d] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1231f25c -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@57fec63f] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-08 00:51:50 - Registering alternate key : day -> day_of_month -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@1e033801 -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@58e4aa67 -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@73230721] under trunc; prior registration was null -2024-08-08 00:51:50 - Registering alternate key : truncate -> trunc -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@10bcbbce] under date_trunc; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-08 00:51:50 - Registering alternate key : chr -> char -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@27234b7c] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@7c8a91e2 -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@125a8ab6] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-08 00:51:50 - Registering alternate key : every -> bool_and -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-08 00:51:50 - Registering alternate key : any -> bool_or -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@792b9dd3] under format; prior registration was org.hibernate.dialect.function.FormatFunction@5f81507a -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@3fdede3a] under listagg; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@533e8807] under mode; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@322eb1a] under percentile_cont; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@2b4ba2d9] under percentile_disc; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@2c6efee3] under rank; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@57ac236a] under dense_rank; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@4542af89] under percent_rank; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@3163e03b] under cume_dist; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@68fc636a] under array; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@18301763] under array_list; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@7d7f966f] under array_agg; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@5a9ef32e] under array_position; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@752ffce3] under array_positions; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@67baa05] under array_positions_list; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5b5a89d1] under array_length; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@3f78a5ed] under array_concat; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@4edd8a0a] under array_prepend; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@1a73f3d1] under array_append; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@5c0d3715] under array_contains; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@5d67bf4d] under array_contains_nullable; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@64921450] under array_overlaps; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@18918d70] under array_overlaps_nullable; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@13ae87a6] under array_get; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@7f584d0c] under array_set; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@5ef7ae2f] under array_remove; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@4b552b13] under array_remove_index; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@524dd373] under array_slice; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@b791e6e] under array_replace; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@583b4af4] under array_trim; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@77648321] under array_fill; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@43201f84] under array_fill_list; prior registration was null -2024-08-08 00:51:50 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@58fbfefb] under array_to_string; prior registration was null -2024-08-08 00:51:50 - abs(NUMERIC arg) -2024-08-08 00:51:50 - Double acos(NUMERIC arg) -2024-08-08 00:51:50 - Boolean any(BOOLEAN predicate) -2024-08-08 00:51:50 - array( ... ) -2024-08-08 00:51:50 - array_agg(arg) -2024-08-08 00:51:50 - array_append( ... ) -2024-08-08 00:51:50 - array_concat( ... ) -2024-08-08 00:51:50 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 00:51:50 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 00:51:50 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-08 00:51:50 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-08 00:51:50 - array_get(ARRAY array, INTEGER index) -2024-08-08 00:51:50 - Integer array_length(ARRAY array) -2024-08-08 00:51:50 - array_list( ... ) -2024-08-08 00:51:50 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-08 00:51:50 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-08 00:51:50 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-08 00:51:50 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-08 00:51:50 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-08 00:51:50 - array_prepend( ... ) -2024-08-08 00:51:50 - array_remove( ... ) -2024-08-08 00:51:50 - array_remove_index( ... ) -2024-08-08 00:51:50 - array_replace( ... ) -2024-08-08 00:51:50 - array_set( ... ) -2024-08-08 00:51:50 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-08 00:51:50 - String array_to_string( ... ) -2024-08-08 00:51:50 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-08 00:51:50 - Integer ascii(STRING arg) -2024-08-08 00:51:50 - Double asin(NUMERIC arg) -2024-08-08 00:51:50 - Double atan(NUMERIC arg) -2024-08-08 00:51:50 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-08 00:51:50 - avg(NUMERIC arg) -2024-08-08 00:51:50 - bit_and(arg) -2024-08-08 00:51:50 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-08 00:51:50 - bit_or(arg) -2024-08-08 00:51:50 - bitand(arg0, arg1) -2024-08-08 00:51:50 - bitnot(arg) -2024-08-08 00:51:50 - bitor(arg0, arg1) -2024-08-08 00:51:50 - bitxor(arg0, arg1) -2024-08-08 00:51:50 - Boolean bool_and(BOOLEAN predicate) -2024-08-08 00:51:50 - Boolean bool_or(BOOLEAN predicate) -2024-08-08 00:51:50 - cast(arg as Type) -2024-08-08 00:51:50 - ceiling(NUMERIC arg) -2024-08-08 00:51:50 - Character char(INTEGER arg) -2024-08-08 00:51:50 - Integer character_length(STRING_OR_CLOB arg) -2024-08-08 00:51:50 - Character chr(INTEGER arg) -2024-08-08 00:51:50 - coalesce(arg0[, arg1[, ...]]) -2024-08-08 00:51:50 - String collate(STRING string as COLLATION collation) -2024-08-08 00:51:50 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-08 00:51:50 - Double cos(NUMERIC arg) -2024-08-08 00:51:50 - Double cosh(NUMERIC arg) -2024-08-08 00:51:50 - Double cot(NUMERIC arg) -2024-08-08 00:51:50 - Long count([distinct ]{arg|*}) -2024-08-08 00:51:50 - Double cume_dist([arg0[, ...]]) -2024-08-08 00:51:50 - Date curdate() -2024-08-08 00:51:50 - Date current date -2024-08-08 00:51:50 - Time current time -2024-08-08 00:51:50 - Timestamp current timestamp -2024-08-08 00:51:50 - Date current_date -2024-08-08 00:51:50 - Instant current_instant -2024-08-08 00:51:50 - Time current_time -2024-08-08 00:51:50 - Timestamp current_timestamp -2024-08-08 00:51:50 - Time curtime() -2024-08-08 00:51:50 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-08 00:51:50 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 00:51:50 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 00:51:50 - Integer day(DATE arg) -2024-08-08 00:51:50 - Integer day_of_month(DATE arg) -2024-08-08 00:51:50 - Integer day_of_week(DATE arg) -2024-08-08 00:51:50 - Integer day_of_year(DATE arg) -2024-08-08 00:51:50 - String dayname(DATE arg) -2024-08-08 00:51:50 - Double degrees(NUMERIC arg) -2024-08-08 00:51:50 - Long dense_rank([arg0[, ...]]) -2024-08-08 00:51:50 - Boolean every(BOOLEAN predicate) -2024-08-08 00:51:50 - Double exp(NUMERIC arg) -2024-08-08 00:51:50 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-08 00:51:50 - first_valueANY value -2024-08-08 00:51:50 - floor(NUMERIC arg) -2024-08-08 00:51:50 - String format(TEMPORAL datetime as STRING pattern) -2024-08-08 00:51:50 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 00:51:50 - Integer hour(TIME arg) -2024-08-08 00:51:50 - ifnull(arg0, arg1) -2024-08-08 00:51:50 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-08 00:51:50 - Instant instant -2024-08-08 00:51:50 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-08 00:51:50 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-08 00:51:50 - last_valueANY value -2024-08-08 00:51:50 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-08 00:51:50 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 00:51:50 - String left(STRING string, INTEGER length) -2024-08-08 00:51:50 - Integer length(STRING_OR_CLOB arg) -2024-08-08 00:51:50 - String listagg(STRING arg0, STRING arg1) -2024-08-08 00:51:50 - Double ln(NUMERIC arg) -2024-08-08 00:51:50 - LocalDate local date -2024-08-08 00:51:50 - LocalDateTime local datetime -2024-08-08 00:51:50 - LocalTime local time -2024-08-08 00:51:50 - LocalDate local_date -2024-08-08 00:51:50 - LocalDateTime local_datetime -2024-08-08 00:51:50 - LocalTime local_time -2024-08-08 00:51:50 - Time localtime -2024-08-08 00:51:50 - Timestamp localtimestamp -2024-08-08 00:51:50 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-08 00:51:50 - Double log(NUMERIC base, NUMERIC arg) -2024-08-08 00:51:50 - Double log10(NUMERIC arg) -2024-08-08 00:51:50 - String lower(STRING string) -2024-08-08 00:51:50 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 00:51:50 - String ltrim(STRING string) -2024-08-08 00:51:50 - max(COMPARABLE arg) -2024-08-08 00:51:50 - Double median(NUMERIC arg) -2024-08-08 00:51:50 - Integer microsecond(TIME arg) -2024-08-08 00:51:50 - min(COMPARABLE arg) -2024-08-08 00:51:50 - Integer minute(TIME arg) -2024-08-08 00:51:50 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-08 00:51:50 - mode() -2024-08-08 00:51:50 - Integer month(DATE arg) -2024-08-08 00:51:50 - String monthname(DATE arg) -2024-08-08 00:51:50 - Timestamp now() -2024-08-08 00:51:50 - nth_valueANY value, INTEGER nth -2024-08-08 00:51:50 - nullif(arg0, arg1) -2024-08-08 00:51:50 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-08 00:51:50 - OffsetDateTime offset datetime -2024-08-08 00:51:50 - OffsetDateTime offset_datetime -2024-08-08 00:51:50 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-08 00:51:50 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-08 00:51:50 - Double percent_rank([arg0[, ...]]) -2024-08-08 00:51:50 - percentile_cont(NUMERIC arg) -2024-08-08 00:51:50 - percentile_disc(NUMERIC arg) -2024-08-08 00:51:50 - Double pi -2024-08-08 00:51:50 - Integer position(STRING pattern in STRING string) -2024-08-08 00:51:50 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-08 00:51:50 - Integer quarter(DATE arg) -2024-08-08 00:51:50 - Double radians(NUMERIC arg) -2024-08-08 00:51:50 - Double rand([INTEGER seed]) -2024-08-08 00:51:50 - Long rank([arg0[, ...]]) -2024-08-08 00:51:50 - String repeat(STRING string, INTEGER times) -2024-08-08 00:51:50 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-08 00:51:50 - String right(STRING string, INTEGER length) -2024-08-08 00:51:50 - round(NUMERIC number[, INTEGER places]) -2024-08-08 00:51:50 - Long row_number() -2024-08-08 00:51:50 - Long rownum() -2024-08-08 00:51:50 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 00:51:50 - String rtrim(STRING string) -2024-08-08 00:51:50 - Integer second(TIME arg) -2024-08-08 00:51:50 - Integer sign(NUMERIC arg) -2024-08-08 00:51:50 - Double sin(NUMERIC arg) -2024-08-08 00:51:50 - Double sinh(NUMERIC arg) -2024-08-08 00:51:50 - String soundex(arg) -2024-08-08 00:51:50 - String space(INTEGER arg) -2024-08-08 00:51:50 - Object sql -2024-08-08 00:51:50 - Double sqrt(NUMERIC arg) -2024-08-08 00:51:50 - Double stddev_pop(NUMERIC arg) -2024-08-08 00:51:50 - Double stddev_samp(NUMERIC arg) -2024-08-08 00:51:50 - String str(arg) -2024-08-08 00:51:50 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-08 00:51:50 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-08 00:51:50 - sum(arg) -2024-08-08 00:51:50 - Timestamp sysdate -2024-08-08 00:51:50 - Double tan(NUMERIC arg) -2024-08-08 00:51:50 - Double tanh(NUMERIC arg) -2024-08-08 00:51:50 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 00:51:50 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 00:51:50 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-08 00:51:50 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-08 00:51:50 - trunc( ... ) -2024-08-08 00:51:50 - truncate( ... ) -2024-08-08 00:51:50 - String upper(STRING string) -2024-08-08 00:51:50 - Double var_pop(NUMERIC arg) -2024-08-08 00:51:50 - Double var_samp(NUMERIC arg) -2024-08-08 00:51:50 - Integer week(DATE arg) -2024-08-08 00:51:50 - Integer year(DATE arg) -2024-08-08 00:51:50 - Starting QueryInterpretationCache(2048) -2024-08-08 00:51:50 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:51:50 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 00:51:50 - Configured EntityCopyObserver strategy: disallow -2024-08-08 00:51:50 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 00:51:50 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 82 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 82 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 82 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 84 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 82 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 82 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:50 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 82 -2024-08-08 00:51:50 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:50 - [javax.management.remote.rmi.RMIConnectionImpl@231a797e: connectionId=rmi://127.0.0.1 2] closing. -2024-08-08 00:51:50 - [javax.management.remote.rmi.RMIConnectionImpl@231a797e: connectionId=rmi://127.0.0.1 2] closed. -2024-08-08 00:51:50 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-08 00:51:50 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 00:51:50 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 00:51:50 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-08 00:51:50 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 00:51:50 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 00:51:50 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-08 00:51:50 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 00:51:50 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 00:51:50 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-08 00:51:50 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 00:51:50 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 00:51:50 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-08 00:51:50 - Starting post-init callbacks -2024-08-08 00:51:50 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-08 00:51:50 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-08 00:51:50 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-08 00:51:50 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-08 00:51:50 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-08 00:51:50 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-08 00:51:50 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-08 00:51:50 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-08 00:51:50 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-08 00:51:50 - Created new SQL alias : ba1_0 -2024-08-08 00:51:50 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-08 00:51:50 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2c28654e] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-08 00:51:50 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-08 00:51:50 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-08 00:51:50 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-08 00:51:50 - Version select: select id from bill_action where id=? -2024-08-08 00:51:50 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-08 00:51:50 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-08 00:51:50 - Delete (0): delete from bill_action where id=? -2024-08-08 00:51:50 - Created new SQL alias : ma1_0 -2024-08-08 00:51:50 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-08 00:51:50 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@58df2864] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-08 00:51:50 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-08 00:51:50 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-08 00:51:50 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-08 00:51:50 - Version select: select id from member_action where id=? -2024-08-08 00:51:50 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-08 00:51:50 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-08 00:51:50 - Delete (0): delete from member_action where id=? -2024-08-08 00:51:50 - Created new SQL alias : e1_0 -2024-08-08 00:51:50 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-08 00:51:50 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-08 00:51:50 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-08 00:51:50 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-08 00:51:50 - Version select: select id from event where id=? -2024-08-08 00:51:50 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-08 00:51:50 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-08 00:51:50 - Delete (0): delete from event where id=? -2024-08-08 00:51:50 - Created new SQL alias : a1_0 -2024-08-08 00:51:50 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-08 00:51:50 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1fb379e4] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-08 00:51:50 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-08 00:51:50 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-08 00:51:50 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-08 00:51:50 - Version select: select id from action where id=? -2024-08-08 00:51:50 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-08 00:51:50 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-08 00:51:50 - Delete (0): delete from action where id=? -2024-08-08 00:51:50 - Created new SQL alias : es1_0 -2024-08-08 00:51:50 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-08 00:51:50 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@67b1c3af] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-08 00:51:50 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-08 00:51:50 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-08 00:51:50 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-08 00:51:50 - Version select: select id from event_step where id=? -2024-08-08 00:51:50 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-08 00:51:50 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-08 00:51:50 - Delete (0): delete from event_step where id=? -2024-08-08 00:51:50 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-08 00:51:50 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@727f36dd] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@5ce1ec7] -2024-08-08 00:51:50 - Checking 0 named HQL queries -2024-08-08 00:51:50 - Checking 0 named SQL queries -2024-08-08 00:51:50 - - drop table if exists action cascade -2024-08-08 00:51:50 - - drop table if exists bill_action cascade -2024-08-08 00:51:50 - - drop table if exists event cascade -2024-08-08 00:51:50 - - drop table if exists event_step cascade -2024-08-08 00:51:50 - - drop table if exists member_action cascade -2024-08-08 00:51:50 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-08 00:51:50 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-08 00:51:50 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-08 00:51:50 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-08 00:51:50 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-08 00:51:50 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-08 00:51:50 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-08 00:51:50 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-08 00:51:50 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-08 00:51:50 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@6eaf6ced -2024-08-08 00:51:50 - Registering SessionFactory: edfaaf63-dee6-4522-8ae7-ae2b5c8b061b (<unnamed>) -2024-08-08 00:51:50 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-08 00:51:50 - Instantiated SessionFactory -2024-08-08 00:51:50 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'actionService' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-08 00:51:50 - Initializing JpaMetamodelMappingContext… -2024-08-08 00:51:50 - Finished initializing JpaMetamodelMappingContext -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - Statistics initialized [enabled=false] -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-08 00:51:50 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-08 00:51:50 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-08 00:51:50 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-08 00:51:50 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:51:50 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - Looking up named query BillAction.findByAction_Event -2024-08-08 00:51:50 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:51:50 - Did not find named query BillAction.findByAction_Event -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - Looking up named query BillAction.findByAction_Id -2024-08-08 00:51:50 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:51:50 - Did not find named query BillAction.findByAction_Id -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 00:51:50 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:51:50 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 00:51:50 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:51:50 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-08 00:51:50 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:51:50 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-08 00:51:50 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 00:51:50 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:51:50 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 00:51:50 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:51:50 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-08 00:51:50 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 00:51:50 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-08 00:51:50 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 00:51:50 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:51:50 - Did not find named query MemberAction.findAllByEvent.count -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-08 00:51:50 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:51:50 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(768173459294208)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(768173459294208)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(768173459294208)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(768173459294208)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(768173459294208).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:51:50 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:51:50 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-08 00:51:50 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:51:50 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:51:50 - Looking up named query MemberAction.findByAction -2024-08-08 00:51:50 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:51:50 - Did not find named query MemberAction.findByAction -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'eventRepository' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - Looking up named query Event.findByToken -2024-08-08 00:51:50 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:51:50 - Did not find named query Event.findByToken -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-08 00:51:50 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-08 00:51:50 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:51:50 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'billActionService' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'actionRepository' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:51:50 - Did not find named query Action.findLastByEvent.count -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-08 00:51:50 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 00:51:50 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 00:51:50 - Looking up named query Action.findByIdAndEvent -2024-08-08 00:51:50 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 00:51:50 - Did not find named query Action.findByIdAndEvent -2024-08-08 00:51:50 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 00:51:50 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-08 00:51:50 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-08 00:51:50 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-08 00:51:50 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'eventService' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-08 00:51:50 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-08 00:51:50 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-08 00:51:50 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-08 00:51:50 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-08 00:51:50 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'memberActionService' -2024-08-08 00:51:50 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-08 00:51:50 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-08 00:51:50 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-08 00:51:50 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 00:51:50 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 00:51:50 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-08 00:51:50 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'actionController' -2024-08-08 00:51:50 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'billActionController' -2024-08-08 00:51:50 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'eventController' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'authService' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 00:51:50 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-08 00:51:50 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-08 00:51:50 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'memberActionController' -2024-08-08 00:51:50 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-08 00:51:50 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-08 00:51:51 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-08 00:51:51 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:51:51 - Loaded expression factory via original TCCL -2024-08-08 00:51:51 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-08 00:51:51 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-08 00:51:51 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 00:51:51 - Trying to load META-INF/validation.xml via user class loader -2024-08-08 00:51:51 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 00:51:51 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 00:51:51 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 00:51:51 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 00:51:51 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 00:51:51 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 00:51:51 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 00:51:51 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 00:51:51 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 00:51:51 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 00:51:51 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'error' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-08 00:51:51 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-08 00:51:51 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-08 00:51:51 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-08 00:51:51 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-08 00:51:51 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:51:51 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:51:51 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-08 00:51:51 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:51:51 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:51:51 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'localeResolver' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'themeResolver' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-08 00:51:51 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:51:51 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:51:51 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:51:51 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-08 00:51:51 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-08 00:51:51 - - s.h.p.EventController: - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 82 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 84 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 00:51:51 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - [javax.management.remote.rmi.RMIConnectionImpl@397aaa87: connectionId=rmi://127.0.0.1 3] closing. -2024-08-08 00:51:51 - [javax.management.remote.rmi.RMIConnectionImpl@397aaa87: connectionId=rmi://127.0.0.1 3] closed. -2024-08-08 00:51:51 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-08 00:51:51 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:51:51 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-08 00:51:51 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:51:51 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:51:51 - 'beanNameHandlerMapping' {} -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-08 00:51:51 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:51:51 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'messageConverters' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-08 00:51:51 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-08 00:51:51 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:51:51 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:51:51 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'pageModule' -2024-08-08 00:51:51 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:51:51 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 00:51:51 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-08 00:51:51 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-08 00:51:51 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:51:51 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 00:51:51 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 00:51:51 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-08 00:51:51 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:51:51 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-08 00:51:51 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'sortResolver' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-08 00:51:51 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-08 00:51:51 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-08 00:51:51 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-08 00:51:51 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-08 00:51:51 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-08 00:51:51 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:51:51 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-08 00:51:51 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 00:51:51 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-08 00:51:51 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'transactionManager' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-08 00:51:51 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-08 00:51:51 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:51:51 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-08 00:51:51 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:51:51 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-08 00:51:51 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-08 00:51:51 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-08 00:51:51 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-08 00:51:51 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-08 00:51:51 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-08 00:51:51 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-08 00:51:51 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-08 00:51:51 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-08 00:51:51 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-08 00:51:51 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-08 00:51:51 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-08 00:51:51 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@38875e7d' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-08 00:51:51 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:51:51 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-08 00:51:51 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-08 00:51:51 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-08 00:51:51 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-08 00:51:51 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-08 00:51:51 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-08 00:51:51 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-08 00:51:51 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-08 00:51:51 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-08 00:51:51 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 00:51:51 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-08 00:51:51 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 00:51:51 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:51:51 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 00:51:51 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-08 00:51:51 - Using SLF4J as the default logging framework -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-08 00:51:51 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-08 00:51:51 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-08 00:51:51 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-08 00:51:51 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-08 00:51:51 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'observedAspect' -2024-08-08 00:51:51 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-08 00:51:51 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-08 00:51:51 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 00:51:51 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-08 00:51:51 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 00:51:51 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-08 00:51:51 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-08 00:51:51 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-08 00:51:51 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-08 00:51:51 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-08 00:51:51 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-08 00:51:51 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-08 00:51:51 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 00:51:51 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 00:51:51 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:51:51 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-08 00:51:51 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-08 00:51:51 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-08 00:51:51 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 00:51:51 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 00:51:51 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-08 00:51:51 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-08 00:51:51 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-08 00:51:51 - Registering beans for JMX exposure on startup -2024-08-08 00:51:51 - Auto-detecting user-defined JMX MBeans -2024-08-08 00:51:51 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-08 00:51:51 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-08 00:51:51 - Starting beans in phase -2147483647 -2024-08-08 00:51:51 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-08 00:51:51 - Starting beans in phase 2147481599 -2024-08-08 00:51:51 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-08 00:51:51 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-08 00:51:51 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-08 00:51:51 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-08 00:51:51 - Tomcat started on port 8080 (http) with context path '/' -2024-08-08 00:51:51 - Successfully started bean 'webServerStartStop' -2024-08-08 00:51:51 - Starting beans in phase 2147482623 -2024-08-08 00:51:51 - Successfully started bean 'webServerGracefulShutdown' -2024-08-08 00:51:51 - Starting beans in phase 2147483647 -2024-08-08 00:51:51 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.web.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-08 00:51:51 - Started HaengdongApplication in 2.222 seconds (process running for 2.433) -2024-08-08 00:51:51 - Application availability state LivenessState changed to CORRECT -2024-08-08 00:51:51 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 82 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 84 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - [javax.management.remote.rmi.RMIConnectionImpl@34ffc22d: connectionId=rmi://127.0.0.1 4] closing. -2024-08-08 00:51:51 - [javax.management.remote.rmi.RMIConnectionImpl@34ffc22d: connectionId=rmi://127.0.0.1 4] closed. -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:62602] -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:62603] -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 84 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 84 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - [javax.management.remote.rmi.RMIConnectionImpl@33de1ba8: connectionId=rmi://127.0.0.1 5] closing. -2024-08-08 00:51:51 - [javax.management.remote.rmi.RMIConnectionImpl@33de1ba8: connectionId=rmi://127.0.0.1 5] closed. -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 84 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - [javax.management.remote.rmi.RMIConnectionImpl@78ad176: connectionId=rmi://127.0.0.1 6] closing. -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - [javax.management.remote.rmi.RMIConnectionImpl@78ad176: connectionId=rmi://127.0.0.1 6] closed. -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - [javax.management.remote.rmi.RMIConnectionImpl@2ddae82b: connectionId=rmi://127.0.0.1 7] closing. -2024-08-08 00:51:51 - [javax.management.remote.rmi.RMIConnectionImpl@2ddae82b: connectionId=rmi://127.0.0.1 7] closed. -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 84 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - [javax.management.remote.rmi.RMIConnectionImpl@2e5ad140: connectionId=rmi://127.0.0.1 8] closing. -2024-08-08 00:51:51 - [javax.management.remote.rmi.RMIConnectionImpl@2e5ad140: connectionId=rmi://127.0.0.1 8] closed. -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 82 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 82 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 84 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 82 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 84 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 82 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - [javax.management.remote.rmi.RMIConnectionImpl@6c4e73ad: connectionId=rmi://127.0.0.1 9] closing. -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 00:51:51 - [javax.management.remote.rmi.RMIConnectionImpl@6c4e73ad: connectionId=rmi://127.0.0.1 9] closed. -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - [javax.management.remote.rmi.RMIConnectionImpl@57b4d7ef: connectionId=rmi://127.0.0.1 10] closing. -2024-08-08 00:51:51 - [javax.management.remote.rmi.RMIConnectionImpl@57b4d7ef: connectionId=rmi://127.0.0.1 10] closed. -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 84 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 84 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:51 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-08 00:51:51 - Fetching JDBC Connection from DataSource -2024-08-08 00:51:51 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-08 00:51:51 - Initializing Servlet 'dispatcherServlet' -2024-08-08 00:51:51 - Detected StandardServletMultipartResolver -2024-08-08 00:51:51 - Detected AcceptHeaderLocaleResolver -2024-08-08 00:51:51 - Detected FixedThemeResolver -2024-08-08 00:51:51 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@6679a082 -2024-08-08 00:51:51 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@418f3cde -2024-08-08 00:51:51 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-08 00:51:51 - Completed initialization in 0 ms -2024-08-08 00:51:51 - Fetching JDBC Connection from DataSource -2024-08-08 00:51:51 - RMI TCP Connection(2)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - [javax.management.remote.rmi.RMIConnectionImpl@604e5f21: connectionId=rmi://127.0.0.1 12] closing. -2024-08-08 00:51:51 - [javax.management.remote.rmi.RMIConnectionImpl@604e5f21: connectionId=rmi://127.0.0.1 12] closed. -2024-08-08 00:51:51 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:51 - [javax.management.remote.rmi.RMIConnectionImpl@4d496a39: connectionId=rmi://127.0.0.1 11] closing. -2024-08-08 00:51:51 - [javax.management.remote.rmi.RMIConnectionImpl@4d496a39: connectionId=rmi://127.0.0.1 11] closed. -2024-08-08 00:51:58 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 82 -2024-08-08 00:51:58 - RMI TCP Connection(1)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:51:58 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:58 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:51:58 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:52:12 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.1037830524874286319/conf/jaspic-providers.xml] -2024-08-08 00:52:12 - POST "/api/events", parameters={} -2024-08-08 00:52:12 - Mapped to server.haengdong.presentation.EventController#saveEvent(EventSaveRequest) -2024-08-08 00:52:12 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:52:12 - Read "application/json;charset=UTF-8" to [EventSaveRequest[eventName=토다리, password=0987]] -2024-08-08 00:52:12 - Found thread-bound EntityManager [SessionImpl(38513648<open>)] for JPA transaction -2024-08-08 00:52:12 - Creating new transaction with name [server.haengdong.application.EventService.saveEvent]: PROPAGATION_REQUIRED,ISOLATION_DEFAULT -2024-08-08 00:52:12 - On TransactionImpl creation, JpaCompliance#isJpaTransactionComplianceEnabled == false -2024-08-08 00:52:12 - begin -2024-08-08 00:52:12 - Exposing JPA transaction as JDBC [org.springframework.orm.jpa.vendor.HibernateJpaDialect$HibernateConnectionHandle@6cf4753f] -2024-08-08 00:52:12 - Found thread-bound EntityManager [SessionImpl(38513648<open>)] for JPA transaction -2024-08-08 00:52:12 - Participating in existing transaction -2024-08-08 00:52:12 - jakarta.persistence.PersistenceUnitUtil.getIdentifier is only intended to work with enhanced entities (although Hibernate also adapts this support to its proxies); however the passed entity was not enhanced (nor a proxy).. may not be able to read identifier -2024-08-08 00:52:12 - Executing identity-insert immediately -2024-08-08 00:52:12 - - insert - into - event - (name, password, token, id) - values - (?, ?, ?, default) -2024-08-08 00:52:12 - Initializer list is empty -2024-08-08 00:52:12 - Calling top-level assembler (0 / 1) : org.hibernate.sql.results.graph.basic.BasicResultAssembler@38081761 -2024-08-08 00:52:12 - Extracted JDBC value [0] - [1] -2024-08-08 00:52:12 - Extracted generated values [server.haengdong.domain.event.Event]: [Ljava.lang.Object;@712d0661 -2024-08-08 00:52:12 - Initiating transaction commit -2024-08-08 00:52:12 - Committing JPA transaction on EntityManager [SessionImpl(38513648<open>)] -2024-08-08 00:52:12 - committing -2024-08-08 00:52:12 - Processing flush-time cascades -2024-08-08 00:52:12 - Dirty checking collections -2024-08-08 00:52:12 - Flushed: 0 insertions, 0 updates, 0 deletions to 1 objects -2024-08-08 00:52:12 - Flushed: 0 (re)creations, 0 updates, 0 removals to 0 collections -2024-08-08 00:52:12 - Listing entities: -2024-08-08 00:52:12 - server.haengdong.domain.event.Event{password=0987, name=토다리, id=1, token=364eaf6a-28d2-47b4-977f-2870f753347d} -2024-08-08 00:52:12 - Not closing pre-bound JPA EntityManager after transaction -2024-08-08 00:52:12 - Using 'application/json', given [application/json] and supported [application/json, application/*+json] -2024-08-08 00:52:12 - Writing [EventResponse[eventId=364eaf6a-28d2-47b4-977f-2870f753347d]] -2024-08-08 00:52:12 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 00:52:12 - Completed 200 OK -2024-08-08 00:52:20 - RMI TCP Connection(3)-127.0.0.1: (port 62600) connection closed -2024-08-08 00:52:20 - RMI TCP Connection(1)-127.0.0.1: (port 62600) connection closed -2024-08-08 00:52:20 - RMI TCP Connection(2)-127.0.0.1: (port 62600) connection closed -2024-08-08 00:52:20 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=62601,localport=62600] -2024-08-08 00:52:20 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=62602,localport=62600] -2024-08-08 00:52:20 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=62603,localport=62600] -2024-08-08 00:52:20 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=62601,localport=62600] -2024-08-08 00:52:20 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=62602,localport=62600] -2024-08-08 00:52:20 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=62603,localport=62600] -2024-08-08 00:52:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:52:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:52:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:52:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:53:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:53:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:53:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:53:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:54:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:54:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:54:24 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:62613] -2024-08-08 00:54:24 - RMI TCP Connection(4)-127.0.0.1: (port 62600) op = 80 -2024-08-08 00:54:24 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:54:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:54:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:54:24 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:54:24 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1e495414 -2024-08-08 00:54:39 - RMI TCP Connection(4)-127.0.0.1: (port 62600) connection closed -2024-08-08 00:54:39 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=62613,localport=62600] -2024-08-08 00:54:39 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=62613,localport=62600] -2024-08-08 00:54:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:54:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:55:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:55:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:55:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:55:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:56:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:56:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:56:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:56:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:57:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:57:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:57:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:57:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:58:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:58:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:58:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:58:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:59:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:59:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 00:59:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 00:59:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:00:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:00:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:00:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:00:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:01:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:01:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:01:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:01:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:02:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:02:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:02:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:02:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:03:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:03:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:03:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:03:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:04:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:04:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:04:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:04:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:05:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:05:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:05:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:05:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:06:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:06:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:06:50 - RMI Scheduler(0): f49eeb860c348d1c:-bf148d6:1912d748f9c:-7fff -2024-08-08 01:06:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:06:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:07:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:07:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:07:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:07:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:08:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:08:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:08:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:08:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:09:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:09:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:09:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:09:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:10:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:10:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:10:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:10:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 01:11:44 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-08 01:11:44 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@1ce61929, started on Thu Aug 08 00:51:49 KST 2024 -2024-08-08 01:11:44 - Stopping beans in phase 2147483647 -2024-08-08 01:11:44 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-08 01:11:44 - Stopping beans in phase 2147482623 -2024-08-08 01:11:44 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-08 01:11:44 - Stopping beans in phase 2147481599 -2024-08-08 01:11:44 - Bean 'webServerStartStop' completed its stop procedure -2024-08-08 01:11:44 - Stopping beans in phase -2147483647 -2024-08-08 01:11:44 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-08 01:11:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-08 01:11:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-08 01:11:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-08 01:11:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-08 01:11:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-08 01:11:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-08 01:11:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-08 01:11:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-08 01:11:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-08 01:11:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-08 01:11:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-08 01:11:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-08 01:11:44 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-08 01:11:44 - Unregistering JMX-exposed beans on shutdown -2024-08-08 01:11:44 - Unregistering JMX-exposed beans -2024-08-08 01:11:44 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-08 01:11:44 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 01:11:44 - HHH000031: Closing -2024-08-08 01:11:44 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@396bf607] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@5ce1ec7] -2024-08-08 01:11:44 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-08 01:11:44 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-08 01:11:44 - HikariPool-1 - Shutdown initiated... -2024-08-08 01:11:44 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 01:11:44 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 01:11:44 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 01:11:44 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 01:11:44 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 01:11:44 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 01:11:44 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 01:11:44 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 01:11:44 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 01:11:44 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 01:11:44 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 01:11:44 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-08 01:11:44 - HikariPool-1 - Shutdown completed. -2024-08-08 01:11:44 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-08 16:13:00 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-08 16:13:00 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-08 16:13:00 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 16:13:00 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 16:13:00 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 16:13:00 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 16:13:00 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 16:13:00 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 16:13:00 - Loaded expression factory via original TCCL -2024-08-08 16:13:00 - Starting HaengdongApplication using Java 17.0.12 with PID 15765 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-08 16:13:00 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-08 16:13:00 - No active profile set, falling back to 1 default profile: "default" -2024-08-08 16:13:00 - Loading source class server.haengdong.HaengdongApplication -2024-08-08 16:13:00 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b -2024-08-08 16:13:00 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-08 16:13:00 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 16:13:00 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 16:13:00 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 16:13:00 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 16:13:00 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 16:13:00 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 16:13:00 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-08 16:13:00 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-08 16:13:00 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-08 16:13:00 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-08 16:13:00 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-08 16:13:00 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-08 16:13:00 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-08 16:13:00 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 16:13:00 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 16:13:00 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 16:13:00 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-08 16:13:00 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 16:13:00 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-08 16:13:00 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-08 16:13:00 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-08 16:13:00 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-08 16:13:00 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-08 16:13:00 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-08 16:13:01 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-08 16:13:01 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-08 16:13:01 - Scanning for JPA repositories in packages server.haengdong. -2024-08-08 16:13:01 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 16:13:01 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 16:13:01 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 16:13:01 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 16:13:01 - Finished Spring Data repository scanning in 16 ms. Found 4 JPA repository interfaces. -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-08 16:13:01 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-08 16:13:01 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-08 16:13:01 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 16:13:01 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-08 16:13:01 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 16:13:01 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 16:13:01 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-08 16:13:01 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-08 16:13:01 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@ab4aa5e] -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-08 16:13:01 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-08 16:13:01 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-08 16:13:01 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-08 16:13:01 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-08 16:13:01 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-08 16:13:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-08 16:13:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-08 16:13:01 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 16:13:01 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 16:13:01 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 16:13:01 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 16:13:01 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-08 16:13:01 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 16:13:01 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 16:13:01 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-08 16:13:01 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-08 16:13:01 - Tomcat initialized with port 8080 (http) -2024-08-08 16:13:01 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@65600fb3] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@65600fb3] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.mapper.MapperListener@19ad75e5] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.mapper.MapperListener@19ad75e5] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-08 16:13:01 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-08 16:13:01 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@65600fb3] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@65600fb3] to [STARTING] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@65600fb3] to [STARTED] -2024-08-08 16:13:01 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-08 16:13:01 - Starting service [Tomcat] -2024-08-08 16:13:01 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-08 16:13:01 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-08 16:13:01 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.webresources.StandardRoot@70fede7d] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.webresources.StandardRoot@70fede7d] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.webresources.StandardRoot@70fede7d] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.webresources.DirResourceSet@6744707b] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.webresources.DirResourceSet@6744707b] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.webresources.DirResourceSet@6744707b] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.webresources.DirResourceSet@6744707b] to [STARTING] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.webresources.DirResourceSet@6744707b] to [STARTED] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.webresources.StandardRoot@70fede7d] to [STARTING] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.webresources.StandardRoot@70fede7d] to [STARTED] -2024-08-08 16:13:01 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 16:13:01 - Starting this Loader -2024-08-08 16:13:01 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 16:13:01 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 16:13:01 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-08 16:13:01 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@46612bfc] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@46612bfc] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@46612bfc] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@46612bfc] to [STARTING] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@46612bfc] to [STARTED] -2024-08-08 16:13:01 - Initializing Spring embedded WebApplicationContext -2024-08-08 16:13:01 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-08 16:13:01 - Root WebApplicationContext: initialization completed in 662 ms -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-08 16:13:01 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-08 16:13:01 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-08 16:13:01 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-08 16:13:01 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 16:13:01 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-08 16:13:01 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'h2Console' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'dataSource' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-08 16:13:01 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-08 16:13:01 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-08 16:13:01 - HikariPool-1 - configuration: -2024-08-08 16:13:01 - allowPoolSuspension.............false -2024-08-08 16:13:01 - autoCommit......................true -2024-08-08 16:13:01 - catalog.........................none -2024-08-08 16:13:01 - connectionInitSql...............none -2024-08-08 16:13:01 - connectionTestQuery.............none -2024-08-08 16:13:01 - connectionTimeout...............30000 -2024-08-08 16:13:01 - dataSource......................none -2024-08-08 16:13:01 - dataSourceClassName.............none -2024-08-08 16:13:01 - dataSourceJNDI..................none -2024-08-08 16:13:01 - dataSourceProperties............{password=<masked>} -2024-08-08 16:13:01 - driverClassName................."org.h2.Driver" -2024-08-08 16:13:01 - exceptionOverrideClassName......none -2024-08-08 16:13:01 - healthCheckProperties...........{} -2024-08-08 16:13:01 - healthCheckRegistry.............none -2024-08-08 16:13:01 - idleTimeout.....................600000 -2024-08-08 16:13:01 - initializationFailTimeout.......1 -2024-08-08 16:13:01 - isolateInternalQueries..........false -2024-08-08 16:13:01 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-08 16:13:01 - keepaliveTime...................0 -2024-08-08 16:13:01 - leakDetectionThreshold..........0 -2024-08-08 16:13:01 - maxLifetime.....................1800000 -2024-08-08 16:13:01 - maximumPoolSize.................10 -2024-08-08 16:13:01 - metricRegistry..................none -2024-08-08 16:13:01 - metricsTrackerFactory...........none -2024-08-08 16:13:01 - minimumIdle.....................10 -2024-08-08 16:13:01 - password........................<masked> -2024-08-08 16:13:01 - poolName........................"HikariPool-1" -2024-08-08 16:13:01 - readOnly........................false -2024-08-08 16:13:01 - registerMbeans..................false -2024-08-08 16:13:01 - scheduledExecutor...............none -2024-08-08 16:13:01 - schema..........................none -2024-08-08 16:13:01 - threadFactory...................internal -2024-08-08 16:13:01 - transactionIsolation............default -2024-08-08 16:13:01 - username........................"sa" -2024-08-08 16:13:01 - validationTimeout...............5000 -2024-08-08 16:13:01 - HikariPool-1 - Starting... -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:49264] -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 82 -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 84 -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 82 -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:01 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 16:13:01 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:01 - [javax.management.remote.rmi.RMIConnectionImpl@2b47b2e8: connectionId=rmi://127.0.0.1 1] closing. -2024-08-08 16:13:01 - [javax.management.remote.rmi.RMIConnectionImpl@2b47b2e8: connectionId=rmi://127.0.0.1 1] closed. -2024-08-08 16:13:01 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-08 16:13:01 - HikariPool-1 - Start completed. -2024-08-08 16:13:01 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-08 16:13:01 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-08 16:13:01 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-08 16:13:01 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-08 16:13:01 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 16:13:01 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-08 16:13:01 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-08 16:13:01 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-08 16:13:01 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-08 16:13:01 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-08 16:13:01 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@72715e61] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@72715e61] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@72715e61] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@72715e61] to [STARTING] -2024-08-08 16:13:01 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@72715e61] to [STARTED] -2024-08-08 16:13:01 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 16:13:01 - Filter 'requestContextFilter' configured for use -2024-08-08 16:13:01 - Filter 'webMvcObservationFilter' configured for use -2024-08-08 16:13:01 - Filter 'characterEncodingFilter' configured for use -2024-08-08 16:13:01 - Filter 'formContentFilter' configured for use -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 16:13:01 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 16:13:01 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 16:13:01 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-08 16:13:01 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.mapper.MapperListener@19ad75e5] to [STARTING_PREP] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.mapper.MapperListener@19ad75e5] to [STARTING] -2024-08-08 16:13:01 - Registered host [localhost] -2024-08-08 16:13:01 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-08 16:13:01 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-08 16:13:01 - Register Context [] for service [StandardService[Tomcat]] -2024-08-08 16:13:01 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-08 16:13:01 - Setting state for [org.apache.catalina.mapper.MapperListener@19ad75e5] to [STARTED] -2024-08-08 16:13:01 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-08 16:13:01 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-08 16:13:01 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-08 16:13:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 16:13:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@6e33c391' -2024-08-08 16:13:01 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-08 16:13:01 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-08 16:13:01 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-08 16:13:01 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@6e33c391' -2024-08-08 16:13:01 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-08 16:13:01 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-08 16:13:01 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-08 16:13:01 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-08 16:13:01 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-08 16:13:01 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-08 16:13:01 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-08 16:13:01 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-08 16:13:01 - HHH000206: 'hibernate.properties' not found -2024-08-08 16:13:01 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-08 16:13:01 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-08 16:13:01 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-08 16:13:01 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-08 16:13:01 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 16:13:01 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 16:13:01 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-08 16:13:01 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-08 16:13:01 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-08 16:13:01 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 16:13:01 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-08 16:13:01 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-08 16:13:01 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 16:13:01 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-08 16:13:01 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-08 16:13:01 - HHH000026: Second-level cache disabled -2024-08-08 16:13:01 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@556aed22 -2024-08-08 16:13:01 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@556aed22 -2024-08-08 16:13:01 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@556aed22 -2024-08-08 16:13:01 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@57a982f9 -2024-08-08 16:13:01 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@57a982f9 -2024-08-08 16:13:01 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@19d3f6ad -2024-08-08 16:13:01 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@19d3f6ad -2024-08-08 16:13:01 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@1b69fc07 -2024-08-08 16:13:01 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@1b69fc07 -2024-08-08 16:13:01 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@19e801b5 -2024-08-08 16:13:01 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@19e801b5 -2024-08-08 16:13:01 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@19e801b5 -2024-08-08 16:13:01 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-08 16:13:01 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-08 16:13:01 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@24de63b -2024-08-08 16:13:01 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-08 16:13:01 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@42d0e41 -2024-08-08 16:13:01 - Adding type registration image -> org.hibernate.type.BasicTypeReference@50f05307 -2024-08-08 16:13:01 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-08 16:13:01 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@9cc0505 -2024-08-08 16:13:01 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@645d4639 -2024-08-08 16:13:01 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@8ee03f5 -2024-08-08 16:13:01 - Adding type registration short -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-08 16:13:01 - Adding type registration short -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-08 16:13:01 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@5ad40184 -2024-08-08 16:13:01 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-08 16:13:01 - Adding type registration int -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-08 16:13:01 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@3359c3f6 -2024-08-08 16:13:01 - Adding type registration long -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-08 16:13:01 - Adding type registration long -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-08 16:13:01 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@3d3b272a -2024-08-08 16:13:01 - Adding type registration float -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-08 16:13:01 - Adding type registration float -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-08 16:13:01 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@45b27ad3 -2024-08-08 16:13:01 - Adding type registration double -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-08 16:13:01 - Adding type registration double -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-08 16:13:01 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@3f908bc0 -2024-08-08 16:13:01 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-08 16:13:01 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@422ba9b7 -2024-08-08 16:13:01 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-08 16:13:01 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@26cdd4af -2024-08-08 16:13:01 - Adding type registration character -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-08 16:13:01 - Adding type registration char -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-08 16:13:01 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@707f4647 -2024-08-08 16:13:01 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@4b8a0d03 -2024-08-08 16:13:01 - Adding type registration string -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-08 16:13:01 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@54f373d4 -2024-08-08 16:13:01 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@1c53bd49 -2024-08-08 16:13:01 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 16:13:01 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 16:13:01 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@16949dfa -2024-08-08 16:13:01 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@d6d683e -2024-08-08 16:13:01 - Adding type registration text -> org.hibernate.type.BasicTypeReference@42cfd794 -2024-08-08 16:13:01 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 16:13:01 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 16:13:01 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 16:13:01 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 16:13:01 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 16:13:01 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-08 16:13:01 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-08 16:13:01 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-08 16:13:01 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-08 16:13:01 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 16:13:01 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 16:13:01 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 16:13:01 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 16:13:01 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-08 16:13:01 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-08 16:13:01 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 16:13:01 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 16:13:01 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 16:13:01 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 16:13:01 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-08 16:13:01 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-08 16:13:01 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-08 16:13:01 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 16:13:01 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-08 16:13:01 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-08 16:13:01 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-08 16:13:01 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 16:13:01 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 16:13:01 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 16:13:01 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 16:13:01 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 16:13:01 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 16:13:01 - Adding type registration date -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-08 16:13:01 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-08 16:13:01 - Adding type registration time -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-08 16:13:01 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-08 16:13:01 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-08 16:13:01 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-08 16:13:01 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-08 16:13:01 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-08 16:13:01 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-08 16:13:01 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-08 16:13:01 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-08 16:13:01 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-08 16:13:01 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-08 16:13:01 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-08 16:13:01 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 16:13:01 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 16:13:01 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 16:13:01 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 16:13:01 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-08 16:13:01 - Adding type registration class -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-08 16:13:01 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-08 16:13:01 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 16:13:01 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 16:13:01 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 16:13:01 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 16:13:01 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 16:13:01 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-08 16:13:01 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-08 16:13:01 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-08 16:13:01 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-08 16:13:01 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-08 16:13:01 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-08 16:13:01 - Adding type registration url -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-08 16:13:01 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-08 16:13:01 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-08 16:13:01 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-08 16:13:01 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-08 16:13:01 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-08 16:13:01 - Adding type registration object -> org.hibernate.type.JavaObjectType@2f166d61 -2024-08-08 16:13:01 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@2f166d61 -2024-08-08 16:13:01 - Adding type registration null -> org.hibernate.type.NullType@1d06801f -2024-08-08 16:13:01 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@727956bb -2024-08-08 16:13:01 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@6ffbf0ac -2024-08-08 16:13:01 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@ad5cffa -2024-08-08 16:13:01 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@237aa0c7 -2024-08-08 16:13:01 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@1b8ee69d -2024-08-08 16:13:01 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@2b400bd0 -2024-08-08 16:13:01 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@fceab5d -2024-08-08 16:13:01 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@79445efb -2024-08-08 16:13:01 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@3dd750ba] into BootstrapContext; was [null] -2024-08-08 16:13:01 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@3dd750ba) [was null] -2024-08-08 16:13:01 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@37364634] into BootstrapContext; was [null] -2024-08-08 16:13:01 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@3dec79f8] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@5bf7f15f] -2024-08-08 16:13:01 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-08 16:13:01 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-08 16:13:01 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-08 16:13:01 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-08 16:13:01 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-08 16:13:01 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@3dd750ba] -2024-08-08 16:13:01 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@3dd750ba] -2024-08-08 16:13:01 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 16:13:01 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 16:13:01 - JDBC version : 4.2 -2024-08-08 16:13:01 - HikariPool-1 - After adding stats (total=5, active=1, idle=4, waiting=0) -2024-08-08 16:13:01 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-08 16:13:01 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-08 16:13:01 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-08 16:13:01 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-08 16:13:01 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-08 16:13:01 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-08 16:13:01 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 16:13:01 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 16:13:01 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-08 16:13:01 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-08 16:13:01 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 16:13:01 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 16:13:01 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@603b9d4b] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@42cf5a6f] -2024-08-08 16:13:01 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-08 16:13:01 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-08 16:13:01 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-08 16:13:01 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-08 16:13:01 - Import with entity name Action -2024-08-08 16:13:01 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-08 16:13:01 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 16:13:01 - Binding column: AnnotatedColumn() -2024-08-08 16:13:01 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 16:13:01 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 16:13:01 - MetadataSourceProcessor property id with lazy=false -2024-08-08 16:13:01 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-08 16:13:01 - building BasicValue for id -2024-08-08 16:13:01 - Skipping column re-registration: action.id -2024-08-08 16:13:01 - Building property id -2024-08-08 16:13:01 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 16:13:01 - Binding column: AnnotatedJoinColumn() -2024-08-08 16:13:01 - Binding column: AnnotatedColumn() -2024-08-08 16:13:01 - Building property event -2024-08-08 16:13:01 - Binding column: AnnotatedColumn() -2024-08-08 16:13:01 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 16:13:01 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-08 16:13:01 - building BasicValue for sequence -2024-08-08 16:13:01 - Skipping column re-registration: action.sequence -2024-08-08 16:13:01 - Building property sequence -2024-08-08 16:13:01 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 16:13:01 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-08 16:13:01 - Import with entity name BillAction -2024-08-08 16:13:01 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-08 16:13:01 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 16:13:01 - Binding column: AnnotatedColumn() -2024-08-08 16:13:01 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 16:13:01 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 16:13:01 - MetadataSourceProcessor property id with lazy=false -2024-08-08 16:13:01 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-08 16:13:01 - building BasicValue for id -2024-08-08 16:13:01 - Skipping column re-registration: bill_action.id -2024-08-08 16:13:01 - Building property id -2024-08-08 16:13:01 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 16:13:01 - Binding column: AnnotatedJoinColumn() -2024-08-08 16:13:01 - Binding column: AnnotatedColumn() -2024-08-08 16:13:01 - Building property action -2024-08-08 16:13:01 - Binding column: AnnotatedColumn() -2024-08-08 16:13:01 - MetadataSourceProcessor property price with lazy=false -2024-08-08 16:13:01 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-08 16:13:01 - building BasicValue for price -2024-08-08 16:13:01 - Skipping column re-registration: bill_action.price -2024-08-08 16:13:01 - Building property price -2024-08-08 16:13:01 - Binding column: AnnotatedColumn() -2024-08-08 16:13:01 - MetadataSourceProcessor property title with lazy=false -2024-08-08 16:13:01 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-08 16:13:01 - building BasicValue for title -2024-08-08 16:13:01 - Skipping column re-registration: bill_action.title -2024-08-08 16:13:01 - Building property title -2024-08-08 16:13:01 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 16:13:01 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-08 16:13:01 - Import with entity name MemberAction -2024-08-08 16:13:01 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-08 16:13:01 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 16:13:01 - Binding column: AnnotatedColumn() -2024-08-08 16:13:01 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 16:13:01 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 16:13:01 - MetadataSourceProcessor property id with lazy=false -2024-08-08 16:13:01 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-08 16:13:01 - building BasicValue for id -2024-08-08 16:13:01 - Skipping column re-registration: member_action.id -2024-08-08 16:13:01 - Building property id -2024-08-08 16:13:01 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 16:13:01 - Binding column: AnnotatedJoinColumn() -2024-08-08 16:13:01 - Binding column: AnnotatedColumn() -2024-08-08 16:13:01 - Building property action -2024-08-08 16:13:01 - Binding column: AnnotatedColumn() -2024-08-08 16:13:01 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-08 16:13:01 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-08 16:13:01 - building BasicValue for memberGroupId -2024-08-08 16:13:01 - Skipping column re-registration: member_action.member_group_id -2024-08-08 16:13:01 - Building property memberGroupId -2024-08-08 16:13:01 - Binding column: AnnotatedColumn() -2024-08-08 16:13:01 - MetadataSourceProcessor property memberName with lazy=false -2024-08-08 16:13:01 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-08 16:13:01 - building BasicValue for memberName -2024-08-08 16:13:01 - Skipping column re-registration: member_action.member_name -2024-08-08 16:13:01 - Building property memberName -2024-08-08 16:13:01 - Binding column: AnnotatedColumn() -2024-08-08 16:13:01 - MetadataSourceProcessor property status with lazy=false -2024-08-08 16:13:01 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-08 16:13:01 - building BasicValue for status -2024-08-08 16:13:01 - Skipping column re-registration: member_action.status -2024-08-08 16:13:01 - Building property status -2024-08-08 16:13:01 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 16:13:01 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-08 16:13:01 - Import with entity name Event -2024-08-08 16:13:01 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-08 16:13:01 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 16:13:01 - Binding column: AnnotatedColumn() -2024-08-08 16:13:01 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 16:13:01 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 16:13:01 - MetadataSourceProcessor property id with lazy=false -2024-08-08 16:13:01 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-08 16:13:01 - building BasicValue for id -2024-08-08 16:13:01 - Skipping column re-registration: event.id -2024-08-08 16:13:01 - Building property id -2024-08-08 16:13:01 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 16:13:01 - Binding column: AnnotatedColumn() -2024-08-08 16:13:01 - MetadataSourceProcessor property name with lazy=false -2024-08-08 16:13:01 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-08 16:13:01 - building BasicValue for name -2024-08-08 16:13:01 - Skipping column re-registration: event.name -2024-08-08 16:13:01 - Building property name -2024-08-08 16:13:01 - Binding column: AnnotatedColumn() -2024-08-08 16:13:01 - MetadataSourceProcessor property password with lazy=false -2024-08-08 16:13:01 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-08 16:13:01 - building BasicValue for password -2024-08-08 16:13:01 - Skipping column re-registration: event.password -2024-08-08 16:13:01 - Building property password -2024-08-08 16:13:01 - Binding column: AnnotatedColumn() -2024-08-08 16:13:01 - MetadataSourceProcessor property token with lazy=false -2024-08-08 16:13:01 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-08 16:13:01 - building BasicValue for token -2024-08-08 16:13:01 - Skipping column re-registration: event.token -2024-08-08 16:13:01 - Building property token -2024-08-08 16:13:01 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 16:13:01 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-08 16:13:01 - Import with entity name EventStep -2024-08-08 16:13:01 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-08 16:13:01 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 16:13:01 - Binding column: AnnotatedColumn() -2024-08-08 16:13:01 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 16:13:01 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 16:13:01 - MetadataSourceProcessor property id with lazy=false -2024-08-08 16:13:01 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-08 16:13:01 - building BasicValue for id -2024-08-08 16:13:01 - Skipping column re-registration: event_step.id -2024-08-08 16:13:01 - Building property id -2024-08-08 16:13:01 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 16:13:01 - Binding column: AnnotatedJoinColumn() -2024-08-08 16:13:01 - Binding column: AnnotatedColumn() -2024-08-08 16:13:01 - Building property event -2024-08-08 16:13:01 - Binding column: AnnotatedColumn() -2024-08-08 16:13:01 - MetadataSourceProcessor property name with lazy=false -2024-08-08 16:13:01 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-08 16:13:01 - building BasicValue for name -2024-08-08 16:13:01 - Skipping column re-registration: event_step.name -2024-08-08 16:13:01 - Building property name -2024-08-08 16:13:01 - Binding column: AnnotatedColumn() -2024-08-08 16:13:01 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 16:13:01 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-08 16:13:01 - building BasicValue for sequence -2024-08-08 16:13:01 - Skipping column re-registration: event_step.sequence -2024-08-08 16:13:01 - Building property sequence -2024-08-08 16:13:01 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 16:13:01 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 16:13:01 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 16:13:01 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 16:13:01 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-08 16:13:01 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-08 16:13:01 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 16:13:01 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-08 16:13:01 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-08 16:13:01 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-08 16:13:01 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 16:13:01 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 16:13:01 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-08 16:13:01 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-08 16:13:01 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 16:13:01 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 16:13:01 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 16:13:01 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-08 16:13:01 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-08 16:13:01 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-08 16:13:01 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-08 16:13:01 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-08 16:13:01 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-08 16:13:01 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-08 16:13:01 - Building session factory -2024-08-08 16:13:01 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-08 16:13:01 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-08 16:13:01 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 16:13:01 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@72641613, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@4d71ec5b, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.3624567406192400725, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=15765, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.3624567406192400725, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@20e3b165, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-08 16:13:01 - Session factory constructed with filter configurations : {} -2024-08-08 16:13:01 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 16:13:01 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 16:13:01 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 16:13:01 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 16:13:01 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 16:13:01 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 16:13:01 - Loaded expression factory via original TCCL -2024-08-08 16:13:01 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 16:13:01 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 16:13:01 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 16:13:01 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 16:13:01 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 16:13:01 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 16:13:01 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 16:13:01 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 16:13:01 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 16:13:01 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 16:13:01 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 16:13:01 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 16:13:01 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 16:13:01 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 16:13:01 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 16:13:01 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 16:13:01 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@18fa5af6] under count; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@59d09ff3] under every; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@17d0d3d7] under any; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@29bf90fc] under sinh; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6e22d6bf] under cosh; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@32121140] under tanh; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@96c840a] under pi; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5c81ddab] under log; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-08 16:13:01 - Registering alternate key : length -> character_length -2024-08-08 16:13:01 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@7fe0ca60] under position; prior registration was null -2024-08-08 16:13:01 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@2a9ea03f] under overlay; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@62871522] under trim; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@6761f75b] under cast; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7c8a91e2] under collate; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@34ff08c6] under extract; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@35451ba6] under ifnull; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@2a7392a3] under pad; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@5382a35f] under str; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@192ecf8] under format; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@7c680fe1] under timestampadd; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@25b402ea] under timestampdiff; prior registration was null -2024-08-08 16:13:01 - Registering alternate key : dateadd -> timestampadd -2024-08-08 16:13:01 - Registering alternate key : datediff -> timestampdiff -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1e965426] under current_date; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@575fe6da] under current_time; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@149238fe] under current_timestamp; prior registration was null -2024-08-08 16:13:01 - Registering alternate key : current date -> current_date -2024-08-08 16:13:01 - Registering alternate key : current time -> current_time -2024-08-08 16:13:01 - Registering alternate key : current timestamp -> current_timestamp -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@a0bdbe2] under local_date; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@261099e1] under local_time; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@ed1d2cf] under local_datetime; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@b814e23] under offset_datetime; prior registration was null -2024-08-08 16:13:01 - Registering alternate key : local date -> local_date -2024-08-08 16:13:01 - Registering alternate key : local time -> local_time -2024-08-08 16:13:01 - Registering alternate key : local datetime -> local_datetime -2024-08-08 16:13:01 - Registering alternate key : offset datetime -> offset_datetime -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5f81507a] under instant; prior registration was null -2024-08-08 16:13:01 - Registering alternate key : current_instant -> instant -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@299dd381] under sql; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@34d3409d] under count; prior registration was org.hibernate.dialect.function.CountFunction@18fa5af6 -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@515fff35] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@96c840a -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5eb9bf7d] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-08 16:13:01 - Registering alternate key : day -> day_of_month -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@261099e1 -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@ed1d2cf -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@5d01a2eb] under trunc; prior registration was null -2024-08-08 16:13:01 - Registering alternate key : truncate -> trunc -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6fe337a5] under date_trunc; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-08 16:13:01 - Registering alternate key : chr -> char -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7d60bd5a] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@7fe0ca60 -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@43312512] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-08 16:13:01 - Registering alternate key : every -> bool_and -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-08 16:13:01 - Registering alternate key : any -> bool_or -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@13f7c165] under format; prior registration was org.hibernate.dialect.function.FormatFunction@192ecf8 -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@637c8632] under listagg; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@618e7761] under mode; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@5b643d6e] under percentile_cont; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@34f8ce89] under percentile_disc; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@38c1b1a7] under rank; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@73230721] under dense_rank; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@10bcbbce] under percent_rank; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@27234b7c] under cume_dist; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@62264d4f] under array; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@2bc0603f] under array_list; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@2b4ba2d9] under array_agg; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@237ee2e1] under array_position; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@558575fe] under array_positions; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@2fe2fcc2] under array_positions_list; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@69926b6e] under array_length; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@78f35e39] under array_concat; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@4056cdb2] under array_prepend; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@20462820] under array_append; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@347f8029] under array_contains; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@3f78a5ed] under array_contains_nullable; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@4edd8a0a] under array_overlaps; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@1a73f3d1] under array_overlaps_nullable; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4880a9d] under array_get; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@73905dff] under array_set; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@50b2ba2c] under array_remove; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@13ae87a6] under array_remove_index; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@774189d0] under array_slice; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@7f584d0c] under array_replace; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4c599679] under array_trim; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@2c86b0ea] under array_fill; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@4e481512] under array_fill_list; prior registration was null -2024-08-08 16:13:01 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@5570dc21] under array_to_string; prior registration was null -2024-08-08 16:13:01 - abs(NUMERIC arg) -2024-08-08 16:13:01 - Double acos(NUMERIC arg) -2024-08-08 16:13:01 - Boolean any(BOOLEAN predicate) -2024-08-08 16:13:01 - array( ... ) -2024-08-08 16:13:01 - array_agg(arg) -2024-08-08 16:13:01 - array_append( ... ) -2024-08-08 16:13:01 - array_concat( ... ) -2024-08-08 16:13:01 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 16:13:01 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 16:13:01 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-08 16:13:01 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-08 16:13:01 - array_get(ARRAY array, INTEGER index) -2024-08-08 16:13:01 - Integer array_length(ARRAY array) -2024-08-08 16:13:01 - array_list( ... ) -2024-08-08 16:13:01 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-08 16:13:01 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-08 16:13:01 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-08 16:13:01 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-08 16:13:01 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-08 16:13:01 - array_prepend( ... ) -2024-08-08 16:13:01 - array_remove( ... ) -2024-08-08 16:13:01 - array_remove_index( ... ) -2024-08-08 16:13:01 - array_replace( ... ) -2024-08-08 16:13:01 - array_set( ... ) -2024-08-08 16:13:01 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-08 16:13:01 - String array_to_string( ... ) -2024-08-08 16:13:01 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-08 16:13:01 - Integer ascii(STRING arg) -2024-08-08 16:13:01 - Double asin(NUMERIC arg) -2024-08-08 16:13:01 - Double atan(NUMERIC arg) -2024-08-08 16:13:01 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-08 16:13:01 - avg(NUMERIC arg) -2024-08-08 16:13:01 - bit_and(arg) -2024-08-08 16:13:01 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-08 16:13:01 - bit_or(arg) -2024-08-08 16:13:01 - bitand(arg0, arg1) -2024-08-08 16:13:01 - bitnot(arg) -2024-08-08 16:13:01 - bitor(arg0, arg1) -2024-08-08 16:13:01 - bitxor(arg0, arg1) -2024-08-08 16:13:01 - Boolean bool_and(BOOLEAN predicate) -2024-08-08 16:13:01 - Boolean bool_or(BOOLEAN predicate) -2024-08-08 16:13:01 - cast(arg as Type) -2024-08-08 16:13:01 - ceiling(NUMERIC arg) -2024-08-08 16:13:01 - Character char(INTEGER arg) -2024-08-08 16:13:01 - Integer character_length(STRING_OR_CLOB arg) -2024-08-08 16:13:01 - Character chr(INTEGER arg) -2024-08-08 16:13:01 - coalesce(arg0[, arg1[, ...]]) -2024-08-08 16:13:01 - String collate(STRING string as COLLATION collation) -2024-08-08 16:13:01 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-08 16:13:01 - Double cos(NUMERIC arg) -2024-08-08 16:13:01 - Double cosh(NUMERIC arg) -2024-08-08 16:13:01 - Double cot(NUMERIC arg) -2024-08-08 16:13:01 - Long count([distinct ]{arg|*}) -2024-08-08 16:13:01 - Double cume_dist([arg0[, ...]]) -2024-08-08 16:13:01 - Date curdate() -2024-08-08 16:13:01 - Date current date -2024-08-08 16:13:01 - Time current time -2024-08-08 16:13:01 - Timestamp current timestamp -2024-08-08 16:13:01 - Date current_date -2024-08-08 16:13:01 - Instant current_instant -2024-08-08 16:13:01 - Time current_time -2024-08-08 16:13:01 - Timestamp current_timestamp -2024-08-08 16:13:01 - Time curtime() -2024-08-08 16:13:01 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-08 16:13:01 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 16:13:01 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 16:13:01 - Integer day(DATE arg) -2024-08-08 16:13:01 - Integer day_of_month(DATE arg) -2024-08-08 16:13:01 - Integer day_of_week(DATE arg) -2024-08-08 16:13:01 - Integer day_of_year(DATE arg) -2024-08-08 16:13:01 - String dayname(DATE arg) -2024-08-08 16:13:01 - Double degrees(NUMERIC arg) -2024-08-08 16:13:01 - Long dense_rank([arg0[, ...]]) -2024-08-08 16:13:01 - Boolean every(BOOLEAN predicate) -2024-08-08 16:13:01 - Double exp(NUMERIC arg) -2024-08-08 16:13:01 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-08 16:13:01 - first_valueANY value -2024-08-08 16:13:01 - floor(NUMERIC arg) -2024-08-08 16:13:01 - String format(TEMPORAL datetime as STRING pattern) -2024-08-08 16:13:01 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 16:13:01 - Integer hour(TIME arg) -2024-08-08 16:13:01 - ifnull(arg0, arg1) -2024-08-08 16:13:01 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-08 16:13:01 - Instant instant -2024-08-08 16:13:01 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-08 16:13:01 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-08 16:13:01 - last_valueANY value -2024-08-08 16:13:01 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-08 16:13:01 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 16:13:01 - String left(STRING string, INTEGER length) -2024-08-08 16:13:01 - Integer length(STRING_OR_CLOB arg) -2024-08-08 16:13:01 - String listagg(STRING arg0, STRING arg1) -2024-08-08 16:13:01 - Double ln(NUMERIC arg) -2024-08-08 16:13:01 - LocalDate local date -2024-08-08 16:13:01 - LocalDateTime local datetime -2024-08-08 16:13:01 - LocalTime local time -2024-08-08 16:13:01 - LocalDate local_date -2024-08-08 16:13:01 - LocalDateTime local_datetime -2024-08-08 16:13:01 - LocalTime local_time -2024-08-08 16:13:01 - Time localtime -2024-08-08 16:13:01 - Timestamp localtimestamp -2024-08-08 16:13:01 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-08 16:13:01 - Double log(NUMERIC base, NUMERIC arg) -2024-08-08 16:13:01 - Double log10(NUMERIC arg) -2024-08-08 16:13:01 - String lower(STRING string) -2024-08-08 16:13:01 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 16:13:01 - String ltrim(STRING string) -2024-08-08 16:13:01 - max(COMPARABLE arg) -2024-08-08 16:13:01 - Double median(NUMERIC arg) -2024-08-08 16:13:01 - Integer microsecond(TIME arg) -2024-08-08 16:13:01 - min(COMPARABLE arg) -2024-08-08 16:13:01 - Integer minute(TIME arg) -2024-08-08 16:13:01 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-08 16:13:01 - mode() -2024-08-08 16:13:01 - Integer month(DATE arg) -2024-08-08 16:13:01 - String monthname(DATE arg) -2024-08-08 16:13:01 - Timestamp now() -2024-08-08 16:13:01 - nth_valueANY value, INTEGER nth -2024-08-08 16:13:01 - nullif(arg0, arg1) -2024-08-08 16:13:01 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-08 16:13:01 - OffsetDateTime offset datetime -2024-08-08 16:13:01 - OffsetDateTime offset_datetime -2024-08-08 16:13:01 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-08 16:13:01 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-08 16:13:01 - Double percent_rank([arg0[, ...]]) -2024-08-08 16:13:01 - percentile_cont(NUMERIC arg) -2024-08-08 16:13:01 - percentile_disc(NUMERIC arg) -2024-08-08 16:13:01 - Double pi -2024-08-08 16:13:01 - Integer position(STRING pattern in STRING string) -2024-08-08 16:13:01 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-08 16:13:01 - Integer quarter(DATE arg) -2024-08-08 16:13:01 - Double radians(NUMERIC arg) -2024-08-08 16:13:01 - Double rand([INTEGER seed]) -2024-08-08 16:13:01 - Long rank([arg0[, ...]]) -2024-08-08 16:13:01 - String repeat(STRING string, INTEGER times) -2024-08-08 16:13:01 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-08 16:13:01 - String right(STRING string, INTEGER length) -2024-08-08 16:13:01 - round(NUMERIC number[, INTEGER places]) -2024-08-08 16:13:01 - Long row_number() -2024-08-08 16:13:01 - Long rownum() -2024-08-08 16:13:01 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 16:13:01 - String rtrim(STRING string) -2024-08-08 16:13:01 - Integer second(TIME arg) -2024-08-08 16:13:01 - Integer sign(NUMERIC arg) -2024-08-08 16:13:01 - Double sin(NUMERIC arg) -2024-08-08 16:13:01 - Double sinh(NUMERIC arg) -2024-08-08 16:13:01 - String soundex(arg) -2024-08-08 16:13:01 - String space(INTEGER arg) -2024-08-08 16:13:01 - Object sql -2024-08-08 16:13:01 - Double sqrt(NUMERIC arg) -2024-08-08 16:13:01 - Double stddev_pop(NUMERIC arg) -2024-08-08 16:13:01 - Double stddev_samp(NUMERIC arg) -2024-08-08 16:13:01 - String str(arg) -2024-08-08 16:13:01 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-08 16:13:01 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-08 16:13:01 - sum(arg) -2024-08-08 16:13:01 - Timestamp sysdate -2024-08-08 16:13:01 - Double tan(NUMERIC arg) -2024-08-08 16:13:01 - Double tanh(NUMERIC arg) -2024-08-08 16:13:01 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 16:13:01 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 16:13:01 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-08 16:13:01 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-08 16:13:01 - trunc( ... ) -2024-08-08 16:13:01 - truncate( ... ) -2024-08-08 16:13:01 - String upper(STRING string) -2024-08-08 16:13:01 - Double var_pop(NUMERIC arg) -2024-08-08 16:13:01 - Double var_samp(NUMERIC arg) -2024-08-08 16:13:01 - Integer week(DATE arg) -2024-08-08 16:13:01 - Integer year(DATE arg) -2024-08-08 16:13:01 - Starting QueryInterpretationCache(2048) -2024-08-08 16:13:01 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:13:01 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 16:13:01 - Configured EntityCopyObserver strategy: disallow -2024-08-08 16:13:02 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 16:13:02 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 82 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 84 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:02 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:02 - [javax.management.remote.rmi.RMIConnectionImpl@7ad58a89: connectionId=rmi://127.0.0.1 2] closing. -2024-08-08 16:13:02 - [javax.management.remote.rmi.RMIConnectionImpl@7ad58a89: connectionId=rmi://127.0.0.1 2] closed. -2024-08-08 16:13:02 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-08 16:13:02 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 16:13:02 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 16:13:02 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-08 16:13:02 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 16:13:02 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 16:13:02 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-08 16:13:02 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 16:13:02 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 16:13:02 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-08 16:13:02 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 16:13:02 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 16:13:02 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-08 16:13:02 - Starting post-init callbacks -2024-08-08 16:13:02 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-08 16:13:02 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-08 16:13:02 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-08 16:13:02 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-08 16:13:02 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-08 16:13:02 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-08 16:13:02 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-08 16:13:02 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-08 16:13:02 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-08 16:13:02 - Created new SQL alias : ba1_0 -2024-08-08 16:13:02 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-08 16:13:02 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@10c1682b] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-08 16:13:02 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-08 16:13:02 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-08 16:13:02 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-08 16:13:02 - Version select: select id from bill_action where id=? -2024-08-08 16:13:02 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-08 16:13:02 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-08 16:13:02 - Delete (0): delete from bill_action where id=? -2024-08-08 16:13:02 - Created new SQL alias : ma1_0 -2024-08-08 16:13:02 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-08 16:13:02 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@49c72fb7] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-08 16:13:02 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-08 16:13:02 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-08 16:13:02 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-08 16:13:02 - Version select: select id from member_action where id=? -2024-08-08 16:13:02 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-08 16:13:02 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-08 16:13:02 - Delete (0): delete from member_action where id=? -2024-08-08 16:13:02 - Created new SQL alias : e1_0 -2024-08-08 16:13:02 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-08 16:13:02 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-08 16:13:02 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-08 16:13:02 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-08 16:13:02 - Version select: select id from event where id=? -2024-08-08 16:13:02 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-08 16:13:02 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-08 16:13:02 - Delete (0): delete from event where id=? -2024-08-08 16:13:02 - Created new SQL alias : a1_0 -2024-08-08 16:13:02 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-08 16:13:02 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2f83467] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-08 16:13:02 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-08 16:13:02 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-08 16:13:02 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-08 16:13:02 - Version select: select id from action where id=? -2024-08-08 16:13:02 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-08 16:13:02 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-08 16:13:02 - Delete (0): delete from action where id=? -2024-08-08 16:13:02 - Created new SQL alias : es1_0 -2024-08-08 16:13:02 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-08 16:13:02 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@62aefc75] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-08 16:13:02 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-08 16:13:02 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-08 16:13:02 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-08 16:13:02 - Version select: select id from event_step where id=? -2024-08-08 16:13:02 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-08 16:13:02 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-08 16:13:02 - Delete (0): delete from event_step where id=? -2024-08-08 16:13:02 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-08 16:13:02 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@603b9d4b] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@969c2f9] -2024-08-08 16:13:02 - Checking 0 named HQL queries -2024-08-08 16:13:02 - Checking 0 named SQL queries -2024-08-08 16:13:02 - - drop table if exists action cascade -2024-08-08 16:13:02 - - drop table if exists bill_action cascade -2024-08-08 16:13:02 - - drop table if exists event cascade -2024-08-08 16:13:02 - - drop table if exists event_step cascade -2024-08-08 16:13:02 - - drop table if exists member_action cascade -2024-08-08 16:13:02 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-08 16:13:02 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-08 16:13:02 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-08 16:13:02 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-08 16:13:02 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-08 16:13:02 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-08 16:13:02 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-08 16:13:02 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-08 16:13:02 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-08 16:13:02 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@15e748b5 -2024-08-08 16:13:02 - Registering SessionFactory: fb478a85-b95f-4205-b00b-849fbfcb902c (<unnamed>) -2024-08-08 16:13:02 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-08 16:13:02 - Instantiated SessionFactory -2024-08-08 16:13:02 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'actionService' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-08 16:13:02 - Initializing JpaMetamodelMappingContext… -2024-08-08 16:13:02 - Finished initializing JpaMetamodelMappingContext -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - Statistics initialized [enabled=false] -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-08 16:13:02 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-08 16:13:02 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-08 16:13:02 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 16:13:02 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - Looking up named query BillAction.findByAction_Event -2024-08-08 16:13:02 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 16:13:02 - Did not find named query BillAction.findByAction_Event -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - Looking up named query BillAction.findByAction_Id -2024-08-08 16:13:02 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 16:13:02 - Did not find named query BillAction.findByAction_Id -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 16:13:02 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 16:13:02 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 16:13:02 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 16:13:02 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-08 16:13:02 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 16:13:02 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-08 16:13:02 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 16:13:02 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 16:13:02 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 16:13:02 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 16:13:02 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-08 16:13:02 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 16:13:02 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-08 16:13:02 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 16:13:02 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 16:13:02 - Did not find named query MemberAction.findAllByEvent.count -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-08 16:13:02 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 16:13:02 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(794497835307083)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(794497835307083)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(794497835307083)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(794497835307083)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(794497835307083).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 16:13:02 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 16:13:02 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-08 16:13:02 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 16:13:02 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 16:13:02 - Looking up named query MemberAction.findByAction -2024-08-08 16:13:02 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 16:13:02 - Did not find named query MemberAction.findByAction -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'eventRepository' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - Looking up named query Event.findByToken -2024-08-08 16:13:02 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 16:13:02 - Did not find named query Event.findByToken -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-08 16:13:02 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-08 16:13:02 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-08 16:13:02 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'billActionService' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'actionRepository' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 16:13:02 - Did not find named query Action.findLastByEvent.count -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-08 16:13:02 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 16:13:02 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 16:13:02 - Looking up named query Action.findByIdAndEvent -2024-08-08 16:13:02 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 16:13:02 - Did not find named query Action.findByIdAndEvent -2024-08-08 16:13:02 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 16:13:02 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-08 16:13:02 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-08 16:13:02 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-08 16:13:02 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'eventService' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-08 16:13:02 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-08 16:13:02 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-08 16:13:02 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-08 16:13:02 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-08 16:13:02 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'memberActionService' -2024-08-08 16:13:02 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-08 16:13:02 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-08 16:13:02 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-08 16:13:02 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 16:13:02 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-08 16:13:02 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'actionController' -2024-08-08 16:13:02 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'billActionController' -2024-08-08 16:13:02 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'eventController' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'authService' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-08 16:13:02 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-08 16:13:02 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'memberActionController' -2024-08-08 16:13:02 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-08 16:13:02 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-08 16:13:02 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-08 16:13:02 - Loaded expression factory via original TCCL -2024-08-08 16:13:02 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-08 16:13:02 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-08 16:13:02 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 16:13:02 - Trying to load META-INF/validation.xml via user class loader -2024-08-08 16:13:02 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 16:13:02 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 16:13:02 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 16:13:02 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 16:13:02 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 16:13:02 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 16:13:02 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 16:13:02 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 16:13:02 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 16:13:02 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 16:13:02 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'error' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-08 16:13:02 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@6e33c391' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@6e33c391' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-08 16:13:02 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-08 16:13:02 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-08 16:13:02 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-08 16:13:02 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-08 16:13:02 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 16:13:02 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-08 16:13:02 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-08 16:13:02 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 16:13:02 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'localeResolver' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'themeResolver' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-08 16:13:02 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 16:13:02 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 16:13:02 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 82 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 82 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 82 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 84 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 82 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 82 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:02 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 82 -2024-08-08 16:13:02 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:02 - [javax.management.remote.rmi.RMIConnectionImpl@5de50052: connectionId=rmi://127.0.0.1 3] closing. -2024-08-08 16:13:02 - [javax.management.remote.rmi.RMIConnectionImpl@5de50052: connectionId=rmi://127.0.0.1 3] closed. -2024-08-08 16:13:02 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-08 16:13:02 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-08 16:13:02 - - s.h.p.EventController: - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/{memberName}]}: updateMember(String,String,MemberUpdateRequest) -2024-08-08 16:13:02 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-08 16:13:02 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-08 16:13:02 - 16 mappings in 'requestMappingHandlerMapping' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-08 16:13:02 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 16:13:02 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-08 16:13:02 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 16:13:02 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 16:13:02 - 'beanNameHandlerMapping' {} -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-08 16:13:02 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 16:13:02 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'messageConverters' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-08 16:13:02 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-08 16:13:02 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-08 16:13:02 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-08 16:13:02 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'pageModule' -2024-08-08 16:13:02 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-08 16:13:02 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 16:13:02 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-08 16:13:02 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-08 16:13:02 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 16:13:02 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 16:13:02 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 16:13:02 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-08 16:13:02 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 16:13:02 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-08 16:13:02 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'sortResolver' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-08 16:13:02 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-08 16:13:02 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-08 16:13:02 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-08 16:13:02 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-08 16:13:02 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-08 16:13:02 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 16:13:02 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-08 16:13:02 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 16:13:02 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@6e33c391' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-08 16:13:02 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'transactionManager' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-08 16:13:02 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-08 16:13:02 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-08 16:13:02 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-08 16:13:02 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-08 16:13:02 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-08 16:13:02 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-08 16:13:02 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-08 16:13:02 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-08 16:13:02 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-08 16:13:02 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-08 16:13:02 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-08 16:13:02 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-08 16:13:02 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-08 16:13:02 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-08 16:13:02 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-08 16:13:02 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-08 16:13:02 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@6e33c391' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-08 16:13:02 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-08 16:13:02 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-08 16:13:02 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-08 16:13:02 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-08 16:13:02 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-08 16:13:02 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-08 16:13:02 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-08 16:13:02 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-08 16:13:02 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-08 16:13:02 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-08 16:13:02 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 16:13:02 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-08 16:13:02 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 16:13:02 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 16:13:02 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 16:13:02 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-08 16:13:02 - Using SLF4J as the default logging framework -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-08 16:13:02 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-08 16:13:02 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-08 16:13:02 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-08 16:13:02 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-08 16:13:02 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'observedAspect' -2024-08-08 16:13:02 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-08 16:13:02 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-08 16:13:02 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 16:13:02 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-08 16:13:02 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 16:13:02 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-08 16:13:02 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-08 16:13:02 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-08 16:13:02 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-08 16:13:02 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-08 16:13:02 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-08 16:13:02 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-08 16:13:02 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 16:13:02 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 16:13:02 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 16:13:02 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-08 16:13:02 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-08 16:13:02 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-08 16:13:02 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 16:13:02 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 16:13:02 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-08 16:13:02 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-08 16:13:02 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-08 16:13:02 - Registering beans for JMX exposure on startup -2024-08-08 16:13:02 - Auto-detecting user-defined JMX MBeans -2024-08-08 16:13:02 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-08 16:13:02 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-08 16:13:02 - Starting beans in phase -2147483647 -2024-08-08 16:13:02 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-08 16:13:02 - Starting beans in phase 2147481599 -2024-08-08 16:13:02 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-08 16:13:02 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-08 16:13:02 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-08 16:13:02 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-08 16:13:02 - Tomcat started on port 8080 (http) with context path '/' -2024-08-08 16:13:02 - Successfully started bean 'webServerStartStop' -2024-08-08 16:13:02 - Starting beans in phase 2147482623 -2024-08-08 16:13:02 - Successfully started bean 'webServerGracefulShutdown' -2024-08-08 16:13:02 - Starting beans in phase 2147483647 -2024-08-08 16:13:02 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-08 16:13:02 - Started HaengdongApplication in 2.387 seconds (process running for 2.754) -2024-08-08 16:13:02 - Application availability state LivenessState changed to CORRECT -2024-08-08 16:13:02 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-08 16:13:03 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 82 -2024-08-08 16:13:03 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 84 -2024-08-08 16:13:03 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 16:13:03 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 82 -2024-08-08 16:13:03 - RMI TCP Connection(1)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - [javax.management.remote.rmi.RMIConnectionImpl@2cedbfa2: connectionId=rmi://127.0.0.1 4] closing. -2024-08-08 16:13:03 - [javax.management.remote.rmi.RMIConnectionImpl@2cedbfa2: connectionId=rmi://127.0.0.1 4] closed. -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:49273] -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:49274] -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 84 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 84 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - [javax.management.remote.rmi.RMIConnectionImpl@57f4e30b: connectionId=rmi://127.0.0.1 5] closing. -2024-08-08 16:13:03 - [javax.management.remote.rmi.RMIConnectionImpl@57f4e30b: connectionId=rmi://127.0.0.1 5] closed. -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 84 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - [javax.management.remote.rmi.RMIConnectionImpl@e3eab38: connectionId=rmi://127.0.0.1 6] closing. -2024-08-08 16:13:03 - [javax.management.remote.rmi.RMIConnectionImpl@e3eab38: connectionId=rmi://127.0.0.1 6] closed. -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - [javax.management.remote.rmi.RMIConnectionImpl@52930d4f: connectionId=rmi://127.0.0.1 7] closing. -2024-08-08 16:13:03 - [javax.management.remote.rmi.RMIConnectionImpl@52930d4f: connectionId=rmi://127.0.0.1 7] closed. -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 84 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 82 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - [javax.management.remote.rmi.RMIConnectionImpl@23865b70: connectionId=rmi://127.0.0.1 8] closing. -2024-08-08 16:13:03 - [javax.management.remote.rmi.RMIConnectionImpl@23865b70: connectionId=rmi://127.0.0.1 8] closed. -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 82 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 84 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 84 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 82 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - [javax.management.remote.rmi.RMIConnectionImpl@112ff063: connectionId=rmi://127.0.0.1 9] closing. -2024-08-08 16:13:03 - [javax.management.remote.rmi.RMIConnectionImpl@112ff063: connectionId=rmi://127.0.0.1 9] closed. -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - [javax.management.remote.rmi.RMIConnectionImpl@2cc80d00: connectionId=rmi://127.0.0.1 10] closing. -2024-08-08 16:13:03 - [javax.management.remote.rmi.RMIConnectionImpl@2cc80d00: connectionId=rmi://127.0.0.1 10] closed. -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 84 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 84 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:13:03 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-08 16:13:03 - Fetching JDBC Connection from DataSource -2024-08-08 16:13:03 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-08 16:13:03 - Initializing Servlet 'dispatcherServlet' -2024-08-08 16:13:03 - Fetching JDBC Connection from DataSource -2024-08-08 16:13:03 - Detected StandardServletMultipartResolver -2024-08-08 16:13:03 - Detected AcceptHeaderLocaleResolver -2024-08-08 16:13:03 - Detected FixedThemeResolver -2024-08-08 16:13:03 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@188f626a -2024-08-08 16:13:03 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@442545ab -2024-08-08 16:13:03 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-08 16:13:03 - Completed initialization in 1 ms -2024-08-08 16:13:03 - RMI TCP Connection(3)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - [javax.management.remote.rmi.RMIConnectionImpl@68db1a4b: connectionId=rmi://127.0.0.1 11] closing. -2024-08-08 16:13:03 - [javax.management.remote.rmi.RMIConnectionImpl@68db1a4b: connectionId=rmi://127.0.0.1 11] closed. -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 82 -2024-08-08 16:13:03 - RMI TCP Connection(2)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:13:03 - [javax.management.remote.rmi.RMIConnectionImpl@2e84ea78: connectionId=rmi://127.0.0.1 12] closing. -2024-08-08 16:13:03 - [javax.management.remote.rmi.RMIConnectionImpl@2e84ea78: connectionId=rmi://127.0.0.1 12] closed. -2024-08-08 16:13:08 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.3624567406192400725/conf/jaspic-providers.xml] -2024-08-08 16:13:08 - GET "/", parameters={} -2024-08-08 16:13:08 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 16:13:08 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 16:13:08 - Resource not found -2024-08-08 16:13:08 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 16:13:08 - Using 'application/json;q=0.8', given [text/html, application/xhtml+xml, image/avif, image/webp, image/apng, application/xml;q=0.9, */*;q=0.8, application/signed-exchange;v=b3;q=0.7] and supported [application/json, application/*+json] -2024-08-08 16:13:08 - Writing [ErrorResponse[errorCode=NO_RESOURCE_REQUEST, message=존재하지 않는 자원입니다.]] -2024-08-08 16:13:08 - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource .] -2024-08-08 16:13:08 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 16:13:08 - Completed 400 BAD_REQUEST -2024-08-08 16:13:08 - GET "/favicon.ico", parameters={} -2024-08-08 16:13:08 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 16:13:08 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 16:13:08 - Resource not found -2024-08-08 16:13:08 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 16:13:08 - Using 'application/json;q=0.8', given [image/avif, image/webp, image/apng, image/svg+xml, image/*, */*;q=0.8] and supported [application/json, application/*+json] -2024-08-08 16:13:08 - Writing [ErrorResponse[errorCode=NO_RESOURCE_REQUEST, message=존재하지 않는 자원입니다.]] -2024-08-08 16:13:08 - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource favicon.ico.] -2024-08-08 16:13:08 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 16:13:08 - Completed 400 BAD_REQUEST -2024-08-08 16:13:18 - GET "/docs/index.html", parameters={} -2024-08-08 16:13:18 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 16:13:18 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 16:13:18 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 16:13:18 - Completed 200 OK -2024-08-08 16:13:18 - GET "/favicon.ico", parameters={} -2024-08-08 16:13:18 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 16:13:18 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 16:13:18 - Resource not found -2024-08-08 16:13:18 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 16:13:18 - Using 'application/json;q=0.8', given [image/avif, image/webp, image/apng, image/svg+xml, image/*, */*;q=0.8] and supported [application/json, application/*+json] -2024-08-08 16:13:18 - Writing [ErrorResponse[errorCode=NO_RESOURCE_REQUEST, message=존재하지 않는 자원입니다.]] -2024-08-08 16:13:18 - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource favicon.ico.] -2024-08-08 16:13:18 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 16:13:18 - Completed 400 BAD_REQUEST -2024-08-08 16:13:18 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 16:13:18 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 16:13:31 - RMI TCP Connection(1)-127.0.0.1: (port 49259) connection closed -2024-08-08 16:13:31 - RMI TCP Connection(3)-127.0.0.1: (port 49259) connection closed -2024-08-08 16:13:31 - RMI TCP Connection(2)-127.0.0.1: (port 49259) connection closed -2024-08-08 16:13:31 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=49274,localport=49259] -2024-08-08 16:13:31 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=49264,localport=49259] -2024-08-08 16:13:31 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=49273,localport=49259] -2024-08-08 16:13:31 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=49274,localport=49259] -2024-08-08 16:13:31 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=49273,localport=49259] -2024-08-08 16:13:31 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=49264,localport=49259] -2024-08-08 16:13:31 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:13:31 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:14:01 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:14:01 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:14:31 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:14:31 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:15:01 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:15:01 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:15:31 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:15:31 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:16:01 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:16:01 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:16:31 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:16:31 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:17:01 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:17:01 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:17:30 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:50467] -2024-08-08 16:17:30 - RMI TCP Connection(4)-127.0.0.1: (port 49259) op = 80 -2024-08-08 16:17:30 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:17:30 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:17:30 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:17:30 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:17:30 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1edfedf1 -2024-08-08 16:17:31 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:17:31 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:17:45 - RMI TCP Connection(4)-127.0.0.1: (port 49259) connection closed -2024-08-08 16:17:45 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=50467,localport=49259] -2024-08-08 16:17:45 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=50467,localport=49259] -2024-08-08 16:18:01 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:18:01 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:18:31 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:18:31 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:19:01 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:19:01 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:19:31 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:19:31 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:20:01 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:20:01 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:20:31 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:20:31 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:21:01 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:21:01 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:21:31 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:21:31 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:22:01 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:22:01 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:22:31 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:22:31 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:23:01 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:23:01 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:23:31 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:23:31 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:24:01 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:24:01 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:24:31 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:24:31 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:25:01 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:25:01 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:25:31 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:25:31 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:26:01 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:26:01 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:26:31 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:26:31 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:27:01 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:27:01 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:27:31 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:27:31 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:28:01 - RMI Scheduler(0): 1190155ab4a53be5:434f66b3:19130d57651:-7fff -2024-08-08 16:28:01 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:28:01 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:28:31 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:28:31 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:29:01 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:29:01 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:29:31 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:29:31 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 16:29:33 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-08 16:29:33 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4bf3798b, started on Thu Aug 08 16:13:00 KST 2024 -2024-08-08 16:29:33 - Stopping beans in phase 2147483647 -2024-08-08 16:29:33 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-08 16:29:33 - Stopping beans in phase 2147482623 -2024-08-08 16:29:33 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-08 16:29:33 - Stopping beans in phase 2147481599 -2024-08-08 16:29:33 - Bean 'webServerStartStop' completed its stop procedure -2024-08-08 16:29:33 - Stopping beans in phase -2147483647 -2024-08-08 16:29:33 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-08 16:29:33 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-08 16:29:33 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-08 16:29:33 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-08 16:29:33 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-08 16:29:33 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-08 16:29:33 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-08 16:29:33 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-08 16:29:33 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-08 16:29:33 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-08 16:29:33 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-08 16:29:33 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-08 16:29:33 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-08 16:29:33 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-08 16:29:33 - Unregistering JMX-exposed beans on shutdown -2024-08-08 16:29:33 - Unregistering JMX-exposed beans -2024-08-08 16:29:33 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-08 16:29:33 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 16:29:33 - HHH000031: Closing -2024-08-08 16:29:33 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@4fd6904f] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@969c2f9] -2024-08-08 16:29:33 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-08 16:29:33 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-08 16:29:33 - HikariPool-1 - Shutdown initiated... -2024-08-08 16:29:33 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 16:29:33 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 16:29:33 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 16:29:33 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 16:29:33 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 16:29:33 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 16:29:33 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 16:29:33 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 16:29:33 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 16:29:33 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 16:29:33 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 16:29:33 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-08 16:29:33 - HikariPool-1 - Shutdown completed. -2024-08-08 16:29:33 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-08 20:48:50 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-08 20:48:50 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-08 20:48:50 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 20:48:50 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 20:48:50 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 20:48:50 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 20:48:50 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 20:48:50 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 20:48:50 - Loaded expression factory via original TCCL -2024-08-08 20:48:50 - Starting HaengdongApplication using Java 17.0.12 with PID 29432 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-08 20:48:50 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-08 20:48:50 - No active profile set, falling back to 1 default profile: "default" -2024-08-08 20:48:50 - Loading source class server.haengdong.HaengdongApplication -2024-08-08 20:48:50 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0 -2024-08-08 20:48:50 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-08 20:48:50 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 20:48:50 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-08 20:48:50 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 20:48:50 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 20:48:50 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 20:48:50 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 20:48:50 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 20:48:50 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-08 20:48:50 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-08 20:48:50 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-08 20:48:50 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-08 20:48:50 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-08 20:48:50 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-08 20:48:50 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 20:48:50 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 20:48:50 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 20:48:50 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-08 20:48:50 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 20:48:50 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-08 20:48:50 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-08 20:48:50 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-08 20:48:50 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-08 20:48:50 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-08 20:48:50 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-08 20:48:51 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-08 20:48:51 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-08 20:48:51 - Scanning for JPA repositories in packages server.haengdong. -2024-08-08 20:48:51 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 20:48:51 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 20:48:51 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 20:48:51 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 20:48:51 - Finished Spring Data repository scanning in 16 ms. Found 4 JPA repository interfaces. -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-08 20:48:51 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-08 20:48:51 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-08 20:48:51 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 20:48:51 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-08 20:48:51 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 20:48:51 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 20:48:51 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-08 20:48:51 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-08 20:48:51 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@110e9982] -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-08 20:48:51 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-08 20:48:51 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-08 20:48:51 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-08 20:48:51 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-08 20:48:51 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-08 20:48:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-08 20:48:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-08 20:48:51 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 20:48:51 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:48:51 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:48:51 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:48:51 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-08 20:48:51 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 20:48:51 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 20:48:51 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-08 20:48:51 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-08 20:48:51 - Tomcat initialized with port 8080 (http) -2024-08-08 20:48:51 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4c635edc] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4c635edc] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.mapper.MapperListener@6a8a551e] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.mapper.MapperListener@6a8a551e] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-08 20:48:51 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-08 20:48:51 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4c635edc] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4c635edc] to [STARTING] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@4c635edc] to [STARTED] -2024-08-08 20:48:51 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-08 20:48:51 - Starting service [Tomcat] -2024-08-08 20:48:51 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-08 20:48:51 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-08 20:48:51 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.webresources.StandardRoot@73e4bb60] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.webresources.StandardRoot@73e4bb60] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.webresources.StandardRoot@73e4bb60] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.webresources.DirResourceSet@6e685e6c] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.webresources.DirResourceSet@6e685e6c] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.webresources.DirResourceSet@6e685e6c] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.webresources.DirResourceSet@6e685e6c] to [STARTING] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.webresources.DirResourceSet@6e685e6c] to [STARTED] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.webresources.StandardRoot@73e4bb60] to [STARTING] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.webresources.StandardRoot@73e4bb60] to [STARTED] -2024-08-08 20:48:51 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 20:48:51 - Starting this Loader -2024-08-08 20:48:51 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 20:48:51 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 20:48:51 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-08 20:48:51 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@11826398] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@11826398] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@11826398] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@11826398] to [STARTING] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@11826398] to [STARTED] -2024-08-08 20:48:51 - Initializing Spring embedded WebApplicationContext -2024-08-08 20:48:51 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-08 20:48:51 - Root WebApplicationContext: initialization completed in 640 ms -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-08 20:48:51 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-08 20:48:51 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-08 20:48:51 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-08 20:48:51 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 20:48:51 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-08 20:48:51 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'h2Console' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'dataSource' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-08 20:48:51 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-08 20:48:51 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-08 20:48:51 - HikariPool-1 - configuration: -2024-08-08 20:48:51 - allowPoolSuspension.............false -2024-08-08 20:48:51 - autoCommit......................true -2024-08-08 20:48:51 - catalog.........................none -2024-08-08 20:48:51 - connectionInitSql...............none -2024-08-08 20:48:51 - connectionTestQuery.............none -2024-08-08 20:48:51 - connectionTimeout...............30000 -2024-08-08 20:48:51 - dataSource......................none -2024-08-08 20:48:51 - dataSourceClassName.............none -2024-08-08 20:48:51 - dataSourceJNDI..................none -2024-08-08 20:48:51 - dataSourceProperties............{password=<masked>} -2024-08-08 20:48:51 - driverClassName................."org.h2.Driver" -2024-08-08 20:48:51 - exceptionOverrideClassName......none -2024-08-08 20:48:51 - healthCheckProperties...........{} -2024-08-08 20:48:51 - healthCheckRegistry.............none -2024-08-08 20:48:51 - idleTimeout.....................600000 -2024-08-08 20:48:51 - initializationFailTimeout.......1 -2024-08-08 20:48:51 - isolateInternalQueries..........false -2024-08-08 20:48:51 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-08 20:48:51 - keepaliveTime...................0 -2024-08-08 20:48:51 - leakDetectionThreshold..........0 -2024-08-08 20:48:51 - maxLifetime.....................1800000 -2024-08-08 20:48:51 - maximumPoolSize.................10 -2024-08-08 20:48:51 - metricRegistry..................none -2024-08-08 20:48:51 - metricsTrackerFactory...........none -2024-08-08 20:48:51 - minimumIdle.....................10 -2024-08-08 20:48:51 - password........................<masked> -2024-08-08 20:48:51 - poolName........................"HikariPool-1" -2024-08-08 20:48:51 - readOnly........................false -2024-08-08 20:48:51 - registerMbeans..................false -2024-08-08 20:48:51 - scheduledExecutor...............none -2024-08-08 20:48:51 - schema..........................none -2024-08-08 20:48:51 - threadFactory...................internal -2024-08-08 20:48:51 - transactionIsolation............default -2024-08-08 20:48:51 - username........................"sa" -2024-08-08 20:48:51 - validationTimeout...............5000 -2024-08-08 20:48:51 - HikariPool-1 - Starting... -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:61110] -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: (port 61109) op = 84 -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:51 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:51 - [javax.management.remote.rmi.RMIConnectionImpl@3df597ce: connectionId=rmi://127.0.0.1 1] closing. -2024-08-08 20:48:51 - [javax.management.remote.rmi.RMIConnectionImpl@3df597ce: connectionId=rmi://127.0.0.1 1] closed. -2024-08-08 20:48:51 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-08 20:48:51 - HikariPool-1 - Start completed. -2024-08-08 20:48:51 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-08 20:48:51 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-08 20:48:51 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:48:51 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-08 20:48:51 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 20:48:51 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-08 20:48:51 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-08 20:48:51 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-08 20:48:51 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-08 20:48:51 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-08 20:48:51 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5341e71a] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5341e71a] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5341e71a] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5341e71a] to [STARTING] -2024-08-08 20:48:51 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@5341e71a] to [STARTED] -2024-08-08 20:48:51 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 20:48:51 - Filter 'requestContextFilter' configured for use -2024-08-08 20:48:51 - Filter 'webMvcObservationFilter' configured for use -2024-08-08 20:48:51 - Filter 'characterEncodingFilter' configured for use -2024-08-08 20:48:51 - Filter 'formContentFilter' configured for use -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 20:48:51 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 20:48:51 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 20:48:51 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-08 20:48:51 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.mapper.MapperListener@6a8a551e] to [STARTING_PREP] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.mapper.MapperListener@6a8a551e] to [STARTING] -2024-08-08 20:48:51 - Registered host [localhost] -2024-08-08 20:48:51 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-08 20:48:51 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-08 20:48:51 - Register Context [] for service [StandardService[Tomcat]] -2024-08-08 20:48:51 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-08 20:48:51 - Setting state for [org.apache.catalina.mapper.MapperListener@6a8a551e] to [STARTED] -2024-08-08 20:48:51 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-08 20:48:51 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-08 20:48:51 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-08 20:48:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 20:48:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@7db0565c' -2024-08-08 20:48:51 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-08 20:48:51 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-08 20:48:51 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-08 20:48:51 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@7db0565c' -2024-08-08 20:48:51 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:48:51 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-08 20:48:51 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-08 20:48:51 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-08 20:48:51 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-08 20:48:51 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-08 20:48:51 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-08 20:48:51 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-08 20:48:51 - HHH000206: 'hibernate.properties' not found -2024-08-08 20:48:51 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-08 20:48:51 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-08 20:48:51 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-08 20:48:51 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-08 20:48:51 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 20:48:51 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 20:48:51 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-08 20:48:51 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-08 20:48:51 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-08 20:48:51 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 20:48:51 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-08 20:48:51 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-08 20:48:51 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 20:48:51 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-08 20:48:51 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-08 20:48:51 - HHH000026: Second-level cache disabled -2024-08-08 20:48:51 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-08 20:48:51 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-08 20:48:51 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 20:48:51 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 20:48:51 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@43778371 -2024-08-08 20:48:51 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 20:48:51 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@71beada8 -2024-08-08 20:48:51 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 20:48:51 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@17f41739 -2024-08-08 20:48:51 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-08 20:48:51 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@2b3b1124 -2024-08-08 20:48:51 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-08 20:48:51 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-08 20:48:51 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-08 20:48:51 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-08 20:48:51 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-08 20:48:51 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-08 20:48:51 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-08 20:48:51 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-08 20:48:51 - Adding type registration image -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 20:48:51 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 20:48:51 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 20:48:51 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 20:48:51 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-08 20:48:51 - Adding type registration short -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 20:48:51 - Adding type registration short -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 20:48:51 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 20:48:51 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 20:48:51 - Adding type registration int -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 20:48:51 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 20:48:51 - Adding type registration long -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-08 20:48:51 - Adding type registration long -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-08 20:48:51 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-08 20:48:51 - Adding type registration float -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-08 20:48:51 - Adding type registration float -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-08 20:48:51 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-08 20:48:51 - Adding type registration double -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 20:48:51 - Adding type registration double -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 20:48:51 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 20:48:51 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-08 20:48:51 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-08 20:48:51 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-08 20:48:51 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-08 20:48:51 - Adding type registration character -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 20:48:51 - Adding type registration char -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 20:48:51 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 20:48:51 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 20:48:51 - Adding type registration string -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 20:48:51 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 20:48:51 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 20:48:51 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 20:48:51 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 20:48:51 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 20:48:51 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-08 20:48:51 - Adding type registration text -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-08 20:48:51 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-08 20:48:51 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-08 20:48:51 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-08 20:48:51 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-08 20:48:51 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-08 20:48:51 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-08 20:48:51 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-08 20:48:51 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 20:48:51 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 20:48:51 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-08 20:48:51 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-08 20:48:51 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 20:48:51 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 20:48:51 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 20:48:51 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 20:48:51 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-08 20:48:51 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-08 20:48:51 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-08 20:48:51 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-08 20:48:51 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-08 20:48:51 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-08 20:48:51 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-08 20:48:51 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-08 20:48:51 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-08 20:48:51 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-08 20:48:51 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-08 20:48:51 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-08 20:48:51 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-08 20:48:51 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-08 20:48:51 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-08 20:48:51 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-08 20:48:51 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-08 20:48:51 - Adding type registration date -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-08 20:48:51 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-08 20:48:51 - Adding type registration time -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-08 20:48:51 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-08 20:48:51 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-08 20:48:51 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-08 20:48:51 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-08 20:48:51 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-08 20:48:51 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-08 20:48:51 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-08 20:48:51 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-08 20:48:51 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-08 20:48:51 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-08 20:48:51 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-08 20:48:51 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-08 20:48:51 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-08 20:48:51 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-08 20:48:51 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-08 20:48:51 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@2c5708e7 -2024-08-08 20:48:51 - Adding type registration class -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-08 20:48:51 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-08 20:48:51 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@4e26564d -2024-08-08 20:48:51 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@4e26564d -2024-08-08 20:48:51 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@4e26564d -2024-08-08 20:48:51 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@42238078 -2024-08-08 20:48:51 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@42238078 -2024-08-08 20:48:51 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@5627b8eb -2024-08-08 20:48:51 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@5627b8eb -2024-08-08 20:48:51 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@49fe0bcd -2024-08-08 20:48:51 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@49fe0bcd -2024-08-08 20:48:51 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@3516b881 -2024-08-08 20:48:51 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@3516b881 -2024-08-08 20:48:51 - Adding type registration url -> org.hibernate.type.BasicTypeReference@6be8ce1b -2024-08-08 20:48:51 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@6be8ce1b -2024-08-08 20:48:51 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@e3c36d -2024-08-08 20:48:51 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@397a10df -2024-08-08 20:48:51 - Adding type registration object -> org.hibernate.type.JavaObjectType@18ac4af6 -2024-08-08 20:48:51 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@18ac4af6 -2024-08-08 20:48:51 - Adding type registration null -> org.hibernate.type.NullType@4bc21e34 -2024-08-08 20:48:51 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@7544260a -2024-08-08 20:48:51 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@bb6869a -2024-08-08 20:48:51 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@506b083 -2024-08-08 20:48:51 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@5eee3da9 -2024-08-08 20:48:51 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@ace2408 -2024-08-08 20:48:51 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@3573e19d -2024-08-08 20:48:51 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@5c1dd18 -2024-08-08 20:48:51 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@2a6dbb7c -2024-08-08 20:48:51 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@3dfc59c5] into BootstrapContext; was [null] -2024-08-08 20:48:51 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@3dfc59c5) [was null] -2024-08-08 20:48:51 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@25df2014] into BootstrapContext; was [null] -2024-08-08 20:48:51 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@270b8c2a] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@7b9c2387] -2024-08-08 20:48:51 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-08 20:48:51 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-08 20:48:51 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-08 20:48:51 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-08 20:48:51 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-08 20:48:51 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-08 20:48:51 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-08 20:48:51 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@3dfc59c5] -2024-08-08 20:48:51 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@3dfc59c5] -2024-08-08 20:48:51 - HikariPool-1 - After adding stats (total=6, active=1, idle=5, waiting=0) -2024-08-08 20:48:51 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 20:48:51 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 20:48:51 - JDBC version : 4.2 -2024-08-08 20:48:51 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: (port 61109) connection closed -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=61110,localport=61109] -2024-08-08 20:48:51 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:61111] -2024-08-08 20:48:51 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=61110,localport=61109] -2024-08-08 20:48:51 - RMI TCP Connection(2)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:51 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:51 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:51 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:51 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-08 20:48:51 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-08 20:48:51 - HikariPool-1 - After adding stats (total=7, active=1, idle=6, waiting=0) -2024-08-08 20:48:51 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-08 20:48:51 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-08 20:48:51 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-08 20:48:51 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-08 20:48:51 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 20:48:51 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 20:48:51 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-08 20:48:52 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-08 20:48:52 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 20:48:52 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 20:48:52 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@2553dcc0] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@2e91cf69] -2024-08-08 20:48:52 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-08 20:48:52 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-08 20:48:52 - Import with entity name Action -2024-08-08 20:48:52 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-08 20:48:52 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-08 20:48:52 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-08 20:48:52 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 20:48:52 - Binding column: AnnotatedColumn() -2024-08-08 20:48:52 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 20:48:52 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 20:48:52 - MetadataSourceProcessor property id with lazy=false -2024-08-08 20:48:52 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-08 20:48:52 - building BasicValue for id -2024-08-08 20:48:52 - Skipping column re-registration: action.id -2024-08-08 20:48:52 - Building property id -2024-08-08 20:48:52 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 20:48:52 - Binding column: AnnotatedJoinColumn() -2024-08-08 20:48:52 - Binding column: AnnotatedColumn() -2024-08-08 20:48:52 - Building property event -2024-08-08 20:48:52 - Binding column: AnnotatedColumn() -2024-08-08 20:48:52 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 20:48:52 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-08 20:48:52 - building BasicValue for sequence -2024-08-08 20:48:52 - Skipping column re-registration: action.sequence -2024-08-08 20:48:52 - Building property sequence -2024-08-08 20:48:52 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 20:48:52 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-08 20:48:52 - Import with entity name BillAction -2024-08-08 20:48:52 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-08 20:48:52 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 20:48:52 - Binding column: AnnotatedColumn() -2024-08-08 20:48:52 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 20:48:52 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 20:48:52 - MetadataSourceProcessor property id with lazy=false -2024-08-08 20:48:52 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-08 20:48:52 - building BasicValue for id -2024-08-08 20:48:52 - Skipping column re-registration: bill_action.id -2024-08-08 20:48:52 - Building property id -2024-08-08 20:48:52 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 20:48:52 - Binding column: AnnotatedJoinColumn() -2024-08-08 20:48:52 - Binding column: AnnotatedColumn() -2024-08-08 20:48:52 - Building property action -2024-08-08 20:48:52 - Binding column: AnnotatedColumn() -2024-08-08 20:48:52 - MetadataSourceProcessor property price with lazy=false -2024-08-08 20:48:52 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-08 20:48:52 - building BasicValue for price -2024-08-08 20:48:52 - Skipping column re-registration: bill_action.price -2024-08-08 20:48:52 - Building property price -2024-08-08 20:48:52 - Binding column: AnnotatedColumn() -2024-08-08 20:48:52 - MetadataSourceProcessor property title with lazy=false -2024-08-08 20:48:52 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-08 20:48:52 - building BasicValue for title -2024-08-08 20:48:52 - Skipping column re-registration: bill_action.title -2024-08-08 20:48:52 - Building property title -2024-08-08 20:48:52 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 20:48:52 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-08 20:48:52 - Import with entity name MemberAction -2024-08-08 20:48:52 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-08 20:48:52 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 20:48:52 - Binding column: AnnotatedColumn() -2024-08-08 20:48:52 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 20:48:52 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 20:48:52 - MetadataSourceProcessor property id with lazy=false -2024-08-08 20:48:52 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-08 20:48:52 - building BasicValue for id -2024-08-08 20:48:52 - Skipping column re-registration: member_action.id -2024-08-08 20:48:52 - Building property id -2024-08-08 20:48:52 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 20:48:52 - Binding column: AnnotatedJoinColumn() -2024-08-08 20:48:52 - Binding column: AnnotatedColumn() -2024-08-08 20:48:52 - Building property action -2024-08-08 20:48:52 - Binding column: AnnotatedColumn() -2024-08-08 20:48:52 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-08 20:48:52 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-08 20:48:52 - building BasicValue for memberGroupId -2024-08-08 20:48:52 - Skipping column re-registration: member_action.member_group_id -2024-08-08 20:48:52 - Building property memberGroupId -2024-08-08 20:48:52 - Binding column: AnnotatedColumn() -2024-08-08 20:48:52 - MetadataSourceProcessor property memberName with lazy=false -2024-08-08 20:48:52 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-08 20:48:52 - building BasicValue for memberName -2024-08-08 20:48:52 - Skipping column re-registration: member_action.member_name -2024-08-08 20:48:52 - Building property memberName -2024-08-08 20:48:52 - Binding column: AnnotatedColumn() -2024-08-08 20:48:52 - MetadataSourceProcessor property status with lazy=false -2024-08-08 20:48:52 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-08 20:48:52 - building BasicValue for status -2024-08-08 20:48:52 - Skipping column re-registration: member_action.status -2024-08-08 20:48:52 - Building property status -2024-08-08 20:48:52 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 20:48:52 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-08 20:48:52 - Import with entity name Event -2024-08-08 20:48:52 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-08 20:48:52 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 20:48:52 - Binding column: AnnotatedColumn() -2024-08-08 20:48:52 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 20:48:52 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 20:48:52 - MetadataSourceProcessor property id with lazy=false -2024-08-08 20:48:52 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-08 20:48:52 - building BasicValue for id -2024-08-08 20:48:52 - Skipping column re-registration: event.id -2024-08-08 20:48:52 - Building property id -2024-08-08 20:48:52 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 20:48:52 - Binding column: AnnotatedColumn() -2024-08-08 20:48:52 - MetadataSourceProcessor property name with lazy=false -2024-08-08 20:48:52 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-08 20:48:52 - building BasicValue for name -2024-08-08 20:48:52 - Skipping column re-registration: event.name -2024-08-08 20:48:52 - Building property name -2024-08-08 20:48:52 - Binding column: AnnotatedColumn() -2024-08-08 20:48:52 - MetadataSourceProcessor property password with lazy=false -2024-08-08 20:48:52 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-08 20:48:52 - building BasicValue for password -2024-08-08 20:48:52 - Skipping column re-registration: event.password -2024-08-08 20:48:52 - Building property password -2024-08-08 20:48:52 - Binding column: AnnotatedColumn() -2024-08-08 20:48:52 - MetadataSourceProcessor property token with lazy=false -2024-08-08 20:48:52 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-08 20:48:52 - building BasicValue for token -2024-08-08 20:48:52 - Skipping column re-registration: event.token -2024-08-08 20:48:52 - Building property token -2024-08-08 20:48:52 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 20:48:52 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-08 20:48:52 - Import with entity name EventStep -2024-08-08 20:48:52 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-08 20:48:52 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 20:48:52 - Binding column: AnnotatedColumn() -2024-08-08 20:48:52 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 20:48:52 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 20:48:52 - MetadataSourceProcessor property id with lazy=false -2024-08-08 20:48:52 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-08 20:48:52 - building BasicValue for id -2024-08-08 20:48:52 - Skipping column re-registration: event_step.id -2024-08-08 20:48:52 - Building property id -2024-08-08 20:48:52 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 20:48:52 - Binding column: AnnotatedJoinColumn() -2024-08-08 20:48:52 - Binding column: AnnotatedColumn() -2024-08-08 20:48:52 - Building property event -2024-08-08 20:48:52 - Binding column: AnnotatedColumn() -2024-08-08 20:48:52 - MetadataSourceProcessor property name with lazy=false -2024-08-08 20:48:52 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-08 20:48:52 - building BasicValue for name -2024-08-08 20:48:52 - Skipping column re-registration: event_step.name -2024-08-08 20:48:52 - Building property name -2024-08-08 20:48:52 - Binding column: AnnotatedColumn() -2024-08-08 20:48:52 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 20:48:52 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-08 20:48:52 - building BasicValue for sequence -2024-08-08 20:48:52 - Skipping column re-registration: event_step.sequence -2024-08-08 20:48:52 - Building property sequence -2024-08-08 20:48:52 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 20:48:52 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 20:48:52 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 20:48:52 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 20:48:52 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-08 20:48:52 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-08 20:48:52 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 20:48:52 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-08 20:48:52 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-08 20:48:52 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-08 20:48:52 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 20:48:52 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 20:48:52 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-08 20:48:52 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-08 20:48:52 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 20:48:52 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 20:48:52 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 20:48:52 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-08 20:48:52 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-08 20:48:52 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-08 20:48:52 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-08 20:48:52 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-08 20:48:52 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-08 20:48:52 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-08 20:48:52 - Building session factory -2024-08-08 20:48:52 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 20:48:52 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@33563147, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@33239d72, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.11015256706552604525, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=29432, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.11015256706552604525, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@19c24321, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-08 20:48:52 - Session factory constructed with filter configurations : {} -2024-08-08 20:48:52 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 20:48:52 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 20:48:52 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 20:48:52 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 20:48:52 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 20:48:52 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 20:48:52 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 20:48:52 - Loaded expression factory via original TCCL -2024-08-08 20:48:52 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 20:48:52 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 20:48:52 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 20:48:52 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 20:48:52 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 20:48:52 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 20:48:52 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 20:48:52 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 20:48:52 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 20:48:52 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 20:48:52 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 20:48:52 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 20:48:52 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 20:48:52 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 20:48:52 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 20:48:52 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 20:48:52 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@29bf90fc] under count; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@394b9e22] under every; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@6e0f259e] under any; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1231f25c] under sinh; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2ba0b95f] under cosh; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3dc7c5fd] under tanh; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@62871522] under pi; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7fb9a83c] under log; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-08 20:48:52 - Registering alternate key : length -> character_length -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@1c528f2f] under position; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@2fc0ad21] under overlay; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@7901a5ab] under trim; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@1b53e6fc] under cast; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@391e2a] under collate; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@25dc2c0] under extract; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@6a8bcb64] under ifnull; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@78b2d29e] under pad; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@25b402ea] under str; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@7c4a5ef2] under format; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@38e052b2] under timestampadd; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@123d0816] under timestampdiff; prior registration was null -2024-08-08 20:48:52 - Registering alternate key : dateadd -> timestampadd -2024-08-08 20:48:52 - Registering alternate key : datediff -> timestampdiff -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5543d800] under current_date; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1e033801] under current_time; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@58e4aa67] under current_timestamp; prior registration was null -2024-08-08 20:48:52 - Registering alternate key : current date -> current_date -2024-08-08 20:48:52 - Registering alternate key : current time -> current_time -2024-08-08 20:48:52 - Registering alternate key : current timestamp -> current_timestamp -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@57ed8f95] under local_date; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1c25deb0] under local_time; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1be12e05] under local_datetime; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@66ab088c] under offset_datetime; prior registration was null -2024-08-08 20:48:52 - Registering alternate key : local date -> local_date -2024-08-08 20:48:52 - Registering alternate key : local time -> local_time -2024-08-08 20:48:52 - Registering alternate key : local datetime -> local_datetime -2024-08-08 20:48:52 - Registering alternate key : offset datetime -> offset_datetime -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5d01a2eb] under instant; prior registration was null -2024-08-08 20:48:52 - Registering alternate key : current_instant -> instant -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@13f7c165] under sql; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@655f92a1] under count; prior registration was org.hibernate.dialect.function.CountFunction@29bf90fc -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@637c8632] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@62871522 -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@156eeff1] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-08 20:48:52 - Registering alternate key : day -> day_of_month -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@1c25deb0 -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@1be12e05 -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@125a8ab6] under trunc; prior registration was null -2024-08-08 20:48:52 - Registering alternate key : truncate -> trunc -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@792b9dd3] under date_trunc; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-08 20:48:52 - Registering alternate key : chr -> char -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@cbc3bf3] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@1c528f2f -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@31f9f9b3] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-08 20:48:52 - Registering alternate key : every -> bool_and -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-08 20:48:52 - Registering alternate key : any -> bool_or -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@7730da00] under format; prior registration was org.hibernate.dialect.function.FormatFunction@7c4a5ef2 -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@62264d4f] under listagg; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@69f24965] under mode; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@4eab9aec] under percentile_cont; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@5a45c218] under percentile_disc; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@3163e03b] under rank; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@6aa18912] under dense_rank; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@5c20505f] under percent_rank; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@cce92b5] under cume_dist; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@6e00d737] under array; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@656c0eae] under array_list; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@448fa659] under array_agg; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@1a1f22f2] under array_position; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@69fe8c75] under array_positions; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@4803bf73] under array_positions_list; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@13731ff4] under array_length; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@58835bba] under array_concat; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@23cfdfa2] under array_prepend; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@1e09c0b] under array_append; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@40d04cf8] under array_contains; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@75507e68] under array_contains_nullable; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@7304ca87] under array_overlaps; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@7c07023] under array_overlaps_nullable; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2681185e] under array_get; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@f13e0a2] under array_set; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@4fe3f9ef] under array_remove; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@b75f3f4] under array_remove_index; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@691a5c3a] under array_slice; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@9fd3b61] under array_replace; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4a34de5e] under array_trim; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@4ef277ef] under array_fill; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@1ddc889b] under array_fill_list; prior registration was null -2024-08-08 20:48:52 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@421d7900] under array_to_string; prior registration was null -2024-08-08 20:48:52 - abs(NUMERIC arg) -2024-08-08 20:48:52 - Double acos(NUMERIC arg) -2024-08-08 20:48:52 - Boolean any(BOOLEAN predicate) -2024-08-08 20:48:52 - array( ... ) -2024-08-08 20:48:52 - array_agg(arg) -2024-08-08 20:48:52 - array_append( ... ) -2024-08-08 20:48:52 - array_concat( ... ) -2024-08-08 20:48:52 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 20:48:52 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 20:48:52 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-08 20:48:52 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-08 20:48:52 - array_get(ARRAY array, INTEGER index) -2024-08-08 20:48:52 - Integer array_length(ARRAY array) -2024-08-08 20:48:52 - array_list( ... ) -2024-08-08 20:48:52 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-08 20:48:52 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-08 20:48:52 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-08 20:48:52 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-08 20:48:52 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-08 20:48:52 - array_prepend( ... ) -2024-08-08 20:48:52 - array_remove( ... ) -2024-08-08 20:48:52 - array_remove_index( ... ) -2024-08-08 20:48:52 - array_replace( ... ) -2024-08-08 20:48:52 - array_set( ... ) -2024-08-08 20:48:52 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-08 20:48:52 - String array_to_string( ... ) -2024-08-08 20:48:52 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-08 20:48:52 - Integer ascii(STRING arg) -2024-08-08 20:48:52 - Double asin(NUMERIC arg) -2024-08-08 20:48:52 - Double atan(NUMERIC arg) -2024-08-08 20:48:52 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-08 20:48:52 - avg(NUMERIC arg) -2024-08-08 20:48:52 - bit_and(arg) -2024-08-08 20:48:52 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-08 20:48:52 - bit_or(arg) -2024-08-08 20:48:52 - bitand(arg0, arg1) -2024-08-08 20:48:52 - bitnot(arg) -2024-08-08 20:48:52 - bitor(arg0, arg1) -2024-08-08 20:48:52 - bitxor(arg0, arg1) -2024-08-08 20:48:52 - Boolean bool_and(BOOLEAN predicate) -2024-08-08 20:48:52 - Boolean bool_or(BOOLEAN predicate) -2024-08-08 20:48:52 - cast(arg as Type) -2024-08-08 20:48:52 - ceiling(NUMERIC arg) -2024-08-08 20:48:52 - Character char(INTEGER arg) -2024-08-08 20:48:52 - Integer character_length(STRING_OR_CLOB arg) -2024-08-08 20:48:52 - Character chr(INTEGER arg) -2024-08-08 20:48:52 - coalesce(arg0[, arg1[, ...]]) -2024-08-08 20:48:52 - String collate(STRING string as COLLATION collation) -2024-08-08 20:48:52 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-08 20:48:52 - Double cos(NUMERIC arg) -2024-08-08 20:48:52 - Double cosh(NUMERIC arg) -2024-08-08 20:48:52 - Double cot(NUMERIC arg) -2024-08-08 20:48:52 - Long count([distinct ]{arg|*}) -2024-08-08 20:48:52 - Double cume_dist([arg0[, ...]]) -2024-08-08 20:48:52 - Date curdate() -2024-08-08 20:48:52 - Date current date -2024-08-08 20:48:52 - Time current time -2024-08-08 20:48:52 - Timestamp current timestamp -2024-08-08 20:48:52 - Date current_date -2024-08-08 20:48:52 - Instant current_instant -2024-08-08 20:48:52 - Time current_time -2024-08-08 20:48:52 - Timestamp current_timestamp -2024-08-08 20:48:52 - Time curtime() -2024-08-08 20:48:52 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-08 20:48:52 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 20:48:52 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 20:48:52 - Integer day(DATE arg) -2024-08-08 20:48:52 - Integer day_of_month(DATE arg) -2024-08-08 20:48:52 - Integer day_of_week(DATE arg) -2024-08-08 20:48:52 - Integer day_of_year(DATE arg) -2024-08-08 20:48:52 - String dayname(DATE arg) -2024-08-08 20:48:52 - Double degrees(NUMERIC arg) -2024-08-08 20:48:52 - Long dense_rank([arg0[, ...]]) -2024-08-08 20:48:52 - Boolean every(BOOLEAN predicate) -2024-08-08 20:48:52 - Double exp(NUMERIC arg) -2024-08-08 20:48:52 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-08 20:48:52 - first_valueANY value -2024-08-08 20:48:52 - floor(NUMERIC arg) -2024-08-08 20:48:52 - String format(TEMPORAL datetime as STRING pattern) -2024-08-08 20:48:52 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 20:48:52 - Integer hour(TIME arg) -2024-08-08 20:48:52 - ifnull(arg0, arg1) -2024-08-08 20:48:52 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-08 20:48:52 - Instant instant -2024-08-08 20:48:52 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-08 20:48:52 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-08 20:48:52 - last_valueANY value -2024-08-08 20:48:52 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-08 20:48:52 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 20:48:52 - String left(STRING string, INTEGER length) -2024-08-08 20:48:52 - Integer length(STRING_OR_CLOB arg) -2024-08-08 20:48:52 - String listagg(STRING arg0, STRING arg1) -2024-08-08 20:48:52 - Double ln(NUMERIC arg) -2024-08-08 20:48:52 - LocalDate local date -2024-08-08 20:48:52 - LocalDateTime local datetime -2024-08-08 20:48:52 - LocalTime local time -2024-08-08 20:48:52 - LocalDate local_date -2024-08-08 20:48:52 - LocalDateTime local_datetime -2024-08-08 20:48:52 - LocalTime local_time -2024-08-08 20:48:52 - Time localtime -2024-08-08 20:48:52 - Timestamp localtimestamp -2024-08-08 20:48:52 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-08 20:48:52 - Double log(NUMERIC base, NUMERIC arg) -2024-08-08 20:48:52 - Double log10(NUMERIC arg) -2024-08-08 20:48:52 - String lower(STRING string) -2024-08-08 20:48:52 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 20:48:52 - String ltrim(STRING string) -2024-08-08 20:48:52 - max(COMPARABLE arg) -2024-08-08 20:48:52 - Double median(NUMERIC arg) -2024-08-08 20:48:52 - Integer microsecond(TIME arg) -2024-08-08 20:48:52 - min(COMPARABLE arg) -2024-08-08 20:48:52 - Integer minute(TIME arg) -2024-08-08 20:48:52 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-08 20:48:52 - mode() -2024-08-08 20:48:52 - Integer month(DATE arg) -2024-08-08 20:48:52 - String monthname(DATE arg) -2024-08-08 20:48:52 - Timestamp now() -2024-08-08 20:48:52 - nth_valueANY value, INTEGER nth -2024-08-08 20:48:52 - nullif(arg0, arg1) -2024-08-08 20:48:52 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-08 20:48:52 - OffsetDateTime offset datetime -2024-08-08 20:48:52 - OffsetDateTime offset_datetime -2024-08-08 20:48:52 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-08 20:48:52 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-08 20:48:52 - Double percent_rank([arg0[, ...]]) -2024-08-08 20:48:52 - percentile_cont(NUMERIC arg) -2024-08-08 20:48:52 - percentile_disc(NUMERIC arg) -2024-08-08 20:48:52 - Double pi -2024-08-08 20:48:52 - Integer position(STRING pattern in STRING string) -2024-08-08 20:48:52 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-08 20:48:52 - Integer quarter(DATE arg) -2024-08-08 20:48:52 - Double radians(NUMERIC arg) -2024-08-08 20:48:52 - Double rand([INTEGER seed]) -2024-08-08 20:48:52 - Long rank([arg0[, ...]]) -2024-08-08 20:48:52 - String repeat(STRING string, INTEGER times) -2024-08-08 20:48:52 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-08 20:48:52 - String right(STRING string, INTEGER length) -2024-08-08 20:48:52 - round(NUMERIC number[, INTEGER places]) -2024-08-08 20:48:52 - Long row_number() -2024-08-08 20:48:52 - Long rownum() -2024-08-08 20:48:52 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 20:48:52 - String rtrim(STRING string) -2024-08-08 20:48:52 - Integer second(TIME arg) -2024-08-08 20:48:52 - Integer sign(NUMERIC arg) -2024-08-08 20:48:52 - Double sin(NUMERIC arg) -2024-08-08 20:48:52 - Double sinh(NUMERIC arg) -2024-08-08 20:48:52 - String soundex(arg) -2024-08-08 20:48:52 - String space(INTEGER arg) -2024-08-08 20:48:52 - Object sql -2024-08-08 20:48:52 - Double sqrt(NUMERIC arg) -2024-08-08 20:48:52 - Double stddev_pop(NUMERIC arg) -2024-08-08 20:48:52 - Double stddev_samp(NUMERIC arg) -2024-08-08 20:48:52 - String str(arg) -2024-08-08 20:48:52 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-08 20:48:52 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-08 20:48:52 - sum(arg) -2024-08-08 20:48:52 - Timestamp sysdate -2024-08-08 20:48:52 - Double tan(NUMERIC arg) -2024-08-08 20:48:52 - Double tanh(NUMERIC arg) -2024-08-08 20:48:52 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 20:48:52 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 20:48:52 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-08 20:48:52 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-08 20:48:52 - trunc( ... ) -2024-08-08 20:48:52 - truncate( ... ) -2024-08-08 20:48:52 - String upper(STRING string) -2024-08-08 20:48:52 - Double var_pop(NUMERIC arg) -2024-08-08 20:48:52 - Double var_samp(NUMERIC arg) -2024-08-08 20:48:52 - Integer week(DATE arg) -2024-08-08 20:48:52 - Integer year(DATE arg) -2024-08-08 20:48:52 - Starting QueryInterpretationCache(2048) -2024-08-08 20:48:52 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 20:48:52 - Configured EntityCopyObserver strategy: disallow -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:61112] -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 84 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:52 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:52 - [javax.management.remote.rmi.RMIConnectionImpl@7a747b90: connectionId=rmi://127.0.0.1 2] closing. -2024-08-08 20:48:52 - [javax.management.remote.rmi.RMIConnectionImpl@7a747b90: connectionId=rmi://127.0.0.1 2] closed. -2024-08-08 20:48:52 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 20:48:52 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 20:48:52 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-08 20:48:52 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 20:48:52 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 20:48:52 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-08 20:48:52 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 20:48:52 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 20:48:52 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-08 20:48:52 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 20:48:52 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 20:48:52 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-08 20:48:52 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 20:48:52 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 20:48:52 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-08 20:48:52 - Starting post-init callbacks -2024-08-08 20:48:52 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-08 20:48:52 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-08 20:48:52 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-08 20:48:52 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-08 20:48:52 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-08 20:48:52 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-08 20:48:52 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-08 20:48:52 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-08 20:48:52 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-08 20:48:52 - Created new SQL alias : ba1_0 -2024-08-08 20:48:52 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-08 20:48:52 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6fb2b972] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-08 20:48:52 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-08 20:48:52 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-08 20:48:52 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-08 20:48:52 - Version select: select id from bill_action where id=? -2024-08-08 20:48:52 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-08 20:48:52 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-08 20:48:52 - Delete (0): delete from bill_action where id=? -2024-08-08 20:48:52 - Created new SQL alias : ma1_0 -2024-08-08 20:48:52 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-08 20:48:52 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@3e8eea59] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-08 20:48:52 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-08 20:48:52 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-08 20:48:52 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-08 20:48:52 - Version select: select id from member_action where id=? -2024-08-08 20:48:52 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-08 20:48:52 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-08 20:48:52 - Delete (0): delete from member_action where id=? -2024-08-08 20:48:52 - Created new SQL alias : e1_0 -2024-08-08 20:48:52 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-08 20:48:52 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-08 20:48:52 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-08 20:48:52 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-08 20:48:52 - Version select: select id from event where id=? -2024-08-08 20:48:52 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-08 20:48:52 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-08 20:48:52 - Delete (0): delete from event where id=? -2024-08-08 20:48:52 - Created new SQL alias : a1_0 -2024-08-08 20:48:52 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-08 20:48:52 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2e243122] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-08 20:48:52 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-08 20:48:52 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-08 20:48:52 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-08 20:48:52 - Version select: select id from action where id=? -2024-08-08 20:48:52 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-08 20:48:52 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-08 20:48:52 - Delete (0): delete from action where id=? -2024-08-08 20:48:52 - Created new SQL alias : es1_0 -2024-08-08 20:48:52 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-08 20:48:52 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@49b6373f] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-08 20:48:52 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-08 20:48:52 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-08 20:48:52 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-08 20:48:52 - Version select: select id from event_step where id=? -2024-08-08 20:48:52 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-08 20:48:52 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-08 20:48:52 - Delete (0): delete from event_step where id=? -2024-08-08 20:48:52 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-08 20:48:52 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@2553dcc0] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@7c4697fc] -2024-08-08 20:48:52 - Checking 0 named HQL queries -2024-08-08 20:48:52 - Checking 0 named SQL queries -2024-08-08 20:48:52 - - drop table if exists action cascade -2024-08-08 20:48:52 - - drop table if exists bill_action cascade -2024-08-08 20:48:52 - - drop table if exists event cascade -2024-08-08 20:48:52 - - drop table if exists event_step cascade -2024-08-08 20:48:52 - - drop table if exists member_action cascade -2024-08-08 20:48:52 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-08 20:48:52 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-08 20:48:52 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-08 20:48:52 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-08 20:48:52 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-08 20:48:52 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-08 20:48:52 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-08 20:48:52 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-08 20:48:52 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-08 20:48:52 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@2a20aa4e -2024-08-08 20:48:52 - Registering SessionFactory: 327ba25b-335d-49d6-836e-654b2fca397f (<unnamed>) -2024-08-08 20:48:52 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-08 20:48:52 - Instantiated SessionFactory -2024-08-08 20:48:52 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'actionService' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-08 20:48:52 - Initializing JpaMetamodelMappingContext… -2024-08-08 20:48:52 - Finished initializing JpaMetamodelMappingContext -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - Statistics initialized [enabled=false] -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-08 20:48:52 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-08 20:48:52 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - Looking up named query BillAction.findByAction_Id -2024-08-08 20:48:52 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:48:52 - Did not find named query BillAction.findByAction_Id -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - Looking up named query BillAction.findByAction_Event -2024-08-08 20:48:52 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:48:52 - Did not find named query BillAction.findByAction_Event -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-08 20:48:52 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:48:52 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-08 20:48:52 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:48:52 - Did not find named query MemberAction.findAllByEvent.count -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-08 20:48:52 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 20:48:52 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(808415039723958)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(808415039723958)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(808415039723958)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(808415039723958)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(808415039723958).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 20:48:52 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:48:52 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-08 20:48:52 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 20:48:52 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 20:48:52 - Looking up named query MemberAction.findByAction -2024-08-08 20:48:52 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:48:52 - Did not find named query MemberAction.findByAction -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 20:48:52 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:48:52 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 20:48:52 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:48:52 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:48:52 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-08 20:48:52 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 20:48:52 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 20:48:52 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 20:48:52 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:48:52 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-08 20:48:52 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 20:48:52 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-08 20:48:52 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 20:48:52 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'eventRepository' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - Looking up named query Event.findByToken -2024-08-08 20:48:52 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:48:52 - Did not find named query Event.findByToken -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 82 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:52 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 82 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 84 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:52 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 20:48:52 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-08 20:48:52 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-08 20:48:52 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'billActionService' -2024-08-08 20:48:52 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:52 - [javax.management.remote.rmi.RMIConnectionImpl@11bfdcb6: connectionId=rmi://127.0.0.1 3] closing. -2024-08-08 20:48:52 - [javax.management.remote.rmi.RMIConnectionImpl@11bfdcb6: connectionId=rmi://127.0.0.1 3] closed. -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'actionRepository' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:48:52 - Did not find named query Action.findLastByEvent.count -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-08 20:48:52 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 20:48:52 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 20:48:52 - Looking up named query Action.findByIdAndEvent -2024-08-08 20:48:52 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:48:52 - Did not find named query Action.findByIdAndEvent -2024-08-08 20:48:52 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:48:52 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-08 20:48:52 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-08 20:48:52 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-08 20:48:52 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'eventService' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-08 20:48:52 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-08 20:48:52 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-08 20:48:52 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-08 20:48:52 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-08 20:48:52 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'memberActionService' -2024-08-08 20:48:52 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-08 20:48:52 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-08 20:48:52 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-08 20:48:52 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 20:48:52 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-08 20:48:52 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'actionController' -2024-08-08 20:48:52 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'billActionController' -2024-08-08 20:48:52 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'eventController' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'authService' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-08 20:48:52 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-08 20:48:52 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'memberActionController' -2024-08-08 20:48:52 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-08 20:48:52 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-08 20:48:52 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:48:52 - Loaded expression factory via original TCCL -2024-08-08 20:48:52 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-08 20:48:52 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-08 20:48:52 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 20:48:52 - Trying to load META-INF/validation.xml via user class loader -2024-08-08 20:48:52 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 20:48:52 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 20:48:52 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 20:48:52 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 20:48:52 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 20:48:52 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 20:48:52 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 20:48:52 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 20:48:52 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 20:48:52 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 20:48:52 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'error' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-08 20:48:52 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@7db0565c' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@7db0565c' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-08 20:48:52 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-08 20:48:52 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-08 20:48:52 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-08 20:48:52 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:48:52 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 20:48:52 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-08 20:48:52 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:48:52 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 20:48:52 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'localeResolver' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'themeResolver' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-08 20:48:52 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 20:48:52 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 20:48:52 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 20:48:52 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-08 20:48:52 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) -2024-08-08 20:48:52 - - s.h.p.EventController: - {GET [/api/events/{eventId}/auth]}: authenticate(String) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/nameChange]}: updateMember(String,MemberNamesUpdateRequest) -2024-08-08 20:48:52 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-08 20:48:52 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-08 20:48:52 - 17 mappings in 'requestMappingHandlerMapping' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-08 20:48:52 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 20:48:52 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-08 20:48:52 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 20:48:52 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 20:48:52 - 'beanNameHandlerMapping' {} -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-08 20:48:52 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 20:48:52 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'messageConverters' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-08 20:48:52 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-08 20:48:52 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:48:52 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:48:52 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'pageModule' -2024-08-08 20:48:52 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:48:52 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 20:48:52 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-08 20:48:52 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-08 20:48:52 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 20:48:52 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 20:48:52 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 20:48:52 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-08 20:48:52 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 20:48:52 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-08 20:48:52 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'sortResolver' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-08 20:48:52 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-08 20:48:52 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-08 20:48:52 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-08 20:48:52 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-08 20:48:52 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-08 20:48:52 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 20:48:52 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-08 20:48:52 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 20:48:52 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@7db0565c' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-08 20:48:52 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'transactionManager' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-08 20:48:52 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-08 20:48:52 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:48:52 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-08 20:48:52 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:48:52 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-08 20:48:52 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-08 20:48:52 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-08 20:48:52 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-08 20:48:52 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-08 20:48:52 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-08 20:48:52 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-08 20:48:52 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-08 20:48:52 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-08 20:48:52 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-08 20:48:52 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-08 20:48:52 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-08 20:48:52 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@7db0565c' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-08 20:48:52 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-08 20:48:52 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-08 20:48:52 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-08 20:48:52 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-08 20:48:52 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-08 20:48:52 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-08 20:48:52 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-08 20:48:52 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-08 20:48:52 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-08 20:48:52 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-08 20:48:52 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 20:48:52 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-08 20:48:52 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 20:48:52 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 20:48:52 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 20:48:52 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-08 20:48:52 - Using SLF4J as the default logging framework -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-08 20:48:52 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-08 20:48:52 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-08 20:48:52 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-08 20:48:52 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-08 20:48:52 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-08 20:48:52 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'observedAspect' -2024-08-08 20:48:52 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-08 20:48:52 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-08 20:48:52 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 20:48:52 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-08 20:48:52 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 20:48:52 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-08 20:48:52 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-08 20:48:52 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-08 20:48:52 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 20:48:52 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-08 20:48:52 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 20:48:53 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-08 20:48:53 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-08 20:48:53 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-08 20:48:53 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-08 20:48:53 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 20:48:53 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 20:48:53 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 20:48:53 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 20:48:53 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-08 20:48:53 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 20:48:53 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 20:48:53 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-08 20:48:53 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-08 20:48:53 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 20:48:53 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 20:48:53 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-08 20:48:53 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-08 20:48:53 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-08 20:48:53 - Registering beans for JMX exposure on startup -2024-08-08 20:48:53 - Auto-detecting user-defined JMX MBeans -2024-08-08 20:48:53 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-08 20:48:53 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-08 20:48:53 - Starting beans in phase -2147483647 -2024-08-08 20:48:53 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-08 20:48:53 - Starting beans in phase 2147481599 -2024-08-08 20:48:53 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-08 20:48:53 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-08 20:48:53 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-08 20:48:53 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-08 20:48:53 - Tomcat started on port 8080 (http) with context path '/' -2024-08-08 20:48:53 - Successfully started bean 'webServerStartStop' -2024-08-08 20:48:53 - Starting beans in phase 2147482623 -2024-08-08 20:48:53 - Successfully started bean 'webServerGracefulShutdown' -2024-08-08 20:48:53 - Starting beans in phase 2147483647 -2024-08-08 20:48:53 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-08 20:48:53 - Started HaengdongApplication in 2.339 seconds (process running for 2.56) -2024-08-08 20:48:53 - Application availability state LivenessState changed to CORRECT -2024-08-08 20:48:53 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-08 20:48:53 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 82 -2024-08-08 20:48:53 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 82 -2024-08-08 20:48:53 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 82 -2024-08-08 20:48:53 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 84 -2024-08-08 20:48:53 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 82 -2024-08-08 20:48:53 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 82 -2024-08-08 20:48:53 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 20:48:53 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 82 -2024-08-08 20:48:53 - RMI TCP Connection(3)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - [javax.management.remote.rmi.RMIConnectionImpl@70233eb: connectionId=rmi://127.0.0.1 4] closing. -2024-08-08 20:48:53 - [javax.management.remote.rmi.RMIConnectionImpl@70233eb: connectionId=rmi://127.0.0.1 4] closed. -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:61113] -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: accepted socket from [127.0.0.1:61114] -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 84 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 84 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - [javax.management.remote.rmi.RMIConnectionImpl@4e6a03d3: connectionId=rmi://127.0.0.1 5] closing. -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - [javax.management.remote.rmi.RMIConnectionImpl@4e6a03d3: connectionId=rmi://127.0.0.1 5] closed. -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 84 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - [javax.management.remote.rmi.RMIConnectionImpl@7030aa0: connectionId=rmi://127.0.0.1 6] closing. -2024-08-08 20:48:53 - [javax.management.remote.rmi.RMIConnectionImpl@7030aa0: connectionId=rmi://127.0.0.1 6] closed. -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - [javax.management.remote.rmi.RMIConnectionImpl@5dee7a27: connectionId=rmi://127.0.0.1 7] closing. -2024-08-08 20:48:53 - [javax.management.remote.rmi.RMIConnectionImpl@5dee7a27: connectionId=rmi://127.0.0.1 7] closed. -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 84 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 82 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - [javax.management.remote.rmi.RMIConnectionImpl@2c46c17: connectionId=rmi://127.0.0.1 8] closing. -2024-08-08 20:48:53 - [javax.management.remote.rmi.RMIConnectionImpl@2c46c17: connectionId=rmi://127.0.0.1 8] closed. -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 82 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 82 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 82 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 82 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 82 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 84 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 82 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 84 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 82 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 82 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 82 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - [javax.management.remote.rmi.RMIConnectionImpl@571ab9a: connectionId=rmi://127.0.0.1 9] closing. -2024-08-08 20:48:53 - [javax.management.remote.rmi.RMIConnectionImpl@571ab9a: connectionId=rmi://127.0.0.1 9] closed. -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - [javax.management.remote.rmi.RMIConnectionImpl@3c71d30c: connectionId=rmi://127.0.0.1 10] closing. -2024-08-08 20:48:53 - [javax.management.remote.rmi.RMIConnectionImpl@3c71d30c: connectionId=rmi://127.0.0.1 10] closed. -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 84 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 84 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:48:53 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-08 20:48:53 - Fetching JDBC Connection from DataSource -2024-08-08 20:48:53 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-08 20:48:53 - Initializing Servlet 'dispatcherServlet' -2024-08-08 20:48:53 - Detected StandardServletMultipartResolver -2024-08-08 20:48:53 - Detected AcceptHeaderLocaleResolver -2024-08-08 20:48:53 - Detected FixedThemeResolver -2024-08-08 20:48:53 - Fetching JDBC Connection from DataSource -2024-08-08 20:48:53 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@6b16aa6f -2024-08-08 20:48:53 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@5f27d271 -2024-08-08 20:48:53 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-08 20:48:53 - Completed initialization in 1 ms -2024-08-08 20:48:53 - RMI TCP Connection(5)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - [javax.management.remote.rmi.RMIConnectionImpl@311138f8: connectionId=rmi://127.0.0.1 11] closing. -2024-08-08 20:48:53 - [javax.management.remote.rmi.RMIConnectionImpl@311138f8: connectionId=rmi://127.0.0.1 11] closed. -2024-08-08 20:48:53 - RMI TCP Connection(4)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:48:53 - [javax.management.remote.rmi.RMIConnectionImpl@7633d5dc: connectionId=rmi://127.0.0.1 12] closing. -2024-08-08 20:48:53 - [javax.management.remote.rmi.RMIConnectionImpl@7633d5dc: connectionId=rmi://127.0.0.1 12] closed. -2024-08-08 20:49:03 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.11015256706552604525/conf/jaspic-providers.xml] -2024-08-08 20:49:03 - GET "/", parameters={} -2024-08-08 20:49:03 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 20:49:03 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 20:49:03 - Resource not found -2024-08-08 20:49:03 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 20:49:03 - Using 'application/json;q=0.8', given [text/html, application/xhtml+xml, image/avif, image/webp, image/apng, application/xml;q=0.9, */*;q=0.8, application/signed-exchange;v=b3;q=0.7] and supported [application/json, application/*+json] -2024-08-08 20:49:03 - Writing [ErrorResponse[errorCode=NO_RESOURCE_REQUEST, message=존재하지 않는 자원입니다.]] -2024-08-08 20:49:03 - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource .] -2024-08-08 20:49:03 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 20:49:03 - Completed 400 BAD_REQUEST -2024-08-08 20:49:03 - GET "/favicon.ico", parameters={} -2024-08-08 20:49:03 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 20:49:03 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 20:49:03 - Resource not found -2024-08-08 20:49:03 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 20:49:03 - Using 'application/json;q=0.8', given [image/avif, image/webp, image/apng, image/svg+xml, image/*, */*;q=0.8] and supported [application/json, application/*+json] -2024-08-08 20:49:03 - Writing [ErrorResponse[errorCode=NO_RESOURCE_REQUEST, message=존재하지 않는 자원입니다.]] -2024-08-08 20:49:03 - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource favicon.ico.] -2024-08-08 20:49:03 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 20:49:03 - Completed 400 BAD_REQUEST -2024-08-08 20:49:09 - GET "/docs/index.html", parameters={} -2024-08-08 20:49:09 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 20:49:09 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 20:49:09 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 20:49:09 - Completed 200 OK -2024-08-08 20:49:09 - GET "/favicon.ico", parameters={} -2024-08-08 20:49:09 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 20:49:09 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 20:49:09 - Resource not found -2024-08-08 20:49:09 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 20:49:09 - Using 'application/json;q=0.8', given [image/avif, image/webp, image/apng, image/svg+xml, image/*, */*;q=0.8] and supported [application/json, application/*+json] -2024-08-08 20:49:09 - Writing [ErrorResponse[errorCode=NO_RESOURCE_REQUEST, message=존재하지 않는 자원입니다.]] -2024-08-08 20:49:09 - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource favicon.ico.] -2024-08-08 20:49:09 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 20:49:09 - Completed 400 BAD_REQUEST -2024-08-08 20:49:11 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 20:49:11 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 20:49:12 - GET "/favicon.ico", parameters={} -2024-08-08 20:49:12 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 20:49:12 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 20:49:12 - Resource not found -2024-08-08 20:49:12 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 20:49:12 - Using 'application/json;q=0.8', given [image/avif, image/webp, image/apng, image/svg+xml, image/*, */*;q=0.8] and supported [application/json, application/*+json] -2024-08-08 20:49:12 - Writing [ErrorResponse[errorCode=NO_RESOURCE_REQUEST, message=존재하지 않는 자원입니다.]] -2024-08-08 20:49:12 - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource favicon.ico.] -2024-08-08 20:49:12 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 20:49:12 - Completed 400 BAD_REQUEST -2024-08-08 20:49:21 - RMI TCP Connection(2)-127.0.0.1: (port 61109) connection closed -2024-08-08 20:49:21 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=61111,localport=61109] -2024-08-08 20:49:21 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=61111,localport=61109] -2024-08-08 20:49:21 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 20:49:21 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 20:49:22 - RMI TCP Connection(5)-127.0.0.1: (port 61109) connection closed -2024-08-08 20:49:22 - RMI TCP Connection(5)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=61114,localport=61109] -2024-08-08 20:49:22 - RMI TCP Connection(5)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=61114,localport=61109] -2024-08-08 20:49:22 - RMI TCP Connection(4)-127.0.0.1: (port 61109) connection closed -2024-08-08 20:49:22 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=61113,localport=61109] -2024-08-08 20:49:22 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=61113,localport=61109] -2024-08-08 20:49:22 - RMI TCP Connection(3)-127.0.0.1: (port 61109) connection closed -2024-08-08 20:49:22 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=61112,localport=61109] -2024-08-08 20:49:22 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=61112,localport=61109] -2024-08-08 20:49:33 - RMI TCP Connection(6)-127.0.0.1: accepted socket from [127.0.0.1:61158] -2024-08-08 20:49:33 - RMI TCP Connection(6)-127.0.0.1: (port 61109) op = 80 -2024-08-08 20:49:33 - RMI TCP Connection(6)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:49:33 - RMI TCP Connection(6)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:49:33 - RMI TCP Connection(6)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:49:33 - RMI TCP Connection(6)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:49:33 - RMI TCP Connection(6)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@1bee0085 -2024-08-08 20:49:48 - RMI TCP Connection(6)-127.0.0.1: (port 61109) connection closed -2024-08-08 20:49:48 - RMI TCP Connection(6)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=61158,localport=61109] -2024-08-08 20:49:48 - RMI TCP Connection(6)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=61158,localport=61109] -2024-08-08 20:49:51 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 20:49:51 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 20:49:53 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-08 20:49:53 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0, started on Thu Aug 08 20:48:50 KST 2024 -2024-08-08 20:49:53 - Stopping beans in phase 2147483647 -2024-08-08 20:49:53 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-08 20:49:53 - Stopping beans in phase 2147482623 -2024-08-08 20:49:53 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-08 20:49:53 - Stopping beans in phase 2147481599 -2024-08-08 20:49:53 - Bean 'webServerStartStop' completed its stop procedure -2024-08-08 20:49:53 - Stopping beans in phase -2147483647 -2024-08-08 20:49:53 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-08 20:49:53 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-08 20:49:53 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-08 20:49:53 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-08 20:49:53 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-08 20:49:53 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-08 20:49:53 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-08 20:49:53 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-08 20:49:53 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-08 20:49:53 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-08 20:49:53 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-08 20:49:53 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-08 20:49:53 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-08 20:49:53 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-08 20:49:53 - Unregistering JMX-exposed beans on shutdown -2024-08-08 20:49:53 - Unregistering JMX-exposed beans -2024-08-08 20:49:53 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-08 20:49:53 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 20:49:53 - HHH000031: Closing -2024-08-08 20:49:53 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@6fd585b1] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@7c4697fc] -2024-08-08 20:49:53 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-08 20:49:53 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-08 20:49:53 - HikariPool-1 - Shutdown initiated... -2024-08-08 20:49:53 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 20:49:53 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 20:49:53 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 20:49:53 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 20:49:53 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 20:49:53 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 20:49:53 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 20:49:53 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 20:49:53 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 20:49:53 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 20:49:53 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 20:49:53 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-08 20:49:53 - HikariPool-1 - Shutdown completed. -2024-08-08 20:49:53 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-08 20:50:19 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-08 20:50:19 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-08 20:50:19 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 20:50:19 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 20:50:19 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 20:50:19 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 20:50:19 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 20:50:19 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 20:50:19 - Loaded expression factory via original TCCL -2024-08-08 20:50:19 - Starting HaengdongApplication using Java 17.0.12 with PID 29564 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-08 20:50:19 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-08 20:50:19 - No active profile set, falling back to 1 default profile: "default" -2024-08-08 20:50:19 - Loading source class server.haengdong.HaengdongApplication -2024-08-08 20:50:19 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0 -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-08 20:50:19 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-08 20:50:19 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 20:50:19 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 20:50:19 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 20:50:19 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 20:50:19 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 20:50:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-08 20:50:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-08 20:50:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-08 20:50:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-08 20:50:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-08 20:50:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-08 20:50:19 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 20:50:19 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 20:50:19 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 20:50:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-08 20:50:19 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 20:50:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-08 20:50:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-08 20:50:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-08 20:50:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-08 20:50:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-08 20:50:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-08 20:50:19 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-08 20:50:19 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-08 20:50:19 - Scanning for JPA repositories in packages server.haengdong. -2024-08-08 20:50:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 20:50:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 20:50:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 20:50:19 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 20:50:19 - Finished Spring Data repository scanning in 15 ms. Found 4 JPA repository interfaces. -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-08 20:50:19 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-08 20:50:19 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-08 20:50:19 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 20:50:19 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-08 20:50:19 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 20:50:19 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 20:50:19 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-08 20:50:19 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-08 20:50:19 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@6c3f1658] -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-08 20:50:19 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-08 20:50:19 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 20:50:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-08 20:50:19 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-08 20:50:19 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-08 20:50:19 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-08 20:50:19 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-08 20:50:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-08 20:50:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 20:50:19 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 20:50:19 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-08 20:50:19 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-08 20:50:19 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 20:50:19 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 20:50:19 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 20:50:19 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:50:19 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:50:19 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:50:19 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-08 20:50:19 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 20:50:19 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 20:50:19 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-08 20:50:19 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-08 20:50:19 - Tomcat initialized with port 8080 (http) -2024-08-08 20:50:19 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-08 20:50:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7faa0680] to [INITIALIZING] -2024-08-08 20:50:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7faa0680] to [INITIALIZED] -2024-08-08 20:50:19 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-08 20:50:19 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-08 20:50:19 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-08 20:50:19 - Setting state for [org.apache.catalina.mapper.MapperListener@45bbc52f] to [INITIALIZING] -2024-08-08 20:50:19 - Setting state for [org.apache.catalina.mapper.MapperListener@45bbc52f] to [INITIALIZED] -2024-08-08 20:50:19 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-08 20:50:19 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-08 20:50:19 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-08 20:50:19 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-08 20:50:19 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-08 20:50:19 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-08 20:50:19 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-08 20:50:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7faa0680] to [STARTING_PREP] -2024-08-08 20:50:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7faa0680] to [STARTING] -2024-08-08 20:50:19 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@7faa0680] to [STARTED] -2024-08-08 20:50:19 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-08 20:50:19 - Starting service [Tomcat] -2024-08-08 20:50:19 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-08 20:50:19 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-08 20:50:19 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-08 20:50:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 20:50:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 20:50:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 20:50:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 20:50:19 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 20:50:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-08 20:50:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-08 20:50:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-08 20:50:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-08 20:50:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-08 20:50:19 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [org.apache.catalina.webresources.StandardRoot@77aea] to [INITIALIZING] -2024-08-08 20:50:20 - Setting state for [org.apache.catalina.webresources.StandardRoot@77aea] to [INITIALIZED] -2024-08-08 20:50:20 - Setting state for [org.apache.catalina.webresources.StandardRoot@77aea] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [org.apache.catalina.webresources.DirResourceSet@165614f5] to [INITIALIZING] -2024-08-08 20:50:20 - Setting state for [org.apache.catalina.webresources.DirResourceSet@165614f5] to [INITIALIZED] -2024-08-08 20:50:20 - Setting state for [org.apache.catalina.webresources.DirResourceSet@165614f5] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [org.apache.catalina.webresources.DirResourceSet@165614f5] to [STARTING] -2024-08-08 20:50:20 - Setting state for [org.apache.catalina.webresources.DirResourceSet@165614f5] to [STARTED] -2024-08-08 20:50:20 - Setting state for [org.apache.catalina.webresources.StandardRoot@77aea] to [STARTING] -2024-08-08 20:50:20 - Setting state for [org.apache.catalina.webresources.StandardRoot@77aea] to [STARTED] -2024-08-08 20:50:20 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 20:50:20 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 20:50:20 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 20:50:20 - Starting this Loader -2024-08-08 20:50:20 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 20:50:20 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 20:50:20 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 20:50:20 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 20:50:20 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 20:50:20 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 20:50:20 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 20:50:20 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 20:50:20 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 20:50:20 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-08 20:50:20 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-08 20:50:20 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@49cc9b2a] to [INITIALIZING] -2024-08-08 20:50:20 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@49cc9b2a] to [INITIALIZED] -2024-08-08 20:50:20 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@49cc9b2a] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@49cc9b2a] to [STARTING] -2024-08-08 20:50:20 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@49cc9b2a] to [STARTED] -2024-08-08 20:50:20 - Initializing Spring embedded WebApplicationContext -2024-08-08 20:50:20 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-08 20:50:20 - Root WebApplicationContext: initialization completed in 566 ms -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 20:50:20 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 20:50:20 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-08 20:50:20 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-08 20:50:20 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 20:50:20 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-08 20:50:20 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 20:50:20 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-08 20:50:20 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 20:50:20 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 20:50:20 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 20:50:20 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 20:50:20 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-08 20:50:20 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'h2Console' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 20:50:20 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'dataSource' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-08 20:50:20 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 20:50:20 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 20:50:20 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-08 20:50:20 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-08 20:50:20 - HikariPool-1 - configuration: -2024-08-08 20:50:20 - allowPoolSuspension.............false -2024-08-08 20:50:20 - autoCommit......................true -2024-08-08 20:50:20 - catalog.........................none -2024-08-08 20:50:20 - connectionInitSql...............none -2024-08-08 20:50:20 - connectionTestQuery.............none -2024-08-08 20:50:20 - connectionTimeout...............30000 -2024-08-08 20:50:20 - dataSource......................none -2024-08-08 20:50:20 - dataSourceClassName.............none -2024-08-08 20:50:20 - dataSourceJNDI..................none -2024-08-08 20:50:20 - dataSourceProperties............{password=<masked>} -2024-08-08 20:50:20 - driverClassName................."org.h2.Driver" -2024-08-08 20:50:20 - exceptionOverrideClassName......none -2024-08-08 20:50:20 - healthCheckProperties...........{} -2024-08-08 20:50:20 - healthCheckRegistry.............none -2024-08-08 20:50:20 - idleTimeout.....................600000 -2024-08-08 20:50:20 - initializationFailTimeout.......1 -2024-08-08 20:50:20 - isolateInternalQueries..........false -2024-08-08 20:50:20 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-08 20:50:20 - keepaliveTime...................0 -2024-08-08 20:50:20 - leakDetectionThreshold..........0 -2024-08-08 20:50:20 - maxLifetime.....................1800000 -2024-08-08 20:50:20 - maximumPoolSize.................10 -2024-08-08 20:50:20 - metricRegistry..................none -2024-08-08 20:50:20 - metricsTrackerFactory...........none -2024-08-08 20:50:20 - minimumIdle.....................10 -2024-08-08 20:50:20 - password........................<masked> -2024-08-08 20:50:20 - poolName........................"HikariPool-1" -2024-08-08 20:50:20 - readOnly........................false -2024-08-08 20:50:20 - registerMbeans..................false -2024-08-08 20:50:20 - scheduledExecutor...............none -2024-08-08 20:50:20 - schema..........................none -2024-08-08 20:50:20 - threadFactory...................internal -2024-08-08 20:50:20 - transactionIsolation............default -2024-08-08 20:50:20 - username........................"sa" -2024-08-08 20:50:20 - validationTimeout...............5000 -2024-08-08 20:50:20 - HikariPool-1 - Starting... -2024-08-08 20:50:20 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-08 20:50:20 - HikariPool-1 - Start completed. -2024-08-08 20:50:20 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-08 20:50:20 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-08 20:50:20 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:50:20 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-08 20:50:20 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 20:50:20 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 20:50:20 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 20:50:20 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-08 20:50:20 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-08 20:50:20 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-08 20:50:20 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 20:50:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-08 20:50:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-08 20:50:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 20:50:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 20:50:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 20:50:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 20:50:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-08 20:50:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-08 20:50:20 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 20:50:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-08 20:50:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-08 20:50:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 20:50:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 20:50:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 20:50:20 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 20:50:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-08 20:50:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-08 20:50:20 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 20:50:20 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 20:50:20 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@365bfc5f] to [INITIALIZING] -2024-08-08 20:50:20 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@365bfc5f] to [INITIALIZED] -2024-08-08 20:50:20 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@365bfc5f] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@365bfc5f] to [STARTING] -2024-08-08 20:50:20 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@365bfc5f] to [STARTED] -2024-08-08 20:50:20 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 20:50:20 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 20:50:20 - Filter 'requestContextFilter' configured for use -2024-08-08 20:50:20 - Filter 'webMvcObservationFilter' configured for use -2024-08-08 20:50:20 - Filter 'characterEncodingFilter' configured for use -2024-08-08 20:50:20 - Filter 'formContentFilter' configured for use -2024-08-08 20:50:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-08 20:50:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 20:50:20 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 20:50:20 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 20:50:20 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 20:50:20 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 20:50:20 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 20:50:20 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 20:50:20 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 20:50:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-08 20:50:20 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 20:50:20 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 20:50:20 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 20:50:20 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 20:50:20 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 20:50:20 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-08 20:50:20 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-08 20:50:20 - Setting state for [org.apache.catalina.mapper.MapperListener@45bbc52f] to [STARTING_PREP] -2024-08-08 20:50:20 - Setting state for [org.apache.catalina.mapper.MapperListener@45bbc52f] to [STARTING] -2024-08-08 20:50:20 - Registered host [localhost] -2024-08-08 20:50:20 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-08 20:50:20 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-08 20:50:20 - Register Context [] for service [StandardService[Tomcat]] -2024-08-08 20:50:20 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-08 20:50:20 - Setting state for [org.apache.catalina.mapper.MapperListener@45bbc52f] to [STARTED] -2024-08-08 20:50:20 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-08 20:50:20 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 20:50:20 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-08 20:50:20 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 20:50:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-08 20:50:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 20:50:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@7db0565c' -2024-08-08 20:50:20 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-08 20:50:20 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-08 20:50:20 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@7db0565c' -2024-08-08 20:50:20 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:50:20 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-08 20:50:20 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-08 20:50:20 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-08 20:50:20 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-08 20:50:20 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-08 20:50:20 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-08 20:50:20 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-08 20:50:20 - HHH000206: 'hibernate.properties' not found -2024-08-08 20:50:20 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-08 20:50:20 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-08 20:50:20 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 20:50:20 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 20:50:20 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-08 20:50:20 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-08 20:50:20 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-08 20:50:20 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 20:50:20 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-08 20:50:20 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-08 20:50:20 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 20:50:20 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-08 20:50:20 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-08 20:50:20 - HHH000026: Second-level cache disabled -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:61199] -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:20 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-08 20:50:20 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 84 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:20 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:20 - [javax.management.remote.rmi.RMIConnectionImpl@9eb1a0a: connectionId=rmi://127.0.0.1 1] closing. -2024-08-08 20:50:20 - [javax.management.remote.rmi.RMIConnectionImpl@9eb1a0a: connectionId=rmi://127.0.0.1 1] closed. -2024-08-08 20:50:20 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-08 20:50:20 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-08 20:50:20 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@54286339 -2024-08-08 20:50:20 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-08 20:50:20 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@507f47f9 -2024-08-08 20:50:20 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-08 20:50:20 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@6785df10 -2024-08-08 20:50:20 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 20:50:20 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 20:50:20 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 20:50:20 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 20:50:20 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 20:50:20 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 20:50:20 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 20:50:20 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 20:50:20 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-08 20:50:20 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-08 20:50:20 - Adding type registration image -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 20:50:20 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 20:50:20 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 20:50:20 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-08 20:50:20 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-08 20:50:20 - Adding type registration short -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 20:50:20 - Adding type registration short -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 20:50:20 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 20:50:20 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-08 20:50:20 - Adding type registration int -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-08 20:50:20 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-08 20:50:20 - Adding type registration long -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-08 20:50:20 - Adding type registration long -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-08 20:50:20 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-08 20:50:20 - Adding type registration float -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 20:50:20 - Adding type registration float -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 20:50:20 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 20:50:20 - Adding type registration double -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 20:50:20 - Adding type registration double -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 20:50:20 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 20:50:20 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 20:50:20 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 20:50:20 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 20:50:20 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 20:50:20 - Adding type registration character -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 20:50:20 - Adding type registration char -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 20:50:20 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 20:50:20 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-08 20:50:20 - Adding type registration string -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-08 20:50:20 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-08 20:50:20 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-08 20:50:20 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-08 20:50:20 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-08 20:50:20 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-08 20:50:20 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-08 20:50:20 - Adding type registration text -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-08 20:50:20 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-08 20:50:20 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 20:50:20 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 20:50:20 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 20:50:20 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 20:50:20 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-08 20:50:20 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-08 20:50:20 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 20:50:20 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 20:50:20 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-08 20:50:20 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-08 20:50:20 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-08 20:50:20 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-08 20:50:20 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-08 20:50:20 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-08 20:50:20 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-08 20:50:20 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-08 20:50:20 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-08 20:50:20 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-08 20:50:20 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-08 20:50:20 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-08 20:50:20 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-08 20:50:20 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-08 20:50:20 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-08 20:50:20 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-08 20:50:20 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-08 20:50:20 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-08 20:50:20 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-08 20:50:20 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-08 20:50:20 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-08 20:50:20 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-08 20:50:20 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-08 20:50:20 - Adding type registration date -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-08 20:50:20 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-08 20:50:20 - Adding type registration time -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-08 20:50:20 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-08 20:50:20 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-08 20:50:20 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-08 20:50:20 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-08 20:50:20 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-08 20:50:20 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-08 20:50:20 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-08 20:50:20 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-08 20:50:20 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@2c5708e7 -2024-08-08 20:50:20 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-08 20:50:20 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-08 20:50:20 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@4e26564d -2024-08-08 20:50:20 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@4e26564d -2024-08-08 20:50:20 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@4e26564d -2024-08-08 20:50:20 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@42238078 -2024-08-08 20:50:20 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@5627b8eb -2024-08-08 20:50:20 - Adding type registration class -> org.hibernate.type.BasicTypeReference@49fe0bcd -2024-08-08 20:50:20 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@49fe0bcd -2024-08-08 20:50:20 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@3516b881 -2024-08-08 20:50:20 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@3516b881 -2024-08-08 20:50:20 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@3516b881 -2024-08-08 20:50:20 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@6be8ce1b -2024-08-08 20:50:20 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@6be8ce1b -2024-08-08 20:50:20 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@e3c36d -2024-08-08 20:50:20 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@e3c36d -2024-08-08 20:50:20 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@397a10df -2024-08-08 20:50:20 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@397a10df -2024-08-08 20:50:20 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@39a865c1 -2024-08-08 20:50:20 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@39a865c1 -2024-08-08 20:50:20 - Adding type registration url -> org.hibernate.type.BasicTypeReference@141dfcf9 -2024-08-08 20:50:20 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@141dfcf9 -2024-08-08 20:50:20 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@a7bbdbc -2024-08-08 20:50:20 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@63eea8c4 -2024-08-08 20:50:20 - Adding type registration object -> org.hibernate.type.JavaObjectType@3b66ac74 -2024-08-08 20:50:20 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@3b66ac74 -2024-08-08 20:50:20 - Adding type registration null -> org.hibernate.type.NullType@5eee3da9 -2024-08-08 20:50:20 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@ace2408 -2024-08-08 20:50:20 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@3573e19d -2024-08-08 20:50:20 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@5c1dd18 -2024-08-08 20:50:20 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@2a6dbb7c -2024-08-08 20:50:20 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@5178345d -2024-08-08 20:50:20 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@7b2d58e6 -2024-08-08 20:50:20 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@708f7386 -2024-08-08 20:50:20 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@377e90b0 -2024-08-08 20:50:20 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@73234691] into BootstrapContext; was [null] -2024-08-08 20:50:20 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@73234691) [was null] -2024-08-08 20:50:20 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@4e61a863] into BootstrapContext; was [null] -2024-08-08 20:50:20 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@35f01759] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@2fea9a7b] -2024-08-08 20:50:20 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-08 20:50:20 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-08 20:50:20 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-08 20:50:20 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-08 20:50:20 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-08 20:50:20 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@73234691] -2024-08-08 20:50:20 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@73234691] -2024-08-08 20:50:20 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 20:50:20 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 20:50:20 - JDBC version : 4.2 -2024-08-08 20:50:20 - HikariPool-1 - After adding stats (total=4, active=1, idle=3, waiting=0) -2024-08-08 20:50:20 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-08 20:50:20 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-08 20:50:20 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-08 20:50:20 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-08 20:50:20 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-08 20:50:20 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-08 20:50:20 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 20:50:20 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 20:50:20 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-08 20:50:20 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-08 20:50:20 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 20:50:20 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 20:50:20 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@c683cf5] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@2c224096] -2024-08-08 20:50:20 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-08 20:50:20 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-08 20:50:20 - Import with entity name Action -2024-08-08 20:50:20 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-08 20:50:20 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-08 20:50:20 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-08 20:50:20 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 20:50:20 - Binding column: AnnotatedColumn() -2024-08-08 20:50:20 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 20:50:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 20:50:20 - MetadataSourceProcessor property id with lazy=false -2024-08-08 20:50:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-08 20:50:20 - building BasicValue for id -2024-08-08 20:50:20 - Skipping column re-registration: action.id -2024-08-08 20:50:20 - Building property id -2024-08-08 20:50:20 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 20:50:20 - Binding column: AnnotatedJoinColumn() -2024-08-08 20:50:20 - Binding column: AnnotatedColumn() -2024-08-08 20:50:20 - Building property event -2024-08-08 20:50:20 - Binding column: AnnotatedColumn() -2024-08-08 20:50:20 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 20:50:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-08 20:50:20 - building BasicValue for sequence -2024-08-08 20:50:20 - Skipping column re-registration: action.sequence -2024-08-08 20:50:20 - Building property sequence -2024-08-08 20:50:20 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 20:50:20 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-08 20:50:20 - Import with entity name BillAction -2024-08-08 20:50:20 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-08 20:50:20 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 20:50:20 - Binding column: AnnotatedColumn() -2024-08-08 20:50:20 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 20:50:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 20:50:20 - MetadataSourceProcessor property id with lazy=false -2024-08-08 20:50:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-08 20:50:20 - building BasicValue for id -2024-08-08 20:50:20 - Skipping column re-registration: bill_action.id -2024-08-08 20:50:20 - Building property id -2024-08-08 20:50:20 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 20:50:20 - Binding column: AnnotatedJoinColumn() -2024-08-08 20:50:20 - Binding column: AnnotatedColumn() -2024-08-08 20:50:20 - Building property action -2024-08-08 20:50:20 - Binding column: AnnotatedColumn() -2024-08-08 20:50:20 - MetadataSourceProcessor property price with lazy=false -2024-08-08 20:50:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-08 20:50:20 - building BasicValue for price -2024-08-08 20:50:20 - Skipping column re-registration: bill_action.price -2024-08-08 20:50:20 - Building property price -2024-08-08 20:50:20 - Binding column: AnnotatedColumn() -2024-08-08 20:50:20 - MetadataSourceProcessor property title with lazy=false -2024-08-08 20:50:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-08 20:50:20 - building BasicValue for title -2024-08-08 20:50:20 - Skipping column re-registration: bill_action.title -2024-08-08 20:50:20 - Building property title -2024-08-08 20:50:20 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 20:50:20 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-08 20:50:20 - Import with entity name MemberAction -2024-08-08 20:50:20 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-08 20:50:20 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 20:50:20 - Binding column: AnnotatedColumn() -2024-08-08 20:50:20 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 20:50:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 20:50:20 - MetadataSourceProcessor property id with lazy=false -2024-08-08 20:50:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-08 20:50:20 - building BasicValue for id -2024-08-08 20:50:20 - Skipping column re-registration: member_action.id -2024-08-08 20:50:20 - Building property id -2024-08-08 20:50:20 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 20:50:20 - Binding column: AnnotatedJoinColumn() -2024-08-08 20:50:20 - Binding column: AnnotatedColumn() -2024-08-08 20:50:20 - Building property action -2024-08-08 20:50:20 - Binding column: AnnotatedColumn() -2024-08-08 20:50:20 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-08 20:50:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-08 20:50:20 - building BasicValue for memberGroupId -2024-08-08 20:50:20 - Skipping column re-registration: member_action.member_group_id -2024-08-08 20:50:20 - Building property memberGroupId -2024-08-08 20:50:20 - Binding column: AnnotatedColumn() -2024-08-08 20:50:20 - MetadataSourceProcessor property memberName with lazy=false -2024-08-08 20:50:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-08 20:50:20 - building BasicValue for memberName -2024-08-08 20:50:20 - Skipping column re-registration: member_action.member_name -2024-08-08 20:50:20 - Building property memberName -2024-08-08 20:50:20 - Binding column: AnnotatedColumn() -2024-08-08 20:50:20 - MetadataSourceProcessor property status with lazy=false -2024-08-08 20:50:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-08 20:50:20 - building BasicValue for status -2024-08-08 20:50:20 - Skipping column re-registration: member_action.status -2024-08-08 20:50:20 - Building property status -2024-08-08 20:50:20 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 20:50:20 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-08 20:50:20 - Import with entity name Event -2024-08-08 20:50:20 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-08 20:50:20 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 20:50:20 - Binding column: AnnotatedColumn() -2024-08-08 20:50:20 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 20:50:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 20:50:20 - MetadataSourceProcessor property id with lazy=false -2024-08-08 20:50:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-08 20:50:20 - building BasicValue for id -2024-08-08 20:50:20 - Skipping column re-registration: event.id -2024-08-08 20:50:20 - Building property id -2024-08-08 20:50:20 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 20:50:20 - Binding column: AnnotatedColumn() -2024-08-08 20:50:20 - MetadataSourceProcessor property name with lazy=false -2024-08-08 20:50:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-08 20:50:20 - building BasicValue for name -2024-08-08 20:50:20 - Skipping column re-registration: event.name -2024-08-08 20:50:20 - Building property name -2024-08-08 20:50:20 - Binding column: AnnotatedColumn() -2024-08-08 20:50:20 - MetadataSourceProcessor property password with lazy=false -2024-08-08 20:50:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-08 20:50:20 - building BasicValue for password -2024-08-08 20:50:20 - Skipping column re-registration: event.password -2024-08-08 20:50:20 - Building property password -2024-08-08 20:50:20 - Binding column: AnnotatedColumn() -2024-08-08 20:50:20 - MetadataSourceProcessor property token with lazy=false -2024-08-08 20:50:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-08 20:50:20 - building BasicValue for token -2024-08-08 20:50:20 - Skipping column re-registration: event.token -2024-08-08 20:50:20 - Building property token -2024-08-08 20:50:20 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 20:50:20 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-08 20:50:20 - Import with entity name EventStep -2024-08-08 20:50:20 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-08 20:50:20 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 20:50:20 - Binding column: AnnotatedColumn() -2024-08-08 20:50:20 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 20:50:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 20:50:20 - MetadataSourceProcessor property id with lazy=false -2024-08-08 20:50:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-08 20:50:20 - building BasicValue for id -2024-08-08 20:50:20 - Skipping column re-registration: event_step.id -2024-08-08 20:50:20 - Building property id -2024-08-08 20:50:20 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 20:50:20 - Binding column: AnnotatedJoinColumn() -2024-08-08 20:50:20 - Binding column: AnnotatedColumn() -2024-08-08 20:50:20 - Building property event -2024-08-08 20:50:20 - Binding column: AnnotatedColumn() -2024-08-08 20:50:20 - MetadataSourceProcessor property name with lazy=false -2024-08-08 20:50:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-08 20:50:20 - building BasicValue for name -2024-08-08 20:50:20 - Skipping column re-registration: event_step.name -2024-08-08 20:50:20 - Building property name -2024-08-08 20:50:20 - Binding column: AnnotatedColumn() -2024-08-08 20:50:20 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 20:50:20 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-08 20:50:20 - building BasicValue for sequence -2024-08-08 20:50:20 - Skipping column re-registration: event_step.sequence -2024-08-08 20:50:20 - Building property sequence -2024-08-08 20:50:20 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 20:50:20 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 20:50:20 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 20:50:20 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 20:50:20 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-08 20:50:20 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-08 20:50:20 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 20:50:20 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-08 20:50:20 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-08 20:50:20 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-08 20:50:20 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 20:50:20 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 20:50:20 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-08 20:50:20 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-08 20:50:20 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 20:50:20 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 20:50:20 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 20:50:20 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-08 20:50:20 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-08 20:50:20 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-08 20:50:20 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-08 20:50:20 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-08 20:50:20 - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) -2024-08-08 20:50:20 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-08 20:50:20 - Building session factory -2024-08-08 20:50:20 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 20:50:20 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@97cb8dc, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@261b6c8c, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.6236290180460418697, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=29564, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.6236290180460418697, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@2dcbf825, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-08 20:50:20 - Session factory constructed with filter configurations : {} -2024-08-08 20:50:20 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 20:50:20 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 20:50:20 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 20:50:20 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 20:50:20 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 20:50:20 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 20:50:20 - Loaded expression factory via original TCCL -2024-08-08 20:50:20 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 20:50:20 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 20:50:20 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 20:50:20 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 20:50:20 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 20:50:20 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 20:50:20 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 20:50:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 20:50:20 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 20:50:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 20:50:20 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 20:50:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 20:50:20 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 20:50:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 20:50:20 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 20:50:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 20:50:20 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 20:50:20 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-08 20:50:20 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@5c81ddab] under count; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@6ad0cd43] under every; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@7de43652] under any; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7fb9a83c] under sinh; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@517d9cd5] under cosh; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5216532a] under tanh; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@862624f] under pi; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3aa8c337] under log; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-08 20:50:20 - Registering alternate key : length -> character_length -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@79b0956e] under position; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@7901a5ab] under overlay; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@3e24bab6] under trim; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@4add4dff] under cast; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@25dc2c0] under collate; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@6a8bcb64] under extract; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@78b2d29e] under ifnull; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@25b402ea] under pad; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@1e965426] under str; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@38e052b2] under format; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@64f613da] under timestampadd; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@5543d800] under timestampdiff; prior registration was null -2024-08-08 20:50:20 - Registering alternate key : dateadd -> timestampadd -2024-08-08 20:50:20 - Registering alternate key : datediff -> timestampdiff -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1c25deb0] under current_date; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1be12e05] under current_time; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@66ab088c] under current_timestamp; prior registration was null -2024-08-08 20:50:20 - Registering alternate key : current date -> current_date -2024-08-08 20:50:20 - Registering alternate key : current time -> current_time -2024-08-08 20:50:20 - Registering alternate key : current timestamp -> current_timestamp -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5d01a2eb] under local_date; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@6fe337a5] under local_time; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7d60bd5a] under local_datetime; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@43312512] under offset_datetime; prior registration was null -2024-08-08 20:50:20 - Registering alternate key : local date -> local_date -2024-08-08 20:50:20 - Registering alternate key : local time -> local_time -2024-08-08 20:50:20 - Registering alternate key : local datetime -> local_datetime -2024-08-08 20:50:20 - Registering alternate key : offset datetime -> offset_datetime -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@13f7c165] under instant; prior registration was null -2024-08-08 20:50:20 - Registering alternate key : current_instant -> instant -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@7a2fd94c] under sql; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@637c8632] under count; prior registration was org.hibernate.dialect.function.CountFunction@5c81ddab -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@37ab1b10] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@862624f -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@55d87b73] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-08 20:50:20 - Registering alternate key : day -> day_of_month -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@6fe337a5 -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@7d60bd5a -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@7730da00] under trunc; prior registration was null -2024-08-08 20:50:20 - Registering alternate key : truncate -> trunc -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@52d01430] under date_trunc; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-08 20:50:20 - Registering alternate key : chr -> char -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3fdede3a] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@79b0956e -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@41948c13] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-08 20:50:20 - Registering alternate key : every -> bool_and -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-08 20:50:20 - Registering alternate key : any -> bool_or -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@3085befb] under format; prior registration was org.hibernate.dialect.function.FormatFunction@38e052b2 -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@322eb1a] under listagg; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@57ac236a] under mode; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@4542af89] under percentile_cont; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@3163e03b] under percentile_disc; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@2202c92f] under rank; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@440d2d64] under dense_rank; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@1a712f12] under percent_rank; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@62525dd3] under cume_dist; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@4113d9ab] under array; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@448fa659] under array_list; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@1a6a4595] under array_agg; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@4853f592] under array_position; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@468646ea] under array_positions; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@347f8029] under array_positions_list; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3f78a5ed] under array_length; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@4edd8a0a] under array_concat; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@151d216e] under array_prepend; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@1018f702] under array_append; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@12478b4e] under array_contains; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@64921450] under array_contains_nullable; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@22c4354d] under array_overlaps; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@2681185e] under array_overlaps_nullable; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1701beb3] under array_get; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@5ef7ae2f] under array_set; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@4b552b13] under array_remove; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@30b97fcf] under array_remove_index; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@b791e6e] under array_slice; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@510bd87a] under array_replace; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3d213a2b] under array_trim; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@219a2203] under array_fill; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@58fbfefb] under array_fill_list; prior registration was null -2024-08-08 20:50:20 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@33060020] under array_to_string; prior registration was null -2024-08-08 20:50:20 - abs(NUMERIC arg) -2024-08-08 20:50:20 - Double acos(NUMERIC arg) -2024-08-08 20:50:20 - Boolean any(BOOLEAN predicate) -2024-08-08 20:50:20 - array( ... ) -2024-08-08 20:50:20 - array_agg(arg) -2024-08-08 20:50:20 - array_append( ... ) -2024-08-08 20:50:20 - array_concat( ... ) -2024-08-08 20:50:20 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 20:50:20 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 20:50:20 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-08 20:50:20 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-08 20:50:20 - array_get(ARRAY array, INTEGER index) -2024-08-08 20:50:20 - Integer array_length(ARRAY array) -2024-08-08 20:50:20 - array_list( ... ) -2024-08-08 20:50:20 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-08 20:50:20 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-08 20:50:20 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-08 20:50:20 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-08 20:50:20 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-08 20:50:20 - array_prepend( ... ) -2024-08-08 20:50:20 - array_remove( ... ) -2024-08-08 20:50:20 - array_remove_index( ... ) -2024-08-08 20:50:20 - array_replace( ... ) -2024-08-08 20:50:20 - array_set( ... ) -2024-08-08 20:50:20 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-08 20:50:20 - String array_to_string( ... ) -2024-08-08 20:50:20 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-08 20:50:20 - Integer ascii(STRING arg) -2024-08-08 20:50:20 - Double asin(NUMERIC arg) -2024-08-08 20:50:20 - Double atan(NUMERIC arg) -2024-08-08 20:50:20 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-08 20:50:20 - avg(NUMERIC arg) -2024-08-08 20:50:20 - bit_and(arg) -2024-08-08 20:50:20 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-08 20:50:20 - bit_or(arg) -2024-08-08 20:50:20 - bitand(arg0, arg1) -2024-08-08 20:50:20 - bitnot(arg) -2024-08-08 20:50:20 - bitor(arg0, arg1) -2024-08-08 20:50:20 - bitxor(arg0, arg1) -2024-08-08 20:50:20 - Boolean bool_and(BOOLEAN predicate) -2024-08-08 20:50:20 - Boolean bool_or(BOOLEAN predicate) -2024-08-08 20:50:20 - cast(arg as Type) -2024-08-08 20:50:20 - ceiling(NUMERIC arg) -2024-08-08 20:50:20 - Character char(INTEGER arg) -2024-08-08 20:50:20 - Integer character_length(STRING_OR_CLOB arg) -2024-08-08 20:50:20 - Character chr(INTEGER arg) -2024-08-08 20:50:20 - coalesce(arg0[, arg1[, ...]]) -2024-08-08 20:50:20 - String collate(STRING string as COLLATION collation) -2024-08-08 20:50:20 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-08 20:50:20 - Double cos(NUMERIC arg) -2024-08-08 20:50:20 - Double cosh(NUMERIC arg) -2024-08-08 20:50:20 - Double cot(NUMERIC arg) -2024-08-08 20:50:20 - Long count([distinct ]{arg|*}) -2024-08-08 20:50:20 - Double cume_dist([arg0[, ...]]) -2024-08-08 20:50:20 - Date curdate() -2024-08-08 20:50:20 - Date current date -2024-08-08 20:50:20 - Time current time -2024-08-08 20:50:20 - Timestamp current timestamp -2024-08-08 20:50:20 - Date current_date -2024-08-08 20:50:20 - Instant current_instant -2024-08-08 20:50:20 - Time current_time -2024-08-08 20:50:20 - Timestamp current_timestamp -2024-08-08 20:50:20 - Time curtime() -2024-08-08 20:50:20 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-08 20:50:20 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 20:50:20 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 20:50:20 - Integer day(DATE arg) -2024-08-08 20:50:20 - Integer day_of_month(DATE arg) -2024-08-08 20:50:20 - Integer day_of_week(DATE arg) -2024-08-08 20:50:20 - Integer day_of_year(DATE arg) -2024-08-08 20:50:20 - String dayname(DATE arg) -2024-08-08 20:50:20 - Double degrees(NUMERIC arg) -2024-08-08 20:50:20 - Long dense_rank([arg0[, ...]]) -2024-08-08 20:50:20 - Boolean every(BOOLEAN predicate) -2024-08-08 20:50:20 - Double exp(NUMERIC arg) -2024-08-08 20:50:20 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-08 20:50:20 - first_valueANY value -2024-08-08 20:50:20 - floor(NUMERIC arg) -2024-08-08 20:50:20 - String format(TEMPORAL datetime as STRING pattern) -2024-08-08 20:50:20 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 20:50:20 - Integer hour(TIME arg) -2024-08-08 20:50:20 - ifnull(arg0, arg1) -2024-08-08 20:50:20 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-08 20:50:20 - Instant instant -2024-08-08 20:50:20 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-08 20:50:20 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-08 20:50:20 - last_valueANY value -2024-08-08 20:50:20 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-08 20:50:20 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 20:50:20 - String left(STRING string, INTEGER length) -2024-08-08 20:50:20 - Integer length(STRING_OR_CLOB arg) -2024-08-08 20:50:20 - String listagg(STRING arg0, STRING arg1) -2024-08-08 20:50:20 - Double ln(NUMERIC arg) -2024-08-08 20:50:20 - LocalDate local date -2024-08-08 20:50:20 - LocalDateTime local datetime -2024-08-08 20:50:20 - LocalTime local time -2024-08-08 20:50:20 - LocalDate local_date -2024-08-08 20:50:20 - LocalDateTime local_datetime -2024-08-08 20:50:20 - LocalTime local_time -2024-08-08 20:50:20 - Time localtime -2024-08-08 20:50:20 - Timestamp localtimestamp -2024-08-08 20:50:20 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-08 20:50:20 - Double log(NUMERIC base, NUMERIC arg) -2024-08-08 20:50:20 - Double log10(NUMERIC arg) -2024-08-08 20:50:20 - String lower(STRING string) -2024-08-08 20:50:20 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 20:50:20 - String ltrim(STRING string) -2024-08-08 20:50:20 - max(COMPARABLE arg) -2024-08-08 20:50:20 - Double median(NUMERIC arg) -2024-08-08 20:50:20 - Integer microsecond(TIME arg) -2024-08-08 20:50:20 - min(COMPARABLE arg) -2024-08-08 20:50:20 - Integer minute(TIME arg) -2024-08-08 20:50:20 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-08 20:50:20 - mode() -2024-08-08 20:50:20 - Integer month(DATE arg) -2024-08-08 20:50:20 - String monthname(DATE arg) -2024-08-08 20:50:20 - Timestamp now() -2024-08-08 20:50:20 - nth_valueANY value, INTEGER nth -2024-08-08 20:50:20 - nullif(arg0, arg1) -2024-08-08 20:50:20 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-08 20:50:20 - OffsetDateTime offset datetime -2024-08-08 20:50:20 - OffsetDateTime offset_datetime -2024-08-08 20:50:20 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-08 20:50:20 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-08 20:50:20 - Double percent_rank([arg0[, ...]]) -2024-08-08 20:50:20 - percentile_cont(NUMERIC arg) -2024-08-08 20:50:20 - percentile_disc(NUMERIC arg) -2024-08-08 20:50:20 - Double pi -2024-08-08 20:50:20 - Integer position(STRING pattern in STRING string) -2024-08-08 20:50:20 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-08 20:50:20 - Integer quarter(DATE arg) -2024-08-08 20:50:20 - Double radians(NUMERIC arg) -2024-08-08 20:50:20 - Double rand([INTEGER seed]) -2024-08-08 20:50:20 - Long rank([arg0[, ...]]) -2024-08-08 20:50:20 - String repeat(STRING string, INTEGER times) -2024-08-08 20:50:20 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-08 20:50:20 - String right(STRING string, INTEGER length) -2024-08-08 20:50:20 - round(NUMERIC number[, INTEGER places]) -2024-08-08 20:50:20 - Long row_number() -2024-08-08 20:50:20 - Long rownum() -2024-08-08 20:50:20 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 20:50:20 - String rtrim(STRING string) -2024-08-08 20:50:20 - Integer second(TIME arg) -2024-08-08 20:50:20 - Integer sign(NUMERIC arg) -2024-08-08 20:50:20 - Double sin(NUMERIC arg) -2024-08-08 20:50:20 - Double sinh(NUMERIC arg) -2024-08-08 20:50:20 - String soundex(arg) -2024-08-08 20:50:20 - String space(INTEGER arg) -2024-08-08 20:50:20 - Object sql -2024-08-08 20:50:20 - Double sqrt(NUMERIC arg) -2024-08-08 20:50:20 - Double stddev_pop(NUMERIC arg) -2024-08-08 20:50:20 - Double stddev_samp(NUMERIC arg) -2024-08-08 20:50:20 - String str(arg) -2024-08-08 20:50:20 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-08 20:50:20 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-08 20:50:20 - sum(arg) -2024-08-08 20:50:20 - Timestamp sysdate -2024-08-08 20:50:20 - Double tan(NUMERIC arg) -2024-08-08 20:50:20 - Double tanh(NUMERIC arg) -2024-08-08 20:50:20 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 20:50:20 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 20:50:20 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-08 20:50:20 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-08 20:50:20 - trunc( ... ) -2024-08-08 20:50:20 - truncate( ... ) -2024-08-08 20:50:20 - String upper(STRING string) -2024-08-08 20:50:20 - Double var_pop(NUMERIC arg) -2024-08-08 20:50:20 - Double var_samp(NUMERIC arg) -2024-08-08 20:50:20 - Integer week(DATE arg) -2024-08-08 20:50:20 - Integer year(DATE arg) -2024-08-08 20:50:20 - Starting QueryInterpretationCache(2048) -2024-08-08 20:50:20 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-08 20:50:20 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-08 20:50:20 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 20:50:20 - Configured EntityCopyObserver strategy: disallow -2024-08-08 20:50:20 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-08 20:50:20 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-08 20:50:20 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 20:50:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 20:50:20 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 20:50:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-08 20:50:20 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 20:50:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 20:50:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-08 20:50:20 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 20:50:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 20:50:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-08 20:50:20 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 20:50:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 20:50:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-08 20:50:20 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 20:50:20 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 20:50:20 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-08 20:50:20 - Starting post-init callbacks -2024-08-08 20:50:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-08 20:50:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-08 20:50:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-08 20:50:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-08 20:50:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-08 20:50:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-08 20:50:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-08 20:50:20 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-08 20:50:20 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-08 20:50:20 - Created new SQL alias : ba1_0 -2024-08-08 20:50:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-08 20:50:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4199761d] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-08 20:50:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-08 20:50:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-08 20:50:20 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-08 20:50:20 - Version select: select id from bill_action where id=? -2024-08-08 20:50:20 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-08 20:50:20 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-08 20:50:20 - Delete (0): delete from bill_action where id=? -2024-08-08 20:50:20 - Created new SQL alias : ma1_0 -2024-08-08 20:50:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-08 20:50:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2e243122] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-08 20:50:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-08 20:50:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-08 20:50:20 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-08 20:50:20 - Version select: select id from member_action where id=? -2024-08-08 20:50:20 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-08 20:50:20 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-08 20:50:20 - Delete (0): delete from member_action where id=? -2024-08-08 20:50:20 - Created new SQL alias : e1_0 -2024-08-08 20:50:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-08 20:50:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-08 20:50:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-08 20:50:20 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-08 20:50:20 - Version select: select id from event where id=? -2024-08-08 20:50:20 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-08 20:50:20 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-08 20:50:20 - Delete (0): delete from event where id=? -2024-08-08 20:50:20 - Created new SQL alias : a1_0 -2024-08-08 20:50:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-08 20:50:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2f51b100] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-08 20:50:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-08 20:50:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-08 20:50:20 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-08 20:50:20 - Version select: select id from action where id=? -2024-08-08 20:50:20 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-08 20:50:20 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-08 20:50:20 - Delete (0): delete from action where id=? -2024-08-08 20:50:20 - Created new SQL alias : es1_0 -2024-08-08 20:50:20 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-08 20:50:20 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1dba7721] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-08 20:50:20 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-08 20:50:20 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-08 20:50:20 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-08 20:50:20 - Version select: select id from event_step where id=? -2024-08-08 20:50:20 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-08 20:50:20 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-08 20:50:20 - Delete (0): delete from event_step where id=? -2024-08-08 20:50:20 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-08 20:50:20 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@c683cf5] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@1de6f29d] -2024-08-08 20:50:20 - Checking 0 named HQL queries -2024-08-08 20:50:20 - Checking 0 named SQL queries -2024-08-08 20:50:20 - - drop table if exists action cascade -2024-08-08 20:50:20 - - drop table if exists bill_action cascade -2024-08-08 20:50:20 - - drop table if exists event cascade -2024-08-08 20:50:20 - - drop table if exists event_step cascade -2024-08-08 20:50:20 - - drop table if exists member_action cascade -2024-08-08 20:50:20 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-08 20:50:20 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-08 20:50:20 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-08 20:50:20 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-08 20:50:20 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-08 20:50:20 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-08 20:50:20 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-08 20:50:20 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-08 20:50:20 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-08 20:50:20 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@4ed492df -2024-08-08 20:50:20 - Registering SessionFactory: 2b3a19f8-5558-475c-9375-6570b873c80f (<unnamed>) -2024-08-08 20:50:20 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-08 20:50:20 - Instantiated SessionFactory -2024-08-08 20:50:20 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'actionService' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-08 20:50:20 - Initializing JpaMetamodelMappingContext… -2024-08-08 20:50:20 - Finished initializing JpaMetamodelMappingContext -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - Statistics initialized [enabled=false] -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-08 20:50:20 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-08 20:50:20 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 82 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 82 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 82 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 84 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:20 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 20:50:20 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:20 - [javax.management.remote.rmi.RMIConnectionImpl@11b3c824: connectionId=rmi://127.0.0.1 2] closing. -2024-08-08 20:50:20 - [javax.management.remote.rmi.RMIConnectionImpl@11b3c824: connectionId=rmi://127.0.0.1 2] closed. -2024-08-08 20:50:20 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-08 20:50:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:50:20 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - Looking up named query BillAction.findByAction_Event -2024-08-08 20:50:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:50:20 - Did not find named query BillAction.findByAction_Event -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - Looking up named query BillAction.findByAction_Id -2024-08-08 20:50:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:50:20 - Did not find named query BillAction.findByAction_Id -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 20:50:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:50:20 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 20:50:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:50:20 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-08 20:50:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:50:20 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-08 20:50:20 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 20:50:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 20:50:20 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 20:50:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:50:20 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-08 20:50:20 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 20:50:20 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-08 20:50:20 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 20:50:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:50:20 - Did not find named query MemberAction.findAllByEvent.count -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-08 20:50:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 20:50:20 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(808503338827333)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(808503338827333)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(808503338827333)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(808503338827333)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(808503338827333).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 20:50:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:50:20 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-08 20:50:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 20:50:20 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 20:50:20 - Looking up named query MemberAction.findByAction -2024-08-08 20:50:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:50:20 - Did not find named query MemberAction.findByAction -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'eventRepository' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - Looking up named query Event.findByToken -2024-08-08 20:50:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:50:20 - Did not find named query Event.findByToken -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-08 20:50:20 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-08 20:50:20 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-08 20:50:20 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'billActionService' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'actionRepository' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:50:20 - Did not find named query Action.findLastByEvent.count -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-08 20:50:20 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 20:50:20 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 20:50:20 - Looking up named query Action.findByIdAndEvent -2024-08-08 20:50:20 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 20:50:20 - Did not find named query Action.findByIdAndEvent -2024-08-08 20:50:20 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 20:50:20 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-08 20:50:20 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-08 20:50:20 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-08 20:50:20 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'eventService' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-08 20:50:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-08 20:50:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-08 20:50:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-08 20:50:20 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-08 20:50:20 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'memberActionService' -2024-08-08 20:50:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-08 20:50:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-08 20:50:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-08 20:50:20 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 20:50:20 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 20:50:20 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-08 20:50:20 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'actionController' -2024-08-08 20:50:20 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'billActionController' -2024-08-08 20:50:20 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'eventController' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'authService' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 20:50:20 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-08 20:50:20 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-08 20:50:20 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'memberActionController' -2024-08-08 20:50:20 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 20:50:20 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-08 20:50:20 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-08 20:50:20 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-08 20:50:21 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:50:21 - Loaded expression factory via original TCCL -2024-08-08 20:50:21 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-08 20:50:21 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-08 20:50:21 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 20:50:21 - Trying to load META-INF/validation.xml via user class loader -2024-08-08 20:50:21 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 20:50:21 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 20:50:21 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 20:50:21 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 20:50:21 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 20:50:21 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 20:50:21 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 20:50:21 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 20:50:21 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 20:50:21 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 20:50:21 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'error' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-08 20:50:21 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@7db0565c' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@7db0565c' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-08 20:50:21 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-08 20:50:21 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-08 20:50:21 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-08 20:50:21 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:50:21 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 20:50:21 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-08 20:50:21 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:50:21 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 20:50:21 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'localeResolver' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'themeResolver' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-08 20:50:21 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 20:50:21 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 20:50:21 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 20:50:21 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-08 20:50:21 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-08 20:50:21 - - s.h.p.EventController: - {GET [/api/events/{eventId}/auth]}: authenticate(String) - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/nameChange]}: updateMember(String,MemberNamesUpdateRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) -2024-08-08 20:50:21 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-08 20:50:21 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-08 20:50:21 - 17 mappings in 'requestMappingHandlerMapping' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-08 20:50:21 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 20:50:21 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-08 20:50:21 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 20:50:21 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 20:50:21 - 'beanNameHandlerMapping' {} -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-08 20:50:21 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 20:50:21 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'messageConverters' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-08 20:50:21 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-08 20:50:21 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:50:21 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:50:21 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'pageModule' -2024-08-08 20:50:21 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:50:21 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 20:50:21 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-08 20:50:21 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-08 20:50:21 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 20:50:21 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 20:50:21 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 20:50:21 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-08 20:50:21 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 20:50:21 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-08 20:50:21 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'sortResolver' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-08 20:50:21 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-08 20:50:21 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-08 20:50:21 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-08 20:50:21 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-08 20:50:21 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-08 20:50:21 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 20:50:21 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-08 20:50:21 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 20:50:21 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@7db0565c' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-08 20:50:21 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'transactionManager' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-08 20:50:21 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-08 20:50:21 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:50:21 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-08 20:50:21 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:50:21 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-08 20:50:21 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-08 20:50:21 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-08 20:50:21 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-08 20:50:21 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-08 20:50:21 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-08 20:50:21 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-08 20:50:21 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-08 20:50:21 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-08 20:50:21 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-08 20:50:21 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-08 20:50:21 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-08 20:50:21 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@7db0565c' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-08 20:50:21 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-08 20:50:21 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-08 20:50:21 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-08 20:50:21 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-08 20:50:21 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-08 20:50:21 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-08 20:50:21 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-08 20:50:21 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-08 20:50:21 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-08 20:50:21 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-08 20:50:21 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 20:50:21 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-08 20:50:21 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 20:50:21 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 20:50:21 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 20:50:21 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-08 20:50:21 - Using SLF4J as the default logging framework -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-08 20:50:21 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-08 20:50:21 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-08 20:50:21 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-08 20:50:21 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-08 20:50:21 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'observedAspect' -2024-08-08 20:50:21 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-08 20:50:21 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-08 20:50:21 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 20:50:21 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-08 20:50:21 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 20:50:21 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-08 20:50:21 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-08 20:50:21 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-08 20:50:21 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 82 -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 84 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - [javax.management.remote.rmi.RMIConnectionImpl@165dd1b8: connectionId=rmi://127.0.0.1 3] closing. -2024-08-08 20:50:21 - [javax.management.remote.rmi.RMIConnectionImpl@165dd1b8: connectionId=rmi://127.0.0.1 3] closed. -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-08 20:50:21 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-08 20:50:21 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-08 20:50:21 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-08 20:50:21 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 20:50:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 20:50:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 20:50:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-08 20:50:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-08 20:50:21 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-08 20:50:21 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 20:50:21 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 20:50:21 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-08 20:50:21 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-08 20:50:21 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-08 20:50:21 - Registering beans for JMX exposure on startup -2024-08-08 20:50:21 - Auto-detecting user-defined JMX MBeans -2024-08-08 20:50:21 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-08 20:50:21 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-08 20:50:21 - Starting beans in phase -2147483647 -2024-08-08 20:50:21 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-08 20:50:21 - Starting beans in phase 2147481599 -2024-08-08 20:50:21 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-08 20:50:21 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-08 20:50:21 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-08 20:50:21 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-08 20:50:21 - Tomcat started on port 8080 (http) with context path '/' -2024-08-08 20:50:21 - Successfully started bean 'webServerStartStop' -2024-08-08 20:50:21 - Starting beans in phase 2147482623 -2024-08-08 20:50:21 - Successfully started bean 'webServerGracefulShutdown' -2024-08-08 20:50:21 - Starting beans in phase 2147483647 -2024-08-08 20:50:21 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.web.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-08 20:50:21 - Started HaengdongApplication in 2.06 seconds (process running for 2.253) -2024-08-08 20:50:21 - Application availability state LivenessState changed to CORRECT -2024-08-08 20:50:21 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 82 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 84 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 82 -2024-08-08 20:50:21 - RMI TCP Connection(1)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - [javax.management.remote.rmi.RMIConnectionImpl@3b59ea39: connectionId=rmi://127.0.0.1 4] closing. -2024-08-08 20:50:21 - [javax.management.remote.rmi.RMIConnectionImpl@3b59ea39: connectionId=rmi://127.0.0.1 4] closed. -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:61201] -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:61200] -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 84 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 84 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - [javax.management.remote.rmi.RMIConnectionImpl@28f7a4ff: connectionId=rmi://127.0.0.1 5] closing. -2024-08-08 20:50:21 - [javax.management.remote.rmi.RMIConnectionImpl@28f7a4ff: connectionId=rmi://127.0.0.1 5] closed. -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 84 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - [javax.management.remote.rmi.RMIConnectionImpl@69acc6ac: connectionId=rmi://127.0.0.1 6] closing. -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - [javax.management.remote.rmi.RMIConnectionImpl@69acc6ac: connectionId=rmi://127.0.0.1 6] closed. -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - [javax.management.remote.rmi.RMIConnectionImpl@5d185c05: connectionId=rmi://127.0.0.1 7] closing. -2024-08-08 20:50:21 - [javax.management.remote.rmi.RMIConnectionImpl@5d185c05: connectionId=rmi://127.0.0.1 7] closed. -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 84 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - [javax.management.remote.rmi.RMIConnectionImpl@4deb0c30: connectionId=rmi://127.0.0.1 8] closing. -2024-08-08 20:50:21 - [javax.management.remote.rmi.RMIConnectionImpl@4deb0c30: connectionId=rmi://127.0.0.1 8] closed. -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 82 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 82 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 84 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 84 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - [javax.management.remote.rmi.RMIConnectionImpl@29b8b49e: connectionId=rmi://127.0.0.1 9] closing. -2024-08-08 20:50:21 - [javax.management.remote.rmi.RMIConnectionImpl@29b8b49e: connectionId=rmi://127.0.0.1 9] closed. -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - [javax.management.remote.rmi.RMIConnectionImpl@752fd0ce: connectionId=rmi://127.0.0.1 10] closing. -2024-08-08 20:50:21 - [javax.management.remote.rmi.RMIConnectionImpl@752fd0ce: connectionId=rmi://127.0.0.1 10] closed. -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 84 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 84 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:50:21 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-08 20:50:21 - Fetching JDBC Connection from DataSource -2024-08-08 20:50:21 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-08 20:50:21 - Initializing Servlet 'dispatcherServlet' -2024-08-08 20:50:21 - Detected StandardServletMultipartResolver -2024-08-08 20:50:21 - Detected AcceptHeaderLocaleResolver -2024-08-08 20:50:21 - Detected FixedThemeResolver -2024-08-08 20:50:21 - Fetching JDBC Connection from DataSource -2024-08-08 20:50:21 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@7469d13a -2024-08-08 20:50:21 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@9e96118 -2024-08-08 20:50:21 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-08 20:50:21 - Completed initialization in 1 ms -2024-08-08 20:50:21 - RMI TCP Connection(2)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - [javax.management.remote.rmi.RMIConnectionImpl@47ada918: connectionId=rmi://127.0.0.1 12] closing. -2024-08-08 20:50:21 - [javax.management.remote.rmi.RMIConnectionImpl@47ada918: connectionId=rmi://127.0.0.1 12] closed. -2024-08-08 20:50:21 - RMI TCP Connection(3)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:50:21 - [javax.management.remote.rmi.RMIConnectionImpl@bbf51ac: connectionId=rmi://127.0.0.1 11] closing. -2024-08-08 20:50:21 - [javax.management.remote.rmi.RMIConnectionImpl@bbf51ac: connectionId=rmi://127.0.0.1 11] closed. -2024-08-08 20:50:30 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.6236290180460418697/conf/jaspic-providers.xml] -2024-08-08 20:50:30 - GET "/docs/index.html", parameters={} -2024-08-08 20:50:30 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 20:50:30 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 20:50:30 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 20:50:30 - Completed 200 OK -2024-08-08 20:50:30 - GET "/favicon.ico", parameters={} -2024-08-08 20:50:30 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 20:50:30 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 20:50:30 - Resource not found -2024-08-08 20:50:30 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 20:50:30 - Using 'application/json;q=0.8', given [image/avif, image/webp, image/apng, image/svg+xml, image/*, */*;q=0.8] and supported [application/json, application/*+json] -2024-08-08 20:50:30 - Writing [ErrorResponse[errorCode=NO_RESOURCE_REQUEST, message=존재하지 않는 자원입니다.]] -2024-08-08 20:50:30 - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource favicon.ico.] -2024-08-08 20:50:30 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 20:50:30 - Completed 400 BAD_REQUEST -2024-08-08 20:50:31 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 20:50:31 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 20:50:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 20:50:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 20:50:50 - RMI TCP Connection(1)-127.0.0.1: (port 61198) connection closed -2024-08-08 20:50:50 - RMI TCP Connection(2)-127.0.0.1: (port 61198) connection closed -2024-08-08 20:50:50 - RMI TCP Connection(3)-127.0.0.1: (port 61198) connection closed -2024-08-08 20:50:50 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=61201,localport=61198] -2024-08-08 20:50:50 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=61199,localport=61198] -2024-08-08 20:50:50 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=61200,localport=61198] -2024-08-08 20:50:50 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=61201,localport=61198] -2024-08-08 20:50:50 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=61200,localport=61198] -2024-08-08 20:50:50 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=61199,localport=61198] -2024-08-08 20:51:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 20:51:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 20:51:42 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:61231] -2024-08-08 20:51:42 - RMI TCP Connection(4)-127.0.0.1: (port 61198) op = 80 -2024-08-08 20:51:42 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:51:42 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:51:42 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:51:42 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:51:42 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2f09e6b2 -2024-08-08 20:51:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 20:51:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 20:51:57 - RMI TCP Connection(4)-127.0.0.1: (port 61198) connection closed -2024-08-08 20:51:57 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=61231,localport=61198] -2024-08-08 20:51:57 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=61231,localport=61198] -2024-08-08 20:52:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 20:52:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 20:52:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 20:52:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 20:53:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 20:53:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 20:53:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 20:53:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 20:54:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 20:54:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 20:54:50 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 20:54:50 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 20:55:20 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 20:55:20 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 20:55:29 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-08 20:55:29 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0, started on Thu Aug 08 20:50:19 KST 2024 -2024-08-08 20:55:29 - Stopping beans in phase 2147483647 -2024-08-08 20:55:29 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-08 20:55:29 - Stopping beans in phase 2147482623 -2024-08-08 20:55:29 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-08 20:55:29 - Stopping beans in phase 2147481599 -2024-08-08 20:55:29 - Bean 'webServerStartStop' completed its stop procedure -2024-08-08 20:55:29 - Stopping beans in phase -2147483647 -2024-08-08 20:55:29 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-08 20:55:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-08 20:55:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-08 20:55:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-08 20:55:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-08 20:55:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-08 20:55:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-08 20:55:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-08 20:55:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-08 20:55:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-08 20:55:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-08 20:55:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-08 20:55:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-08 20:55:29 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-08 20:55:29 - Unregistering JMX-exposed beans on shutdown -2024-08-08 20:55:29 - Unregistering JMX-exposed beans -2024-08-08 20:55:29 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-08 20:55:29 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 20:55:29 - HHH000031: Closing -2024-08-08 20:55:29 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@5b6a5ddf] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@1de6f29d] -2024-08-08 20:55:29 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-08 20:55:29 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-08 20:55:29 - HikariPool-1 - Shutdown initiated... -2024-08-08 20:55:29 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 20:55:29 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 20:55:29 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 20:55:29 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 20:55:29 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 20:55:29 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 20:55:29 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 20:55:29 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 20:55:29 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 20:55:29 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 20:55:29 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 20:55:29 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-08 20:55:29 - HikariPool-1 - Shutdown completed. -2024-08-08 20:55:29 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed -2024-08-08 21:33:52 - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property -2024-08-08 21:33:52 - HV000001: Hibernate Validator 8.0.1.Final -2024-08-08 21:33:52 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 21:33:52 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 21:33:52 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 21:33:52 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 21:33:52 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 21:33:52 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 21:33:52 - Loaded expression factory via original TCCL -2024-08-08 21:33:52 - Starting HaengdongApplication using Java 17.0.12 with PID 33040 (/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main started by jeonhogeon in /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong) -2024-08-08 21:33:52 - Running with Spring Boot v3.3.1, Spring v6.1.10 -2024-08-08 21:33:52 - No active profile set, falling back to 1 default profile: "default" -2024-08-08 21:33:52 - Loading source class server.haengdong.HaengdongApplication -2024-08-08 21:33:52 - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0 -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' -2024-08-08 21:33:52 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 21:33:52 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 21:33:52 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 21:33:52 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 21:33:52 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 21:33:52 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 21:33:52 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/ActionService.class] -2024-08-08 21:33:52 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/BillActionService.class] -2024-08-08 21:33:52 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/EventService.class] -2024-08-08 21:33:52 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionFactory.class] -2024-08-08 21:33:52 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/application/MemberActionService.class] -2024-08-08 21:33:52 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/config/WebMvcConfig.class] -2024-08-08 21:33:52 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 21:33:52 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 21:33:52 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 21:33:52 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberGroupIdProvider.class] -2024-08-08 21:33:52 - Ignored because not a concrete top-level class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 21:33:52 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventTokenProvider.class] -2024-08-08 21:33:52 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/exception/GlobalExceptionHandler.class] -2024-08-08 21:33:52 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/ActionController.class] -2024-08-08 21:33:52 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/BillActionController.class] -2024-08-08 21:33:52 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/EventController.class] -2024-08-08 21:33:52 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/presentation/MemberActionController.class] -2024-08-08 21:33:52 - Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' -2024-08-08 21:33:52 - @EnableAutoConfiguration was declared on a class in the package 'server.haengdong'. Automatic @Repository and @Entity scanning is enabled. -2024-08-08 21:33:52 - Scanning for JPA repositories in packages server.haengdong. -2024-08-08 21:33:52 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/ActionRepository.class] -2024-08-08 21:33:52 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/BillActionRepository.class] -2024-08-08 21:33:52 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/action/MemberActionRepository.class] -2024-08-08 21:33:52 - Identified candidate component class: file [/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/server/haengdong/domain/event/EventRepository.class] -2024-08-08 21:33:52 - Finished Spring Data repository scanning in 17 ms. Found 4 JPA repository interfaces. -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'methodValidationPostProcessor' -2024-08-08 21:33:52 - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' -2024-08-08 21:33:52 - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' -2024-08-08 21:33:52 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 21:33:52 - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'transactionAttributeSource' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'transactionInterceptor' -2024-08-08 21:33:52 - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 21:33:52 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' -2024-08-08 21:33:52 - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'meterRegistryPostProcessor' -2024-08-08 21:33:52 - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'observationRegistryPostProcessor' -2024-08-08 21:33:52 - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' -2024-08-08 21:33:53 - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@73608eb0] -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' -2024-08-08 21:33:53 - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.] -org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-2.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/libtcnative-1.dylib, Can't load library: /Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. - at org.apache.tomcat.jni.Library.<init>(Library.java:91) - at org.apache.tomcat.jni.Library.initialize(Library.java:147) - at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) - at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:138) - at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'sslBundleRegistry' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'fileWatcher' -2024-08-08 21:33:53 - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' -2024-08-08 21:33:53 - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' -2024-08-08 21:33:53 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' -2024-08-08 21:33:53 - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' -2024-08-08 21:33:53 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'errorPageCustomizer' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' -2024-08-08 21:33:53 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'dispatcherServletRegistration' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'dispatcherServlet' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' -2024-08-08 21:33:53 - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'multipartConfigElement' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 21:33:53 - Class not found so assuming code is running on a pre-Java 19 JVM -java.lang.ClassNotFoundException: java.lang.WrongThreadException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre19Compat.<clinit>(Jre19Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 21:33:53 - Class not found so assuming code is running on a pre-Java 21 JVM -java.lang.ClassNotFoundException: java.lang.Thread$Builder - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre21Compat.<clinit>(Jre21Compat.java:43) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 21:33:53 - Class not found so assuming code is running on a pre-Java 22 JVM -java.lang.ClassNotFoundException: java.text.ListFormat - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) - at java.base/java.lang.Class.forName0(Native Method) - at java.base/java.lang.Class.forName(Class.java:375) - at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) - at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) - at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) - at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 21:33:53 - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] -2024-08-08 21:33:53 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 21:33:53 - Code archive: /Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar -2024-08-08 21:33:53 - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. -2024-08-08 21:33:53 - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] -2024-08-08 21:33:53 - Tomcat initialized with port 8080 (http) -2024-08-08 21:33:53 - Setting state for [StandardServer[-1]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@45bbc52f] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@45bbc52f] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [StandardService[Tomcat]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.mapper.MapperListener@53982523] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.mapper.MapperListener@53982523] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING] -2024-08-08 21:33:53 - Initializing ProtocolHandler ["http-nio-8080"] -2024-08-08 21:33:53 - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [StandardService[Tomcat]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [StandardServer[-1]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [StandardServer[-1]] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [StandardServer[-1]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@45bbc52f] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@45bbc52f] to [STARTING] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@45bbc52f] to [STARTED] -2024-08-08 21:33:53 - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] -2024-08-08 21:33:53 - Starting service [Tomcat] -2024-08-08 21:33:53 - Setting state for [StandardService[Tomcat]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] -2024-08-08 21:33:53 - Starting Servlet engine: [Apache Tomcat/10.1.25] -2024-08-08 21:33:53 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.webresources.StandardRoot@3a3883c4] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.webresources.StandardRoot@3a3883c4] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.webresources.StandardRoot@3a3883c4] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.webresources.DirResourceSet@9d3d54e] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.webresources.DirResourceSet@9d3d54e] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.webresources.DirResourceSet@9d3d54e] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.webresources.DirResourceSet@9d3d54e] to [STARTING] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.webresources.DirResourceSet@9d3d54e] to [STARTED] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.webresources.StandardRoot@3a3883c4] to [STARTING] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.webresources.StandardRoot@3a3883c4] to [STARTED] -2024-08-08 21:33:53 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 21:33:53 - Starting this Loader -2024-08-08 21:33:53 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 21:33:53 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 21:33:53 - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] -2024-08-08 21:33:53 - Configured a manager of class [org.apache.catalina.session.StandardManager] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@37b01ce2] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@37b01ce2] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@37b01ce2] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@37b01ce2] to [STARTING] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@37b01ce2] to [STARTED] -2024-08-08 21:33:53 - Initializing Spring embedded WebApplicationContext -2024-08-08 21:33:53 - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] -2024-08-08 21:33:53 - Root WebApplicationContext: initialization completed in 680 ms -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'webMvcObservationFilter' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'observationRegistry' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'propertiesObservationFilter' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'defaultMeterObservationHandler' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'simpleMeterRegistry' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'simpleConfig' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'simpleConfig' via factory method to bean named 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'micrometerClock' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' -2024-08-08 21:33:53 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig' -2024-08-08 21:33:53 - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'propertiesMeterFilter' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration' -2024-08-08 21:33:53 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration' -2024-08-08 21:33:53 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 21:33:53 - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry' -2024-08-08 21:33:53 - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'h2Console' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'dataSource' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'jdbcConnectionDetails' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' -2024-08-08 21:33:53 - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' -2024-08-08 21:33:53 - Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 -2024-08-08 21:33:53 - HikariPool-1 - configuration: -2024-08-08 21:33:53 - allowPoolSuspension.............false -2024-08-08 21:33:53 - autoCommit......................true -2024-08-08 21:33:53 - catalog.........................none -2024-08-08 21:33:53 - connectionInitSql...............none -2024-08-08 21:33:53 - connectionTestQuery.............none -2024-08-08 21:33:53 - connectionTimeout...............30000 -2024-08-08 21:33:53 - dataSource......................none -2024-08-08 21:33:53 - dataSourceClassName.............none -2024-08-08 21:33:53 - dataSourceJNDI..................none -2024-08-08 21:33:53 - dataSourceProperties............{password=<masked>} -2024-08-08 21:33:53 - driverClassName................."org.h2.Driver" -2024-08-08 21:33:53 - exceptionOverrideClassName......none -2024-08-08 21:33:53 - healthCheckProperties...........{} -2024-08-08 21:33:53 - healthCheckRegistry.............none -2024-08-08 21:33:53 - idleTimeout.....................600000 -2024-08-08 21:33:53 - initializationFailTimeout.......1 -2024-08-08 21:33:53 - isolateInternalQueries..........false -2024-08-08 21:33:53 - jdbcUrl.........................jdbc:h2:mem:database -2024-08-08 21:33:53 - keepaliveTime...................0 -2024-08-08 21:33:53 - leakDetectionThreshold..........0 -2024-08-08 21:33:53 - maxLifetime.....................1800000 -2024-08-08 21:33:53 - maximumPoolSize.................10 -2024-08-08 21:33:53 - metricRegistry..................none -2024-08-08 21:33:53 - metricsTrackerFactory...........none -2024-08-08 21:33:53 - minimumIdle.....................10 -2024-08-08 21:33:53 - password........................<masked> -2024-08-08 21:33:53 - poolName........................"HikariPool-1" -2024-08-08 21:33:53 - readOnly........................false -2024-08-08 21:33:53 - registerMbeans..................false -2024-08-08 21:33:53 - scheduledExecutor...............none -2024-08-08 21:33:53 - schema..........................none -2024-08-08 21:33:53 - threadFactory...................internal -2024-08-08 21:33:53 - transactionIsolation............default -2024-08-08 21:33:53 - username........................"sa" -2024-08-08 21:33:53 - validationTimeout...............5000 -2024-08-08 21:33:53 - HikariPool-1 - Starting... -2024-08-08 21:33:53 - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:database user=SA -2024-08-08 21:33:53 - HikariPool-1 - Start completed. -2024-08-08 21:33:53 - H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:database' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'servletEndpointRegistrar' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'servletEndpointDiscoverer' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration' -2024-08-08 21:33:53 - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'webEndpointPathMapper' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' -2024-08-08 21:33:53 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 21:33:53 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration' -2024-08-08 21:33:53 - Autowiring by type from bean name 'servletExposeExcludePropertyEndpointFilter' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 21:33:53 - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'requestContextFilter' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'formContentFilter' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'characterEncodingFilter' -2024-08-08 21:33:53 - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105 -2024-08-08 21:33:53 - Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*] -2024-08-08 21:33:53 - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:62256] -2024-08-08 21:33:53 - Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]]] to [STARTED] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[h2Console]] to [STARTED] -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:53 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@283baa39] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@283baa39] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@283baa39] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@283baa39] to [STARTING] -2024-08-08 21:33:53 - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@283baa39] to [STARTED] -2024-08-08 21:33:53 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:53 - Filter 'requestContextFilter' configured for use -2024-08-08 21:33:53 - Filter 'webMvcObservationFilter' configured for use -2024-08-08 21:33:53 - Filter 'characterEncodingFilter' configured for use -2024-08-08 21:33:53 - Filter 'formContentFilter' configured for use -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 21:33:53 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] -2024-08-08 21:33:53 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] -2024-08-08 21:33:53 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] -2024-08-08 21:33:53 - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat]] to [STARTING] -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:53 - Setting state for [StandardEngine[Tomcat]] to [STARTED] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.mapper.MapperListener@53982523] to [STARTING_PREP] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.mapper.MapperListener@53982523] to [STARTING] -2024-08-08 21:33:53 - Registered host [localhost] -2024-08-08 21:33:53 - Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]] -2024-08-08 21:33:53 - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] -2024-08-08 21:33:53 - Register Context [] for service [StandardService[Tomcat]] -2024-08-08 21:33:53 - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] -2024-08-08 21:33:53 - Setting state for [org.apache.catalina.mapper.MapperListener@53982523] to [STARTED] -2024-08-08 21:33:53 - Setting state for [StandardService[Tomcat]] to [STARTED] -2024-08-08 21:33:53 - Setting state for [StandardServer[-1]] to [STARTED] -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' -2024-08-08 21:33:53 - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'entityManagerFactory' -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource' -2024-08-08 21:33:53 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 21:33:53 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@7db0565c' -2024-08-08 21:33:53 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 84 -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'entityManagerFactoryBuilder' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'jpaVendorAdapter' -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:53 - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:53 - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter' -2024-08-08 21:33:53 - [javax.management.remote.rmi.RMIConnectionImpl@42f170f9: connectionId=rmi://127.0.0.1 1] closing. -2024-08-08 21:33:53 - [javax.management.remote.rmi.RMIConnectionImpl@42f170f9: connectionId=rmi://127.0.0.1 1] closed. -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'persistenceManagedTypes' -2024-08-08 21:33:53 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@7db0565c' -2024-08-08 21:33:53 - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 21:33:53 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder' -2024-08-08 21:33:53 - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes' -2024-08-08 21:33:53 - Building JPA container EntityManagerFactory for persistence unit 'default' -2024-08-08 21:33:53 - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) -2024-08-08 21:33:53 - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:database user=SA -2024-08-08 21:33:53 - PersistenceUnitInfo [ - name: default - persistence provider classname: null - classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6 - excludeUnlistedClasses: true - JTA datasource: null - Non JTA datasource: HikariDataSource (HikariPool-1) - Transaction type: RESOURCE_LOCAL - PU root URL: file:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main/ - Shared Cache Mode: UNSPECIFIED - Validation Mode: AUTO - Jar files URLs [] - Managed classes names [ - server.haengdong.domain.action.Action - server.haengdong.domain.action.BillAction - server.haengdong.domain.action.MemberAction - server.haengdong.domain.event.Event - server.haengdong.domain.event.EventStep] - Mapping files names [] - Properties [] -2024-08-08 21:33:53 - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator]. -2024-08-08 21:33:53 - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator]. -2024-08-08 21:33:53 - HHH000412: Hibernate ORM core version 6.5.2.Final -2024-08-08 21:33:53 - HHH000206: 'hibernate.properties' not found -2024-08-08 21:33:53 - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) -2024-08-08 21:33:53 - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:database user=SA -2024-08-08 21:33:53 - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator] -2024-08-08 21:33:53 - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator] -2024-08-08 21:33:53 - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 21:33:53 - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator] -2024-08-08 21:33:53 - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned] -2024-08-08 21:33:53 - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator] -2024-08-08 21:33:53 - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator] -2024-08-08 21:33:53 - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 21:33:53 - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator] -2024-08-08 21:33:53 - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator] -2024-08-08 21:33:53 - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator] -2024-08-08 21:33:53 - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator] -2024-08-08 21:33:53 - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered -2024-08-08 21:33:53 - HHH000026: Second-level cache disabled -2024-08-08 21:33:53 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 21:33:53 - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 21:33:53 - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@144440f5 -2024-08-08 21:33:53 - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 21:33:53 - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@3e2c8ef -2024-08-08 21:33:53 - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 21:33:53 - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@290807e5 -2024-08-08 21:33:53 - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-08 21:33:53 - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@60bc308b -2024-08-08 21:33:53 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 21:33:53 - Adding type registration byte -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 21:33:53 - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@56499781 -2024-08-08 21:33:53 - Adding type registration binary -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 21:33:53 - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 21:33:53 - Adding type registration [B -> org.hibernate.type.BasicTypeReference@43f99817 -2024-08-08 21:33:53 - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-08 21:33:53 - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@2a2798a2 -2024-08-08 21:33:53 - Adding type registration image -> org.hibernate.type.BasicTypeReference@2b9ecd05 -2024-08-08 21:33:53 - Adding type registration blob -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 21:33:53 - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@31f1b268 -2024-08-08 21:33:53 - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@3ec7ad61 -2024-08-08 21:33:53 - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@2833c093 -2024-08-08 21:33:53 - Adding type registration short -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 21:33:53 - Adding type registration short -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 21:33:53 - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@7598d675 -2024-08-08 21:33:53 - Adding type registration integer -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 21:33:53 - Adding type registration int -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 21:33:53 - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@4946485c -2024-08-08 21:33:53 - Adding type registration long -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 21:33:53 - Adding type registration long -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 21:33:53 - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@4ae958b0 -2024-08-08 21:33:53 - Adding type registration float -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 21:33:53 - Adding type registration float -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 21:33:53 - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@7c682e26 -2024-08-08 21:33:53 - Adding type registration double -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 21:33:53 - Adding type registration double -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 21:33:53 - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@4ff074a0 -2024-08-08 21:33:53 - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-08 21:33:53 - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@340fc1aa -2024-08-08 21:33:53 - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-08 21:33:53 - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@34a33343 -2024-08-08 21:33:53 - Adding type registration character -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-08 21:33:53 - Adding type registration char -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-08 21:33:53 - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@98722ef -2024-08-08 21:33:53 - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@459e120b -2024-08-08 21:33:53 - Adding type registration string -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-08 21:33:53 - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@fd69983 -2024-08-08 21:33:53 - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@22429a11 -2024-08-08 21:33:53 - Adding type registration characters -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-08 21:33:53 - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-08 21:33:53 - Adding type registration [C -> org.hibernate.type.BasicTypeReference@126254ec -2024-08-08 21:33:53 - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@275902e1 -2024-08-08 21:33:53 - Adding type registration text -> org.hibernate.type.BasicTypeReference@1c788d08 -2024-08-08 21:33:53 - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@2adc1e84 -2024-08-08 21:33:53 - Adding type registration clob -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-08 21:33:53 - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@2a99fa07 -2024-08-08 21:33:53 - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 21:33:53 - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@45b8bbbf -2024-08-08 21:33:53 - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@1df06ecd -2024-08-08 21:33:53 - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@57927bc9 -2024-08-08 21:33:53 - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@323efafe -2024-08-08 21:33:53 - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@32dbca45 -2024-08-08 21:33:53 - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@2cc34cd5 -2024-08-08 21:33:53 - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@684b26b7 -2024-08-08 21:33:53 - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-08 21:33:53 - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@2de7c84a -2024-08-08 21:33:53 - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-08 21:33:53 - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@4182a651 -2024-08-08 21:33:53 - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-08 21:33:53 - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@7791ff50 -2024-08-08 21:33:53 - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-08 21:33:53 - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@46de118b -2024-08-08 21:33:53 - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-08 21:33:53 - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@55682482 -2024-08-08 21:33:53 - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@10cb050 -2024-08-08 21:33:53 - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@799fb45e -2024-08-08 21:33:53 - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-08 21:33:53 - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@4f7ba0af -2024-08-08 21:33:53 - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@5b23c1f6 -2024-08-08 21:33:53 - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@3f4964f2 -2024-08-08 21:33:53 - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@3bf01a01 -2024-08-08 21:33:53 - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-08 21:33:53 - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@299cab08 -2024-08-08 21:33:53 - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@6c75e3bc -2024-08-08 21:33:53 - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@186f7434 -2024-08-08 21:33:53 - Adding type registration date -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-08 21:33:53 - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@2374452a -2024-08-08 21:33:53 - Adding type registration time -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-08 21:33:53 - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@6ffc6ea7 -2024-08-08 21:33:53 - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@2c5708e7 -2024-08-08 21:33:53 - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@2c5708e7 -2024-08-08 21:33:53 - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@2c5708e7 -2024-08-08 21:33:53 - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-08 21:33:53 - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-08 21:33:53 - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@4ffa078d -2024-08-08 21:33:53 - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@4e26564d -2024-08-08 21:33:53 - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@42238078 -2024-08-08 21:33:53 - Adding type registration instant -> org.hibernate.type.BasicTypeReference@5627b8eb -2024-08-08 21:33:53 - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@5627b8eb -2024-08-08 21:33:53 - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@49fe0bcd -2024-08-08 21:33:53 - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@49fe0bcd -2024-08-08 21:33:53 - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@49fe0bcd -2024-08-08 21:33:53 - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@3516b881 -2024-08-08 21:33:53 - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@6be8ce1b -2024-08-08 21:33:53 - Adding type registration class -> org.hibernate.type.BasicTypeReference@e3c36d -2024-08-08 21:33:53 - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@e3c36d -2024-08-08 21:33:53 - Adding type registration currency -> org.hibernate.type.BasicTypeReference@397a10df -2024-08-08 21:33:53 - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@397a10df -2024-08-08 21:33:53 - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@397a10df -2024-08-08 21:33:53 - Adding type registration locale -> org.hibernate.type.BasicTypeReference@39a865c1 -2024-08-08 21:33:53 - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@39a865c1 -2024-08-08 21:33:53 - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@141dfcf9 -2024-08-08 21:33:53 - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@141dfcf9 -2024-08-08 21:33:53 - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@a7bbdbc -2024-08-08 21:33:53 - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@a7bbdbc -2024-08-08 21:33:53 - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@63eea8c4 -2024-08-08 21:33:53 - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@63eea8c4 -2024-08-08 21:33:53 - Adding type registration url -> org.hibernate.type.BasicTypeReference@19924f15 -2024-08-08 21:33:53 - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@19924f15 -2024-08-08 21:33:53 - Adding type registration vector -> org.hibernate.type.BasicTypeReference@621392ea -2024-08-08 21:33:53 - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@35524549 -2024-08-08 21:33:53 - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) -2024-08-08 21:33:53 - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:database user=SA -2024-08-08 21:33:53 - Adding type registration object -> org.hibernate.type.JavaObjectType@2739ecc0 -2024-08-08 21:33:53 - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@2739ecc0 -2024-08-08 21:33:53 - Adding type registration null -> org.hibernate.type.NullType@5c1dd18 -2024-08-08 21:33:53 - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@2a6dbb7c -2024-08-08 21:33:53 - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@5178345d -2024-08-08 21:33:53 - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@7b2d58e6 -2024-08-08 21:33:53 - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@708f7386 -2024-08-08 21:33:53 - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@377e90b0 -2024-08-08 21:33:53 - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@27b490de -2024-08-08 21:33:53 - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@36cf16a6 -2024-08-08 21:33:53 - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@3dd750ba -2024-08-08 21:33:53 - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@7b9c2387] into BootstrapContext; was [null] -2024-08-08 21:33:53 - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@7b9c2387) [was null] -2024-08-08 21:33:53 - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@2aa07d80] into BootstrapContext; was [null] -2024-08-08 21:33:53 - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@69c1ea07] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@5cbe72b9] -2024-08-08 21:33:53 - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) -2024-08-08 21:33:53 - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:database user=SA -2024-08-08 21:33:53 - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) -2024-08-08 21:33:53 - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:database user=SA -2024-08-08 21:33:53 - No LoadTimeWeaver setup: ignoring JPA class transformer -2024-08-08 21:33:53 - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@7b9c2387] -2024-08-08 21:33:53 - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@7b9c2387] -2024-08-08 21:33:53 - Database -> - name : H2 - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 21:33:53 - Driver -> - name : H2 JDBC Driver - version : 2.2.224 (2023-09-17) - major : 2 - minor : 2 -2024-08-08 21:33:53 - JDBC version : 4.2 -2024-08-08 21:33:53 - HikariPool-1 - After adding stats (total=6, active=1, idle=5, waiting=0) -2024-08-08 21:33:53 - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:database user=SA -2024-08-08 21:33:53 - HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224 -2024-08-08 21:33:53 - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case -2024-08-08 21:33:53 - addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor) -2024-08-08 21:33:53 - addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor) -2024-08-08 21:33:53 - addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor) -2024-08-08 21:33:53 - addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 21:33:53 - addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT)) -2024-08-08 21:33:53 - addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor) -2024-08-08 21:33:53 - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015) -2024-08-08 21:33:53 - Adding type registration Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 21:33:53 - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015) -2024-08-08 21:33:53 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@1906f982] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@5444f1c3] -2024-08-08 21:33:53 - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}] -2024-08-08 21:33:53 - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) -2024-08-08 21:33:53 - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:database user=SA -2024-08-08 21:33:53 - Binding entity from annotated class: server.haengdong.domain.action.Action -2024-08-08 21:33:53 - Import with entity name Action -2024-08-08 21:33:53 - Bind entity server.haengdong.domain.action.Action on table action -2024-08-08 21:33:53 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 21:33:53 - Binding column: AnnotatedColumn() -2024-08-08 21:33:53 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 21:33:53 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 21:33:53 - MetadataSourceProcessor property id with lazy=false -2024-08-08 21:33:53 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:id] -2024-08-08 21:33:53 - building BasicValue for id -2024-08-08 21:33:53 - Skipping column re-registration: action.id -2024-08-08 21:33:53 - Building property id -2024-08-08 21:33:53 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 21:33:53 - Binding column: AnnotatedJoinColumn() -2024-08-08 21:33:53 - Binding column: AnnotatedColumn() -2024-08-08 21:33:53 - Building property event -2024-08-08 21:33:53 - Binding column: AnnotatedColumn() -2024-08-08 21:33:53 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 21:33:53 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.Action:sequence] -2024-08-08 21:33:53 - building BasicValue for sequence -2024-08-08 21:33:53 - Skipping column re-registration: action.sequence -2024-08-08 21:33:53 - Building property sequence -2024-08-08 21:33:53 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 21:33:53 - Binding entity from annotated class: server.haengdong.domain.action.BillAction -2024-08-08 21:33:53 - Import with entity name BillAction -2024-08-08 21:33:53 - Bind entity server.haengdong.domain.action.BillAction on table bill_action -2024-08-08 21:33:53 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 21:33:53 - Binding column: AnnotatedColumn() -2024-08-08 21:33:53 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 21:33:53 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 21:33:53 - MetadataSourceProcessor property id with lazy=false -2024-08-08 21:33:53 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:id] -2024-08-08 21:33:53 - building BasicValue for id -2024-08-08 21:33:53 - Skipping column re-registration: bill_action.id -2024-08-08 21:33:53 - Building property id -2024-08-08 21:33:53 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 21:33:53 - Binding column: AnnotatedJoinColumn() -2024-08-08 21:33:53 - Binding column: AnnotatedColumn() -2024-08-08 21:33:53 - Building property action -2024-08-08 21:33:53 - Binding column: AnnotatedColumn() -2024-08-08 21:33:53 - MetadataSourceProcessor property price with lazy=false -2024-08-08 21:33:53 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:price] -2024-08-08 21:33:53 - building BasicValue for price -2024-08-08 21:33:53 - Skipping column re-registration: bill_action.price -2024-08-08 21:33:53 - Building property price -2024-08-08 21:33:53 - Binding column: AnnotatedColumn() -2024-08-08 21:33:53 - MetadataSourceProcessor property title with lazy=false -2024-08-08 21:33:53 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.BillAction:title] -2024-08-08 21:33:53 - building BasicValue for title -2024-08-08 21:33:53 - Skipping column re-registration: bill_action.title -2024-08-08 21:33:53 - Building property title -2024-08-08 21:33:53 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 21:33:53 - Binding entity from annotated class: server.haengdong.domain.action.MemberAction -2024-08-08 21:33:53 - Import with entity name MemberAction -2024-08-08 21:33:53 - Bind entity server.haengdong.domain.action.MemberAction on table member_action -2024-08-08 21:33:53 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 21:33:53 - Binding column: AnnotatedColumn() -2024-08-08 21:33:53 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 21:33:53 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 21:33:53 - MetadataSourceProcessor property id with lazy=false -2024-08-08 21:33:53 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:id] -2024-08-08 21:33:53 - building BasicValue for id -2024-08-08 21:33:53 - Skipping column re-registration: member_action.id -2024-08-08 21:33:53 - Building property id -2024-08-08 21:33:53 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 21:33:53 - Binding column: AnnotatedJoinColumn() -2024-08-08 21:33:53 - Binding column: AnnotatedColumn() -2024-08-08 21:33:53 - Building property action -2024-08-08 21:33:53 - Binding column: AnnotatedColumn() -2024-08-08 21:33:53 - MetadataSourceProcessor property memberGroupId with lazy=false -2024-08-08 21:33:53 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberGroupId] -2024-08-08 21:33:53 - building BasicValue for memberGroupId -2024-08-08 21:33:53 - Skipping column re-registration: member_action.member_group_id -2024-08-08 21:33:53 - Building property memberGroupId -2024-08-08 21:33:53 - Binding column: AnnotatedColumn() -2024-08-08 21:33:53 - MetadataSourceProcessor property memberName with lazy=false -2024-08-08 21:33:53 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:memberName] -2024-08-08 21:33:53 - building BasicValue for memberName -2024-08-08 21:33:53 - Skipping column re-registration: member_action.member_name -2024-08-08 21:33:53 - Building property memberName -2024-08-08 21:33:53 - Binding column: AnnotatedColumn() -2024-08-08 21:33:53 - MetadataSourceProcessor property status with lazy=false -2024-08-08 21:33:53 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.action.MemberAction:status] -2024-08-08 21:33:53 - building BasicValue for status -2024-08-08 21:33:53 - Skipping column re-registration: member_action.status -2024-08-08 21:33:53 - Building property status -2024-08-08 21:33:53 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.action -2024-08-08 21:33:53 - Binding entity from annotated class: server.haengdong.domain.event.Event -2024-08-08 21:33:53 - Import with entity name Event -2024-08-08 21:33:53 - Bind entity server.haengdong.domain.event.Event on table event -2024-08-08 21:33:53 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 21:33:53 - Binding column: AnnotatedColumn() -2024-08-08 21:33:53 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 21:33:53 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 21:33:53 - MetadataSourceProcessor property id with lazy=false -2024-08-08 21:33:53 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:id] -2024-08-08 21:33:53 - building BasicValue for id -2024-08-08 21:33:53 - Skipping column re-registration: event.id -2024-08-08 21:33:53 - Building property id -2024-08-08 21:33:53 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 21:33:53 - Binding column: AnnotatedColumn() -2024-08-08 21:33:53 - MetadataSourceProcessor property name with lazy=false -2024-08-08 21:33:53 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:name] -2024-08-08 21:33:53 - building BasicValue for name -2024-08-08 21:33:53 - Skipping column re-registration: event.name -2024-08-08 21:33:53 - Building property name -2024-08-08 21:33:53 - Binding column: AnnotatedColumn() -2024-08-08 21:33:53 - MetadataSourceProcessor property password with lazy=false -2024-08-08 21:33:53 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:password] -2024-08-08 21:33:53 - building BasicValue for password -2024-08-08 21:33:53 - Skipping column re-registration: event.password -2024-08-08 21:33:53 - Building property password -2024-08-08 21:33:53 - Binding column: AnnotatedColumn() -2024-08-08 21:33:53 - MetadataSourceProcessor property token with lazy=false -2024-08-08 21:33:53 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.Event:token] -2024-08-08 21:33:53 - building BasicValue for token -2024-08-08 21:33:53 - Skipping column re-registration: event.token -2024-08-08 21:33:53 - Building property token -2024-08-08 21:33:53 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 21:33:53 - Binding entity from annotated class: server.haengdong.domain.event.EventStep -2024-08-08 21:33:53 - Import with entity name EventStep -2024-08-08 21:33:53 - Bind entity server.haengdong.domain.event.EventStep on table event_step -2024-08-08 21:33:53 - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) -2024-08-08 21:33:53 - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE') -2024-08-08 21:33:53 - Binding column: AnnotatedColumn() -2024-08-08 21:33:53 - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:database user=SA -2024-08-08 21:33:53 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 21:33:53 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 21:33:53 - MetadataSourceProcessor property id with lazy=false -2024-08-08 21:33:53 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:id] -2024-08-08 21:33:53 - building BasicValue for id -2024-08-08 21:33:53 - Skipping column re-registration: event_step.id -2024-08-08 21:33:53 - Building property id -2024-08-08 21:33:53 - #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...) -2024-08-08 21:33:53 - Binding column: AnnotatedJoinColumn() -2024-08-08 21:33:53 - Binding column: AnnotatedColumn() -2024-08-08 21:33:53 - Building property event -2024-08-08 21:33:53 - Binding column: AnnotatedColumn() -2024-08-08 21:33:53 - MetadataSourceProcessor property name with lazy=false -2024-08-08 21:33:53 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:name] -2024-08-08 21:33:53 - building BasicValue for name -2024-08-08 21:33:53 - Skipping column re-registration: event_step.name -2024-08-08 21:33:53 - Building property name -2024-08-08 21:33:53 - Binding column: AnnotatedColumn() -2024-08-08 21:33:53 - MetadataSourceProcessor property sequence with lazy=false -2024-08-08 21:33:53 - Attempting to locate auto-apply AttributeConverter for property [server.haengdong.domain.event.EventStep:sequence] -2024-08-08 21:33:53 - building BasicValue for sequence -2024-08-08 21:33:53 - Skipping column re-registration: event_step.sequence -2024-08-08 21:33:53 - Building property sequence -2024-08-08 21:33:53 - HHH000194: Package not found or no package-info.java: server.haengdong.domain.event -2024-08-08 21:33:53 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 21:33:53 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 21:33:53 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 21:33:53 - Starting `BasicValueBinder#fillSimpleValue` for price -2024-08-08 21:33:53 - Starting `BasicValueBinder#fillSimpleValue` for title -2024-08-08 21:33:53 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 21:33:53 - Starting `BasicValueBinder#fillSimpleValue` for memberGroupId -2024-08-08 21:33:53 - Starting `BasicValueBinder#fillSimpleValue` for memberName -2024-08-08 21:33:53 - Starting `BasicValueBinder#fillSimpleValue` for status -2024-08-08 21:33:53 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 21:33:53 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 21:33:53 - Starting `BasicValueBinder#fillSimpleValue` for password -2024-08-08 21:33:53 - Starting `BasicValueBinder#fillSimpleValue` for token -2024-08-08 21:33:53 - Starting `BasicValueBinder#fillSimpleValue` for id -2024-08-08 21:33:53 - Starting `BasicValueBinder#fillSimpleValue` for name -2024-08-08 21:33:53 - Starting `BasicValueBinder#fillSimpleValue` for sequence -2024-08-08 21:33:53 - Forcing column [id] to be non-null as it is part of the primary key for table [action] -2024-08-08 21:33:53 - Forcing column [id] to be non-null as it is part of the primary key for table [bill_action] -2024-08-08 21:33:53 - Forcing column [id] to be non-null as it is part of the primary key for table [member_action] -2024-08-08 21:33:53 - Forcing column [id] to be non-null as it is part of the primary key for table [event] -2024-08-08 21:33:53 - Forcing column [id] to be non-null as it is part of the primary key for table [event_step] -2024-08-08 21:33:53 - Building session factory -2024-08-08 21:33:53 - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) -2024-08-08 21:33:53 - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:database user=SA -2024-08-08 21:33:53 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 21:33:53 - Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=17, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@3516f436, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/classes/java/main:/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong/server/build/resources/main:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.projectlombok/lombok/1.18.32/17d46b3e205515e1e8efd3ee4d57ce8018914163/lombok-1.18.32.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/3.3.1/f12725d58a944eaf4d44334a6a7b0fe14ed08577/spring-boot-starter-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/3.3.1/ec812e82a010d089438b6ac98ebe294f2e540f71/spring-boot-starter-web-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/3.3.1/33dee7cc334482480ed01c19c7fe5a35509bba17/spring-boot-starter-validation-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/3.3.1/c4b69b3de5a75c706de8459a5a06be8959eb3bf4/spring-boot-starter-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.jsonwebtoken/jjwt/0.9.1/54d2abfc3e63a28824d35bf600d6a5d627da681a/jjwt-0.9.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/3.3.1/19da2c8abacda5bed6fadfe3e76e4b61e9cc0f09/spring-boot-starter-aop-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/3.3.1/73e79247180d277b68801ff5f4f9e9ab66210335/spring-boot-starter-jdbc-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.orm/hibernate-core/6.5.2.Final/e9e0cc47f6cd2b2553968aee66bd9e55e7485221/hibernate-core-6.5.2.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/3.3.1/bf75f2140be9325d78de2c1c88eb9b7388a41bb1/spring-data-jpa-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/6.1.10/8d869a8bcc99e71b98b9d5ca141539d6e6ba3061/spring-aspects-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/3.3.1/b78d1ce67c3a44e8a2c2799b70e8c216166d0f5b/spring-boot-starter-json-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/3.3.1/30e0ac13cfa51c77db60909ea28572a1e973f186/spring-boot-starter-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/3.3.1/78bc3dedeb8abcea03f35d24f6779e0a3c6080d2/spring-boot-starter-tomcat-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/6.1.10/476344c2f21ab070bc72108375d9355f2ec0ddd1/spring-webmvc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/6.1.10/876a856af61ef5712fb9a3013b798aa2b4a9475e/spring-web-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/10.1.25/2f030e4971e29245c10e58723fb6b364ce23933b/tomcat-embed-el-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/8.0.1.Final/e49e116b3d3928060599b176b3538bb848718e95/hibernate-validator-8.0.1.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/3.3.1/fd2feb2668b758746e3768c0291f664d2a6fbf0d/spring-boot-actuator-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-jakarta9/1.13.1/5dbc52b9e0f222edbc85c38543e01bc1836e1deb/micrometer-jakarta9-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-observation/1.13.1/f6f5fa79e482431531cc253a7204e5c085c7bb20/micrometer-observation-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.17.1/524dcbcccdde7d45a679dfc333e4763feb09079/jackson-databind-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/6.1.10/aa6a147eb08820fb503a992a8fe2c9fee3439129/spring-aop-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.22/10736ab74a53af5e2e1b07e76335a5391526b6f8/aspectjweaver-1.9.22.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/5.1.0/8c96e36c14461fc436bb02b264b96ef3ca5dca8c/HikariCP-5.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/6.1.10/bba7d7de1d944443bd9e45d0ebcbbb6ec6864be0/spring-jdbc-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/3.1.0/66901fa1c373c6aff65c13791cc11da72060a8d6/jakarta.persistence-api-3.1.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/2.0.1/51a520e3fae406abb84e2e1148e6746ce3f80a1a/jakarta.transaction-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/6.1.10/6f869ea35a26028f3bfbfb52c72ef2b077fbb6e5/spring-context-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/6.1.10/b4cd93ddd043407b3ba3fdfca3b07db776581fec/spring-orm-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/3.3.1/fe179b4f9f5d4fafdcf9e2a2030033d61423c3f6/spring-data-commons-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/6.1.10/1a2361bc1881ed1a0dc2e09561e8f560e1949c8e/spring-tx-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/6.1.10/a49252929fb2918f73eb7659ef98dff7306a7c2c/spring-beans-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/6.1.10/eaf5b1f3e3bb5aa8b45ab255cf3270c1c4578f1d/spring-core-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.13.0/5a02e48521624faaf5ff4d99afc88b01686af655/antlr4-runtime-4.13.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/2.1.1/48b9bda22b091b1f48b13af03fe36db3be6e1ae3/jakarta.annotation-api-2.1.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/2.0.13/80229737f704b121a318bba5d5deacbcf395bc77/slf4j-api-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.17.1/969b0c3cb8c75d759e9a6c585c44c9b9f3a4f75/jackson-datatype-jsr310-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.17.1/74a998f6fbcedbddedf0a27e8ce72078b2e516a6/jackson-module-parameter-names-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.17.1/76b495194c36058904c82e288d285a1bd13f0ffa/jackson-datatype-jdk8-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/3.3.1/36a6489e3ba5e34163bddb5134021de9ce101abc/spring-boot-autoconfigure-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/3.3.1/2c5cfe68bc12646ce44663f865d39c747a28f2c7/spring-boot-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/3.3.1/2097eebccdf7556cf42c8a74a5da64420ac143a1/spring-boot-starter-logging-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/2.2/3af797a25458550a16bf89acc8e4ab2b7f2bfce0/snakeyaml-2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/10.1.25/efd7848a9677e9a7cf8367b43213805eca70805/tomcat-embed-websocket-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/10.1.25/c1e5ee12f537e6b4fea2b98a7160dcf0db610561/tomcat-embed-core-10.1.25.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/6.1.10/a17d61f1388d0e13d6e7a740304e9d648fffc7c/spring-expression-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/3.0.2/92b6631659ba35ca09e44874d3eb936edfeee532/jakarta.validation-api-3.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.5.3.Final/c88fc1d8a96d4c3491f55d4317458ccad53ca663/jboss-logging-3.5.3.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.7.0/e98374da1f2143ac8e6e0a95036994bb19137a3/classmate-1.7.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/3.3.1/2ed9e9157751616d40b0b106036d9c4e8379250/spring-boot-actuator-3.3.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.13.1/b00758ad616bd820d793f305215f0b80b9a08fd8/micrometer-core-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-commons/1.13.1/5629ecbcc84a9f29e1cf976718de2497e50932bf/micrometer-commons-1.13.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.17.1/fca7ef6192c9ad05d07bc50da991bf937a84af3a/jackson-annotations-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.17.1/5e52a11644cd59a28ef79f02bddc2cc3bab45edb/jackson-core-2.17.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/6.1.10/c22c18cf6ed7d768676816347f020a6868663224/spring-jcl-6.1.10.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.5.6/afc75d260d838a3bddfb8f207c2805ed7d1b34f9/logback-classic-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.23.1/425ad1eb8a39904d2830e907a324e956fb456520/log4j-to-slf4j-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/2.0.13/a3bcd9d9dd50c71ce69f06b1fd05e40fdeff6ba5/jul-to-slf4j-2.0.13.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.5.6/41cbe874701200c5624c19e0ab50d1b88dfcc77d/logback-core-1.5.6.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.23.1/9c15c29c526d9c6783049c0a77722693c66706e1/log4j-api-2.23.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.h2database/h2/2.2.224/7bdade27d8cd197d9b5ce9dc251f41d2edc5f7ad/h2-2.2.224.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.mysql/mysql-connector-j/8.3.0/1cc7fa5d61f4bbc113531a4ba6d85d41cf3d57e1/mysql-connector-j-8.3.0.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/6.0.6.Final/77a5f94b56d49508e0ee334751db5b78e5ccd50c/hibernate-commons-annotations-6.0.6.Final.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/io.smallrye/jandex/3.1.2/a6c1c89925c7df06242b03dddb353116ceb9584c/jandex-3.1.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.14.17/a8d08f3c1e75ecc7f38a8cfd7e9fa47919096373/byte-buddy-1.14.17.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/4.0.5/ca84c2a7169b5293e232b9d00d1e4e36d4c3914a/jaxb-runtime-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/4.0.2/6cd5a999b834b63238005b7144136379dc36cad2/jakarta.xml.bind-api-4.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.inject/jakarta.inject-api/2.0.1/4c28afe1991a941d7702fe1362c365f0a8641d1e/jakarta.inject-api-2.0.1.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-core/4.0.5/7b4b11ea5542eea4ad55e1080b23be436795b3/jaxb-core-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/2.1.3/fa165bd70cda600368eee31555222776a46b881f/jakarta.activation-api-2.1.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.2.2/7959933ebcc0f05b2eaa5af0a0c8689fa257b15c/HdrHistogram-2.2.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.latencyutils/LatencyUtils/2.0.3/769c0b82cb2421c8256300e907298a9410a2a3d3/LatencyUtils-2.0.3.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.eclipse.angus/angus-activation/2.0.2/41f1e0ddd157c856926ed149ab837d110955a9fc/angus-activation-2.0.2.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/4.0.5/f36a4ef12120a9bb06d766d6a0e54b144fd7ed98/txw2-4.0.5.jar:/Users/jeonhogeon/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/4.1.2/18ec117c85f3ba0ac65409136afa8e42bc74e739/istack-commons-runtime-4.1.2.jar, java.vm.vendor=Amazon.com Inc., sun.arch.data.model=64, java.vendor.url=https://aws.amazon.com/corretto/, catalina.useNaming=false, user.timezone=Asia/Seoul, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=17, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=KR, sun.boot.library.path=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home/lib, sun.java.command=server.haengdong.HaengdongApplication, spring.application.admin.enabled=true, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@59c00010, com.sun.management.jmxremote=, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, spring.liveBeansView.mbeanDomain=, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/jeonhogeon, user.language=ko, java.specification.vendor=Oracle Corporation, java.version.date=2024-07-16, java.home=/Users/jeonhogeon/Library/Java/JavaVirtualMachines/corretto-17.0.12/Contents/Home, file.separator=/, spring.output.ansi.enabled=always, java.vm.compressedOopsMode=Zero based, line.separator= -, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=create, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=17.0.12+7-LTS, user.name=jeonhogeon, spring.jmx.enabled=true, path.separator=:, management.endpoints.jmx.exposure.include=*, os.version=14.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Corretto-17.0.12.7.1, java.vendor.url.bug=https://github.com/corretto/corretto-17/issues/, java.io.tmpdir=/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.10399445426572422873, java.version=17.0.12, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/jeonhogeon/Desktop/woowa/level3/2024-haeng-dong, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=33040, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.10399445426572422873, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@244268a8, native.encoding=UTF-8, java.library.path=/Users/jeonhogeon/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., java.vendor=Amazon.com Inc., java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=17.0.12+7-LTS, java.rmi.server.randomIDs=true, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=61.0} -2024-08-08 21:33:53 - Session factory constructed with filter configurations : {} -2024-08-08 21:33:53 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 21:33:53 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 21:33:53 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 21:33:53 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 21:33:53 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 21:33:53 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 21:33:53 - Loaded expression factory via original TCCL -2024-08-08 21:33:53 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 21:33:53 - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 21:33:53 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 21:33:53 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 21:33:53 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 21:33:53 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 21:33:53 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 21:33:53 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 21:33:53 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 21:33:53 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 21:33:53 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 21:33:53 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 21:33:53 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 21:33:53 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 21:33:53 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 21:33:53 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 21:33:53 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null -2024-08-08 21:33:53 - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@6b756a62] under count; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@fdf029a] under every; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@63896cf7] under any; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@862624f] under sinh; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3aa8c337] under cosh; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@78e7b83] under tanh; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6761f75b] under pi; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@7c8a91e2] under log; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null -2024-08-08 21:33:53 - Registering alternate key : length -> character_length -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@4a10c019] under position; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@4a7c72af] under overlay; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@1b53e6fc] under trim; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@263e512e] under cast; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@62c42a3] under collate; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@4cd6f08b] under extract; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@4b7c0f39] under ifnull; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@1b30b6f8] under pad; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@a0bdbe2] under str; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@5eb9bf7d] under format; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@123d0816] under timestampadd; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@57ed8f95] under timestampdiff; prior registration was null -2024-08-08 21:33:53 - Registering alternate key : dateadd -> timestampadd -2024-08-08 21:33:53 - Registering alternate key : datediff -> timestampdiff -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@5d01a2eb] under current_date; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@6fe337a5] under current_time; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@7d60bd5a] under current_timestamp; prior registration was null -2024-08-08 21:33:53 - Registering alternate key : current date -> current_date -2024-08-08 21:33:53 - Registering alternate key : current time -> current_time -2024-08-08 21:33:53 - Registering alternate key : current timestamp -> current_timestamp -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@43312512] under local_date; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@13f7c165] under local_time; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@655f92a1] under local_datetime; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1d2d793d] under offset_datetime; prior registration was null -2024-08-08 21:33:53 - Registering alternate key : local date -> local_date -2024-08-08 21:33:53 - Registering alternate key : local time -> local_time -2024-08-08 21:33:53 - Registering alternate key : local datetime -> local_datetime -2024-08-08 21:33:53 - Registering alternate key : offset datetime -> offset_datetime -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@57fec63f] under instant; prior registration was null -2024-08-08 21:33:53 - Registering alternate key : current_instant -> instant -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@34001c5d] under sql; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max) -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min) -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum) -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@30e15628] under count; prior registration was org.hibernate.dialect.function.CountFunction@6b756a62 -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@5b643d6e] under avg; prior registration was NamedSqmFunctionTemplate(avg) -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6761f75b -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@34f8ce89] under mod; prior registration was NamedSqmFunctionTemplate(mod) -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitnot)] under bitnot; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null -2024-08-08 21:33:53 - Registering alternate key : day -> day_of_month -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@13f7c165 -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@655f92a1 -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@41948c13] under trunc; prior registration was null -2024-08-08 21:33:53 - Registering alternate key : truncate -> trunc -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3085befb] under date_trunc; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length) -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null -2024-08-08 21:33:53 - Registering alternate key : chr -> char -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@62264d4f] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@4a10c019 -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2bc0603f] under concat; prior registration was NamedSqmFunctionTemplate(concat) -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null -2024-08-08 21:33:53 - Registering alternate key : every -> bool_and -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null -2024-08-08 21:33:53 - Registering alternate key : any -> bool_or -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@4ed19540] under format; prior registration was org.hibernate.dialect.function.FormatFunction@5eb9bf7d -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@4eab9aec] under listagg; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@6aa18912] under mode; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@5c20505f] under percentile_cont; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@cce92b5] under percentile_disc; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@62525dd3] under rank; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@56adbb07] under dense_rank; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@7be6dabb] under percent_rank; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@68fc636a] under cume_dist; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@7c6fc278] under array; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@23ee92df] under array_list; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@1e4a4ed5] under array_agg; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@3407ded1] under array_position; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@4c0ab04f] under array_positions; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@10b5ff4d] under array_positions_list; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@58835bba] under array_length; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@23cfdfa2] under array_concat; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@a84b6de] under array_prepend; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@76eee0b1] under array_append; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@5d373794] under array_contains; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@7304ca87] under array_contains_nullable; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@3a012678] under array_overlaps; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@396c1228] under array_overlaps_nullable; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@15fd3088] under array_get; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@4fe3f9ef] under array_set; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@b75f3f4] under array_remove; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@72c175f1] under array_remove_index; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@9fd3b61] under array_slice; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@78a34c47] under array_replace; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@77648321] under array_trim; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@32e7df65] under array_fill; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@421d7900] under array_fill_list; prior registration was null -2024-08-08 21:33:53 - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@4feaa4b8] under array_to_string; prior registration was null -2024-08-08 21:33:53 - abs(NUMERIC arg) -2024-08-08 21:33:53 - Double acos(NUMERIC arg) -2024-08-08 21:33:53 - Boolean any(BOOLEAN predicate) -2024-08-08 21:33:53 - array( ... ) -2024-08-08 21:33:53 - array_agg(arg) -2024-08-08 21:33:53 - array_append( ... ) -2024-08-08 21:33:53 - array_concat( ... ) -2024-08-08 21:33:53 - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 21:33:53 - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray) -2024-08-08 21:33:53 - array_fill(OBJECT element, INTEGER elementCount) -2024-08-08 21:33:53 - array_fill_list(OBJECT element, INTEGER elementCount) -2024-08-08 21:33:53 - array_get(ARRAY array, INTEGER index) -2024-08-08 21:33:53 - Integer array_length(ARRAY array) -2024-08-08 21:33:53 - array_list( ... ) -2024-08-08 21:33:53 - Boolean array_overlaps(ARRAY array0, OBJECT array1) -2024-08-08 21:33:53 - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1) -2024-08-08 21:33:53 - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition]) -2024-08-08 21:33:53 - int[] array_positions(ARRAY array, OBJECT element) -2024-08-08 21:33:53 - List array_positions_list(ARRAY array, OBJECT element) -2024-08-08 21:33:53 - array_prepend( ... ) -2024-08-08 21:33:53 - array_remove( ... ) -2024-08-08 21:33:53 - array_remove_index( ... ) -2024-08-08 21:33:53 - array_replace( ... ) -2024-08-08 21:33:53 - array_set( ... ) -2024-08-08 21:33:53 - array_slice(ARRAY array, INTEGER start, INTEGER end) -2024-08-08 21:33:53 - String array_to_string( ... ) -2024-08-08 21:33:53 - array_trim(ARRAY array, INTEGER elementsToRemove) -2024-08-08 21:33:53 - Integer ascii(STRING arg) -2024-08-08 21:33:53 - Double asin(NUMERIC arg) -2024-08-08 21:33:53 - Double atan(NUMERIC arg) -2024-08-08 21:33:53 - Double atan2(NUMERIC arg0, NUMERIC arg1) -2024-08-08 21:33:53 - avg(NUMERIC arg) -2024-08-08 21:33:53 - bit_and(arg) -2024-08-08 21:33:53 - Integer bit_length(STRING_OR_CLOB arg) -2024-08-08 21:33:53 - bit_or(arg) -2024-08-08 21:33:53 - bitand(arg0, arg1) -2024-08-08 21:33:53 - bitnot(arg) -2024-08-08 21:33:53 - bitor(arg0, arg1) -2024-08-08 21:33:53 - bitxor(arg0, arg1) -2024-08-08 21:33:53 - Boolean bool_and(BOOLEAN predicate) -2024-08-08 21:33:53 - Boolean bool_or(BOOLEAN predicate) -2024-08-08 21:33:53 - cast(arg as Type) -2024-08-08 21:33:53 - ceiling(NUMERIC arg) -2024-08-08 21:33:53 - Character char(INTEGER arg) -2024-08-08 21:33:53 - Integer character_length(STRING_OR_CLOB arg) -2024-08-08 21:33:53 - Character chr(INTEGER arg) -2024-08-08 21:33:53 - coalesce(arg0[, arg1[, ...]]) -2024-08-08 21:33:53 - String collate(STRING string as COLLATION collation) -2024-08-08 21:33:53 - String concat(STRING string0[, STRING string1[, ...]]) -2024-08-08 21:33:53 - Double cos(NUMERIC arg) -2024-08-08 21:33:53 - Double cosh(NUMERIC arg) -2024-08-08 21:33:53 - Double cot(NUMERIC arg) -2024-08-08 21:33:53 - Long count([distinct ]{arg|*}) -2024-08-08 21:33:53 - Double cume_dist([arg0[, ...]]) -2024-08-08 21:33:53 - Date curdate() -2024-08-08 21:33:53 - Date current date -2024-08-08 21:33:53 - Time current time -2024-08-08 21:33:53 - Timestamp current timestamp -2024-08-08 21:33:53 - Date current_date -2024-08-08 21:33:53 - Instant current_instant -2024-08-08 21:33:53 - Time current_time -2024-08-08 21:33:53 - Timestamp current_timestamp -2024-08-08 21:33:53 - Time curtime() -2024-08-08 21:33:53 - date_trunc(STRING field, TEMPORAL datetime) -2024-08-08 21:33:53 - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 21:33:53 - Long|Double datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 21:33:53 - Integer day(DATE arg) -2024-08-08 21:33:53 - Integer day_of_month(DATE arg) -2024-08-08 21:33:53 - Integer day_of_week(DATE arg) -2024-08-08 21:33:53 - Integer day_of_year(DATE arg) -2024-08-08 21:33:53 - String dayname(DATE arg) -2024-08-08 21:33:53 - Double degrees(NUMERIC arg) -2024-08-08 21:33:53 - Long dense_rank([arg0[, ...]]) -2024-08-08 21:33:53 - Boolean every(BOOLEAN predicate) -2024-08-08 21:33:53 - Double exp(NUMERIC arg) -2024-08-08 21:33:53 - extract(TEMPORAL_UNIT field from TEMPORAL arg) -2024-08-08 21:33:53 - first_valueANY value -2024-08-08 21:33:53 - floor(NUMERIC arg) -2024-08-08 21:33:53 - String format(TEMPORAL datetime as STRING pattern) -2024-08-08 21:33:53 - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 21:33:53 - Integer hour(TIME arg) -2024-08-08 21:33:53 - ifnull(arg0, arg1) -2024-08-08 21:33:53 - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement) -2024-08-08 21:33:53 - Instant instant -2024-08-08 21:33:53 - Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]]) -2024-08-08 21:33:53 - lagANY value[, INTEGER offset[, ANY default]] -2024-08-08 21:33:53 - last_valueANY value -2024-08-08 21:33:53 - leadANY value[, INTEGER offset[, ANY default]] -2024-08-08 21:33:53 - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]]) -2024-08-08 21:33:53 - String left(STRING string, INTEGER length) -2024-08-08 21:33:53 - Integer length(STRING_OR_CLOB arg) -2024-08-08 21:33:53 - String listagg(STRING arg0, STRING arg1) -2024-08-08 21:33:53 - Double ln(NUMERIC arg) -2024-08-08 21:33:53 - LocalDate local date -2024-08-08 21:33:53 - LocalDateTime local datetime -2024-08-08 21:33:53 - LocalTime local time -2024-08-08 21:33:53 - LocalDate local_date -2024-08-08 21:33:53 - LocalDateTime local_datetime -2024-08-08 21:33:53 - LocalTime local_time -2024-08-08 21:33:53 - Time localtime -2024-08-08 21:33:53 - Timestamp localtimestamp -2024-08-08 21:33:53 - Integer locate(STRING pattern, STRING string[, INTEGER start]) -2024-08-08 21:33:53 - Double log(NUMERIC base, NUMERIC arg) -2024-08-08 21:33:53 - Double log10(NUMERIC arg) -2024-08-08 21:33:53 - String lower(STRING string) -2024-08-08 21:33:53 - String lpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 21:33:53 - String ltrim(STRING string) -2024-08-08 21:33:53 - max(COMPARABLE arg) -2024-08-08 21:33:53 - Double median(NUMERIC arg) -2024-08-08 21:33:53 - Integer microsecond(TIME arg) -2024-08-08 21:33:53 - min(COMPARABLE arg) -2024-08-08 21:33:53 - Integer minute(TIME arg) -2024-08-08 21:33:53 - Integer mod(INTEGER arg0, INTEGER arg1) -2024-08-08 21:33:53 - mode() -2024-08-08 21:33:53 - Integer month(DATE arg) -2024-08-08 21:33:53 - String monthname(DATE arg) -2024-08-08 21:33:53 - Timestamp now() -2024-08-08 21:33:53 - nth_valueANY value, INTEGER nth -2024-08-08 21:33:53 - nullif(arg0, arg1) -2024-08-08 21:33:53 - Integer octet_length(STRING_OR_CLOB arg) -2024-08-08 21:33:53 - OffsetDateTime offset datetime -2024-08-08 21:33:53 - OffsetDateTime offset_datetime -2024-08-08 21:33:53 - String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length]) -2024-08-08 21:33:53 - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character]) -2024-08-08 21:33:53 - Double percent_rank([arg0[, ...]]) -2024-08-08 21:33:53 - percentile_cont(NUMERIC arg) -2024-08-08 21:33:53 - percentile_disc(NUMERIC arg) -2024-08-08 21:33:53 - Double pi -2024-08-08 21:33:53 - Integer position(STRING pattern in STRING string) -2024-08-08 21:33:53 - Double power(NUMERIC arg0, NUMERIC arg1) -2024-08-08 21:33:53 - Integer quarter(DATE arg) -2024-08-08 21:33:53 - Double radians(NUMERIC arg) -2024-08-08 21:33:53 - Double rand([INTEGER seed]) -2024-08-08 21:33:53 - Long rank([arg0[, ...]]) -2024-08-08 21:33:53 - String repeat(STRING string, INTEGER times) -2024-08-08 21:33:53 - String replace(STRING string, STRING pattern, STRING replacement) -2024-08-08 21:33:53 - String right(STRING string, INTEGER length) -2024-08-08 21:33:53 - round(NUMERIC number[, INTEGER places]) -2024-08-08 21:33:53 - Long row_number() -2024-08-08 21:33:53 - Long rownum() -2024-08-08 21:33:53 - String rpad(STRING string, INTEGER length[, STRING padding]) -2024-08-08 21:33:53 - String rtrim(STRING string) -2024-08-08 21:33:53 - Integer second(TIME arg) -2024-08-08 21:33:53 - Integer sign(NUMERIC arg) -2024-08-08 21:33:53 - Double sin(NUMERIC arg) -2024-08-08 21:33:53 - Double sinh(NUMERIC arg) -2024-08-08 21:33:53 - String soundex(arg) -2024-08-08 21:33:53 - String space(INTEGER arg) -2024-08-08 21:33:53 - Object sql -2024-08-08 21:33:53 - Double sqrt(NUMERIC arg) -2024-08-08 21:33:53 - Double stddev_pop(NUMERIC arg) -2024-08-08 21:33:53 - Double stddev_samp(NUMERIC arg) -2024-08-08 21:33:53 - String str(arg) -2024-08-08 21:33:53 - String substr(STRING string, INTEGER start[, INTEGER length]) -2024-08-08 21:33:53 - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length]) -2024-08-08 21:33:53 - sum(arg) -2024-08-08 21:33:53 - Timestamp sysdate -2024-08-08 21:33:53 - Double tan(NUMERIC arg) -2024-08-08 21:33:53 - Double tanh(NUMERIC arg) -2024-08-08 21:33:53 - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime) -2024-08-08 21:33:53 - Long|Double timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end) -2024-08-08 21:33:53 - String translate(STRING arg0, STRING arg1, STRING arg2) -2024-08-08 21:33:53 - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1) -2024-08-08 21:33:53 - trunc( ... ) -2024-08-08 21:33:53 - truncate( ... ) -2024-08-08 21:33:53 - String upper(STRING string) -2024-08-08 21:33:53 - Double var_pop(NUMERIC arg) -2024-08-08 21:33:53 - Double var_samp(NUMERIC arg) -2024-08-08 21:33:53 - Integer week(DATE arg) -2024-08-08 21:33:53 - Integer year(DATE arg) -2024-08-08 21:33:53 - Starting QueryInterpretationCache(2048) -2024-08-08 21:33:53 - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead -2024-08-08 21:33:53 - Configured EntityCopyObserver strategy: disallow -2024-08-08 21:33:53 - Not known whether passed class name [server.haengdong.domain.action.BillAction] is safe -2024-08-08 21:33:53 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.BillAction -2024-08-08 21:33:53 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.BillAction]: private accessor [action] -2024-08-08 21:33:53 - Not known whether passed class name [server.haengdong.domain.action.MemberAction] is safe -2024-08-08 21:33:53 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.MemberAction -2024-08-08 21:33:53 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.MemberAction]: private accessor [action] -2024-08-08 21:33:53 - Not known whether passed class name [server.haengdong.domain.event.Event] is safe -2024-08-08 21:33:53 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.Event -2024-08-08 21:33:53 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.Event]: private accessor [name] -2024-08-08 21:33:53 - Not known whether passed class name [server.haengdong.domain.action.Action] is safe -2024-08-08 21:33:53 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.action.Action -2024-08-08 21:33:53 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.action.Action]: private accessor [event] -2024-08-08 21:33:53 - Not known whether passed class name [server.haengdong.domain.event.EventStep] is safe -2024-08-08 21:33:53 - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : server.haengdong.domain.event.EventStep -2024-08-08 21:33:53 - HHH000513: Unable to create the ReflectionOptimizer for [server.haengdong.domain.event.EventStep]: private accessor [event] -2024-08-08 21:33:53 - Starting post-init callbacks -2024-08-08 21:33:53 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.BillAction.action] -2024-08-08 21:33:53 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.BillAction) `staticFetchableList` generator -2024-08-08 21:33:53 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.MemberAction.action] -2024-08-08 21:33:53 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.MemberAction) `staticFetchableList` generator -2024-08-08 21:33:53 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.Event) `staticFetchableList` generator -2024-08-08 21:33:53 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.action.Action.event] -2024-08-08 21:33:53 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.action.Action) `staticFetchableList` generator -2024-08-08 21:33:53 - Starting PostInitCallbackEntry : To-one key - NavigableRole[server.haengdong.domain.event.EventStep.event] -2024-08-08 21:33:53 - Starting PostInitCallbackEntry : Entity(server.haengdong.domain.event.EventStep) `staticFetchableList` generator -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 84 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:53 - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 21:33:53 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:53 - [javax.management.remote.rmi.RMIConnectionImpl@268f7fe9: connectionId=rmi://127.0.0.1 2] closing. -2024-08-08 21:33:53 - [javax.management.remote.rmi.RMIConnectionImpl@268f7fe9: connectionId=rmi://127.0.0.1 2] closed. -2024-08-08 21:33:53 - Created new SQL alias : ba1_0 -2024-08-08 21:33:53 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.BillAction)] with identifierForTableGroup [server.haengdong.domain.action.BillAction] for NavigablePath [server.haengdong.domain.action.BillAction] -2024-08-08 21:33:53 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@562ec518] with identifierForTableGroup [server.haengdong.domain.action.BillAction.action] for NavigablePath [server.haengdong.domain.action.BillAction.action] -2024-08-08 21:33:53 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.BillAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.BillAction.action] - | +-BasicFetch [server.haengdong.domain.action.BillAction.price] - | \-BasicFetch [server.haengdong.domain.action.BillAction.title] - -2024-08-08 21:33:53 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ba1 : server.haengdong.domain.action.BillAction) { - primaryTableReference : bill_action as ba1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.BillAction.action) { - } - } - } - } - } - -2024-08-08 21:33:53 - Static SQL for entity: server.haengdong.domain.action.BillAction -2024-08-08 21:33:53 - Version select: select id from bill_action where id=? -2024-08-08 21:33:53 - Insert (0): insert into bill_action (action_id,price,title,id) values (?,?,?,default) -2024-08-08 21:33:53 - Update (0): update bill_action set action_id=?,price=?,title=? where id=? -2024-08-08 21:33:53 - Delete (0): delete from bill_action where id=? -2024-08-08 21:33:53 - Created new SQL alias : ma1_0 -2024-08-08 21:33:53 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.MemberAction)] with identifierForTableGroup [server.haengdong.domain.action.MemberAction] for NavigablePath [server.haengdong.domain.action.MemberAction] -2024-08-08 21:33:53 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@20f3291d] with identifierForTableGroup [server.haengdong.domain.action.MemberAction.action] for NavigablePath [server.haengdong.domain.action.MemberAction.action] -2024-08-08 21:33:53 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.MemberAction] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.MemberAction.action] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberGroupId] - | +-BasicFetch [server.haengdong.domain.action.MemberAction.memberName] - | \-BasicFetch [server.haengdong.domain.action.MemberAction.status] - -2024-08-08 21:33:53 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (ma1 : server.haengdong.domain.action.MemberAction) { - primaryTableReference : member_action as ma1_0 - TableGroupJoins { - left join LazyTableGroup (a1 : server.haengdong.domain.action.MemberAction.action) { - } - } - } - } - } - -2024-08-08 21:33:53 - Static SQL for entity: server.haengdong.domain.action.MemberAction -2024-08-08 21:33:53 - Version select: select id from member_action where id=? -2024-08-08 21:33:53 - Insert (0): insert into member_action (action_id,member_group_id,member_name,status,id) values (?,?,?,?,default) -2024-08-08 21:33:53 - Update (0): update member_action set action_id=?,member_group_id=?,member_name=?,status=? where id=? -2024-08-08 21:33:53 - Delete (0): delete from member_action where id=? -2024-08-08 21:33:53 - Created new SQL alias : e1_0 -2024-08-08 21:33:53 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.Event)] with identifierForTableGroup [server.haengdong.domain.event.Event] for NavigablePath [server.haengdong.domain.event.Event] -2024-08-08 21:33:53 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.Event] - | +-BasicFetch [server.haengdong.domain.event.Event.name] - | +-BasicFetch [server.haengdong.domain.event.Event.password] - | \-BasicFetch [server.haengdong.domain.event.Event.token] - -2024-08-08 21:33:53 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (e1 : server.haengdong.domain.event.Event) { - primaryTableReference : event as e1_0 - } - } - } - -2024-08-08 21:33:53 - Static SQL for entity: server.haengdong.domain.event.Event -2024-08-08 21:33:53 - Version select: select id from event where id=? -2024-08-08 21:33:53 - Insert (0): insert into event (name,password,token,id) values (?,?,?,default) -2024-08-08 21:33:53 - Update (0): update event set name=?,password=?,token=? where id=? -2024-08-08 21:33:53 - Delete (0): delete from event where id=? -2024-08-08 21:33:53 - Created new SQL alias : a1_0 -2024-08-08 21:33:53 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.action.Action)] with identifierForTableGroup [server.haengdong.domain.action.Action] for NavigablePath [server.haengdong.domain.action.Action] -2024-08-08 21:33:53 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@24381e4a] with identifierForTableGroup [server.haengdong.domain.action.Action.event] for NavigablePath [server.haengdong.domain.action.Action.event] -2024-08-08 21:33:53 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.action.Action] - | +-EntityDelayedFetchImpl [server.haengdong.domain.action.Action.event] - | \-BasicFetch [server.haengdong.domain.action.Action.sequence] - -2024-08-08 21:33:53 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (a1 : server.haengdong.domain.action.Action) { - primaryTableReference : action as a1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.action.Action.event) { - } - } - } - } - } - -2024-08-08 21:33:53 - Static SQL for entity: server.haengdong.domain.action.Action -2024-08-08 21:33:53 - Version select: select id from action where id=? -2024-08-08 21:33:53 - Insert (0): insert into action (event_id,sequence,id) values (?,?,default) -2024-08-08 21:33:53 - Update (0): update action set event_id=?,sequence=? where id=? -2024-08-08 21:33:53 - Delete (0): delete from action where id=? -2024-08-08 21:33:53 - Created new SQL alias : es1_0 -2024-08-08 21:33:53 - Registration of TableGroup [StandardTableGroup(server.haengdong.domain.event.EventStep)] with identifierForTableGroup [server.haengdong.domain.event.EventStep] for NavigablePath [server.haengdong.domain.event.EventStep] -2024-08-08 21:33:53 - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@e5d9fa7] with identifierForTableGroup [server.haengdong.domain.event.EventStep.event] for NavigablePath [server.haengdong.domain.event.EventStep.event] -2024-08-08 21:33:53 - DomainResult Graph: - \-EntityResultImpl [server.haengdong.domain.event.EventStep] - | +-EntityDelayedFetchImpl [server.haengdong.domain.event.EventStep.event] - | +-BasicFetch [server.haengdong.domain.event.EventStep.name] - | \-BasicFetch [server.haengdong.domain.event.EventStep.sequence] - -2024-08-08 21:33:53 - SQL AST Tree: - SelectStatement { - FromClause { - StandardTableGroup (es1 : server.haengdong.domain.event.EventStep) { - primaryTableReference : event_step as es1_0 - TableGroupJoins { - left join LazyTableGroup (e1 : server.haengdong.domain.event.EventStep.event) { - } - } - } - } - } - -2024-08-08 21:33:53 - Static SQL for entity: server.haengdong.domain.event.EventStep -2024-08-08 21:33:53 - Version select: select id from event_step where id=? -2024-08-08 21:33:53 - Insert (0): insert into event_step (event_id,name,sequence,id) values (?,?,?,default) -2024-08-08 21:33:53 - Update (0): update event_step set event_id=?,name=?,sequence=? where id=? -2024-08-08 21:33:53 - Delete (0): delete from event_step where id=? -2024-08-08 21:33:53 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration) -2024-08-08 21:33:53 - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@1906f982] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@55e02661] -2024-08-08 21:33:53 - Checking 0 named HQL queries -2024-08-08 21:33:53 - Checking 0 named SQL queries -2024-08-08 21:33:53 - - drop table if exists action cascade -2024-08-08 21:33:53 - - drop table if exists bill_action cascade -2024-08-08 21:33:53 - - drop table if exists event cascade -2024-08-08 21:33:53 - - drop table if exists event_step cascade -2024-08-08 21:33:53 - - drop table if exists member_action cascade -2024-08-08 21:33:53 - - create table action ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - primary key (id) - ) -2024-08-08 21:33:53 - - create table bill_action ( - action_id bigint unique, - id bigint generated by default as identity, - price bigint, - title varchar(30), - primary key (id) - ) -2024-08-08 21:33:53 - - create table event ( - id bigint generated by default as identity, - name varchar(255), - password varchar(255), - token varchar(255), - primary key (id) - ) -2024-08-08 21:33:53 - - create table event_step ( - event_id bigint, - id bigint generated by default as identity, - sequence bigint, - name varchar(255), - primary key (id) - ) -2024-08-08 21:33:53 - - create table member_action ( - action_id bigint unique, - id bigint generated by default as identity, - member_group_id bigint, - member_name varchar(255), - status enum ('IN','OUT'), - primary key (id) - ) -2024-08-08 21:33:53 - - alter table if exists action - add constraint FKgf0qmub9va1xbe44nehny31yw - foreign key (event_id) - references event -2024-08-08 21:33:53 - - alter table if exists bill_action - add constraint FK54tx517tp0ry6453olkply4us - foreign key (action_id) - references action -2024-08-08 21:33:53 - - alter table if exists event_step - add constraint FKe3rkib91cvl0x5w9wqkshmn81 - foreign key (event_id) - references event -2024-08-08 21:33:53 - - alter table if exists member_action - add constraint FK5jna51dn8fs2ir52l4uwn517u - foreign key (action_id) - references action -2024-08-08 21:33:53 - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@d082916 -2024-08-08 21:33:53 - Registering SessionFactory: 826b7e6b-8517-4859-ac84-ff48b6d9cb68 (<unnamed>) -2024-08-08 21:33:53 - Not binding SessionFactory to JNDI, no JNDI name configured -2024-08-08 21:33:53 - Instantiated SessionFactory -2024-08-08 21:33:53 - Initialized JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'haengdongApplication' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'actionService' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'billActionRepository' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'jpa.named-queries#3' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'jpa.BillActionRepository.fragments#0' -2024-08-08 21:33:53 - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jpaMappingContext' -2024-08-08 21:33:54 - Initializing JpaMetamodelMappingContext… -2024-08-08 21:33:54 - Finished initializing JpaMetamodelMappingContext -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - Statistics initialized [enabled=false] -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'repositoryTagsProvider' -2024-08-08 21:33:54 - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider' -2024-08-08 21:33:54 - Initializing repository instance for server.haengdong.domain.action.BillActionRepository… -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - Looking up named query BillAction.findByAction_Event -2024-08-08 21:33:54 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 21:33:54 - Did not find named query BillAction.findByAction_Event -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - Looking up named query BillAction.findByAction_Id -2024-08-08 21:33:54 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 21:33:54 - Did not find named query BillAction.findByAction_Id -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - Looking up named query BillAction.deleteByAction_EventAndActionId -2024-08-08 21:33:54 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 21:33:54 - Did not find named query BillAction.deleteByAction_EventAndActionId -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - Finished creation of repository instance for server.haengdong.domain.action.BillActionRepository. -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'memberActionRepository' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jpa.named-queries#0' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jpa.MemberActionRepository.fragments#0' -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - Initializing repository instance for server.haengdong.domain.action.MemberActionRepository… -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - Hibernate is in classpath; If applicable, HQL parser will be used. -2024-08-08 21:33:54 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 21:33:54 - Did not find named query MemberAction.findAllByEvent.count -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - HQL : select m from MemberAction m join fetch m.action where m.action.event = :event -2024-08-08 21:33:54 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 21:33:54 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(811116579500291)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(811116579500291)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - -> [joins] - -> [attribute] - `server.haengdong.domain.action.MemberAction(m).action(811116579500291)` - [fetched = true] - <- [attribute] - `server.haengdong.domain.action.MemberAction(m).action(811116579500291)` - <- [joins] - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action(811116579500291).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 21:33:54 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 21:33:54 - Did not find named query MemberAction.findAllUniqueMemberByEvent.count -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - HQL : select distinct m.memberName -from MemberAction m -where m.action.event = :event - -2024-08-08 21:33:54 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 21:33:54 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select(distinct)] - -> [selection] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - <- [selection] - <- [select(distinct)] - -> [from] - -> [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [root] - `server.haengdong.domain.action.MemberAction(m)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 21:33:54 - Looking up named query MemberAction.findByAction -2024-08-08 21:33:54 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 21:33:54 - Did not find named query MemberAction.findByAction -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - Looking up named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 21:33:54 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 21:33:54 - Did not find named query MemberAction.existsByAction_EventAndMemberName -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - Looking up named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 21:33:54 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 21:33:54 - Did not find named query MemberAction.findAllByAction_EventAndMemberName -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 21:33:54 - Did not find named query MemberAction.deleteAllByEventAndMemberName.count -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.event = :event - -2024-08-08 21:33:54 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 21:33:54 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 21:33:54 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.MemberAction(m).action.event` - :event - <- [EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 21:33:54 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 21:33:54 - Did not find named query MemberAction.deleteAllByMemberNameAndMinSequence.count -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - HQL : delete -from MemberAction m -where m.memberName = :memberName and m.action.sequence >= :sequence - -2024-08-08 21:33:54 - Applying inferable type to SqmExpression [SqmNamedParameter(memberName)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).memberName) -2024-08-08 21:33:54 - Applying inferable type to SqmExpression [SqmNamedParameter(sequence)] : null -> SqmBasicValuedSimplePath(server.haengdong.domain.action.MemberAction(m).action.sequence) -2024-08-08 21:33:54 - SqmStatement Tree : - -> [delete] - [target = server.haengdong.domain.action.MemberAction(m)] - -> [where] - -> [and] - -> [EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).memberName` - :memberName - <- [EQUAL] - -> [GREATER_THAN_OR_EQUAL] - -> [basic-path] - `server.haengdong.domain.action.MemberAction(m).action.sequence` - :sequence - <- [GREATER_THAN_OR_EQUAL] - <- [and] - <- [where] - <- [delete] - -2024-08-08 21:33:54 - Finished creation of repository instance for server.haengdong.domain.action.MemberActionRepository. -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'eventRepository' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jpa.named-queries#2' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jpa.EventRepository.fragments#0' -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - Initializing repository instance for server.haengdong.domain.event.EventRepository… -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - Looking up named query Event.findByToken -2024-08-08 21:33:54 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 21:33:54 - Did not find named query Event.findByToken -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - Finished creation of repository instance for server.haengdong.domain.event.EventRepository. -2024-08-08 21:33:54 - Autowiring by type from bean name 'actionService' via constructor to bean named 'billActionRepository' -2024-08-08 21:33:54 - Autowiring by type from bean name 'actionService' via constructor to bean named 'memberActionRepository' -2024-08-08 21:33:54 - Autowiring by type from bean name 'actionService' via constructor to bean named 'eventRepository' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'billActionService' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'actionRepository' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jpa.named-queries#1' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jpa.ActionRepository.fragments#0' -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - Initializing repository instance for server.haengdong.domain.action.ActionRepository… -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.getCountQuery(JpaQueryLookupStrategy.java:204) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:171) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 21:33:54 - Did not find named query Action.findLastByEvent.count -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - HQL : SELECT a -FROM Action a -WHERE a.event = :event -ORDER BY a.sequence DESC -LIMIT 1 - -2024-08-08 21:33:54 - Applying inferable type to SqmExpression [SqmNamedParameter(event)] : null -> server.haengdong.domain.action.Action#event(MANY_TO_ONE) -2024-08-08 21:33:54 - SqmStatement Tree : - -> [select] - -> [query-spec] - -> [select] - -> [selection] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [selection] - <- [select] - -> [from] - -> [root] - `server.haengdong.domain.action.Action(a)` - <- [root] - `server.haengdong.domain.action.Action(a)` - <- [from] - -> [where] - -> [EQUAL] - -> [entity-path] - `server.haengdong.domain.action.Action(a).event` - :event - <- [EQUAL] - <- [where] - <- [query-spec] - <- [select] - -2024-08-08 21:33:54 - Looking up named query Action.findByIdAndEvent -2024-08-08 21:33:54 - JDBC transaction marked for rollback-only (exception provided for stack trace) -java.lang.Exception: exception just for purpose of providing stack trace - at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:309) - at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1109) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:987) - at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:140) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364) - at jdk.proxy2/jdk.proxy2.$Proxy139.createNamedQuery(Unknown Source) - at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:112) - at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:138) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252) - at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88) - at java.base/java.util.Optional.map(Optional.java:260) - at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.<init>(QueryExecutorMethodInterceptor.java:88) - at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:286) - at org.springframework.data.util.Lazy.getNullable(Lazy.java:135) - at org.springframework.data.util.Lazy.get(Lazy.java:113) - at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:292) - at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1357) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1194) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at server.haengdong.HaengdongApplication.main(HaengdongApplication.java:10) -2024-08-08 21:33:54 - Did not find named query Action.findByIdAndEvent -2024-08-08 21:33:54 - Creating new EntityManager for shared EntityManager invocation -2024-08-08 21:33:54 - Finished creation of repository instance for server.haengdong.domain.action.ActionRepository. -2024-08-08 21:33:54 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'billActionRepository' -2024-08-08 21:33:54 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'actionRepository' -2024-08-08 21:33:54 - Autowiring by type from bean name 'billActionService' via constructor to bean named 'eventRepository' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'eventService' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'eventTokenProvider' -2024-08-08 21:33:54 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventRepository' -2024-08-08 21:33:54 - Autowiring by type from bean name 'eventService' via constructor to bean named 'eventTokenProvider' -2024-08-08 21:33:54 - Autowiring by type from bean name 'eventService' via constructor to bean named 'billActionRepository' -2024-08-08 21:33:54 - Autowiring by type from bean name 'eventService' via constructor to bean named 'memberActionRepository' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'memberActionFactory' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'memberGroupIdProvider' -2024-08-08 21:33:54 - Autowiring by type from bean name 'memberActionFactory' via constructor to bean named 'memberGroupIdProvider' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'memberActionService' -2024-08-08 21:33:54 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionFactory' -2024-08-08 21:33:54 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'memberActionRepository' -2024-08-08 21:33:54 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'eventRepository' -2024-08-08 21:33:54 - Autowiring by type from bean name 'memberActionService' via constructor to bean named 'actionRepository' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'webMvcConfig' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'webMvcConfig' via constructor to bean named 'security.jwt.token-server.haengdong.infrastructure.auth.TokenProperties' -2024-08-08 21:33:54 - Found key 'cors.max-age' in PropertySource 'environmentProperties' with value of type String -2024-08-08 21:33:54 - Found key 'cors.allowed-origins' in PropertySource 'environmentProperties' with value of type String -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'globalExceptionHandler' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'actionController' -2024-08-08 21:33:54 - Autowiring by type from bean name 'actionController' via constructor to bean named 'actionService' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'billActionController' -2024-08-08 21:33:54 - Autowiring by type from bean name 'billActionController' via constructor to bean named 'billActionService' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'eventController' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'authService' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'tokenProvider' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'eventController' via constructor to bean named 'eventService' -2024-08-08 21:33:54 - Autowiring by type from bean name 'eventController' via constructor to bean named 'authService' -2024-08-08 21:33:54 - Autowiring by type from bean name 'eventController' via constructor to bean named 'cookie-server.haengdong.infrastructure.auth.CookieProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'memberActionController' -2024-08-08 21:33:54 - Autowiring by type from bean name 'memberActionController' via constructor to bean named 'memberActionService' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'adminInterceptor' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'authenticationExtractor' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'taskExecutorBuilder' -2024-08-08 21:33:54 - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'defaultValidator' -2024-08-08 21:33:54 - Autowiring by type from bean name 'defaultValidator' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 21:33:54 - Loaded expression factory via original TCCL -2024-08-08 21:33:54 - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator -2024-08-08 21:33:54 - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory -2024-08-08 21:33:54 - Trying to load META-INF/validation.xml for XML based Validator configuration. -2024-08-08 21:33:54 - Trying to load META-INF/validation.xml via user class loader -2024-08-08 21:33:54 - Trying to load META-INF/validation.xml via TCCL -2024-08-08 21:33:54 - Trying to load META-INF/validation.xml via Hibernate Validator's class loader -2024-08-08 21:33:54 - No META-INF/validation.xml found. Using annotation based configuration only. -2024-08-08 21:33:54 - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver -2024-08-08 21:33:54 - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver. -2024-08-08 21:33:54 - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider. -2024-08-08 21:33:54 - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. -2024-08-08 21:33:54 - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver. -2024-08-08 21:33:54 - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. -2024-08-08 21:33:54 - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. -2024-08-08 21:33:54 - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'error' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'beanNameViewResolver' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'conventionErrorViewResolver' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'errorAttributes' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'basicErrorController' -2024-08-08 21:33:54 - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@7db0565c' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@7db0565c' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptorConfigurer' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$JpaWebConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'openEntityManagerInViewInterceptor' -2024-08-08 21:33:54 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2024-08-08 21:33:54 - Autowiring by type from bean name 'openEntityManagerInViewInterceptorConfigurer' via factory method to bean named 'openEntityManagerInViewInterceptor' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'endpointObjectMapperWebMvcConfigurer' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'endpointObjectMapper' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration' -2024-08-08 21:33:54 - Autowiring by type from bean name 'endpointObjectMapperWebMvcConfigurer' via factory method to bean named 'endpointObjectMapper' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'welcomePageHandlerMapping' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'mvcConversionService' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'mvcResourceUrlProvider' -2024-08-08 21:33:54 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 21:33:54 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 21:33:54 - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' -2024-08-08 21:33:54 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 21:33:54 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 21:33:54 - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'localeResolver' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'themeResolver' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'flashMapManager' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'mvcValidator' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'mvcContentNegotiationManager' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'requestMappingHandlerMapping' -2024-08-08 21:33:54 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 21:33:54 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 21:33:54 - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 21:33:54 - - s.h.p.ActionController: - {GET [/api/events/{eventId}/actions/reports]}: getMemberBillReports(String) -2024-08-08 21:33:54 - - s.h.p.BillActionController: - {POST [/api/events/{eventId}/bill-actions]}: saveAllBillAction(String,BillActionsSaveRequest) - {PUT [/api/events/{eventId}/bill-actions/{actionId}]}: updateBillAction(String,Long,BillActionUpdateRequest) - {DELETE [/api/events/{eventId}/bill-actions/{actionId}]}: deleteBillAction(String,Long) -2024-08-08 21:33:54 - - s.h.p.EventController: - {GET [/api/events/{eventId}/auth]}: authenticate(String) - {POST [/api/events/{eventId}/login]}: loginEvent(String,EventLoginRequest) - {POST [/api/events]}: saveEvent(EventSaveRequest) - {GET [/api/events/{eventId}]}: findEvent(String) - {GET [/api/events/{eventId}/actions]}: findActions(String) - {GET [/api/events/{eventId}/members]}: findAllMembers(String) - {PUT [/api/events/{eventId}/members/nameChange]}: updateMember(String,MemberNamesUpdateRequest) -2024-08-08 21:33:54 - - s.h.p.MemberActionController: - {POST [/api/events/{eventId}/member-actions]}: saveMemberAction(String,MemberActionsSaveRequest) - {GET [/api/events/{eventId}/members/current]}: getCurrentMembers(String) - {DELETE [/api/events/{eventId}/members/{memberName}]}: deleteMember(String,String) - {DELETE [/api/events/{eventId}/member-actions/{actionId}]}: deleteMemberAction(String,Long) -2024-08-08 21:33:54 - - o.s.b.a.w.s.e.BasicErrorController: - { [/error]}: error(HttpServletRequest) - { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) -2024-08-08 21:33:54 - 17 mappings in 'requestMappingHandlerMapping' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'mvcPatternParser' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'mvcUrlPathHelper' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'mvcPathMatcher' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'viewControllerHandlerMapping' -2024-08-08 21:33:54 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 21:33:54 - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'beanNameHandlerMapping' -2024-08-08 21:33:54 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 21:33:54 - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 21:33:54 - 'beanNameHandlerMapping' {} -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'routerFunctionMapping' -2024-08-08 21:33:54 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 21:33:54 - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'messageConverters' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'stringHttpMessageConverter' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' -2024-08-08 21:33:54 - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jacksonObjectMapper' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'parameterNamesModule' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jsonMixinModule' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jsonMixinModuleEntries' -2024-08-08 21:33:54 - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 21:33:54 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 21:33:54 - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jsonComponentModule' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jacksonGeoModule' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebSettings' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'pageModule' -2024-08-08 21:33:54 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 21:33:54 - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' -2024-08-08 21:33:54 - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' -2024-08-08 21:33:54 - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'resourceHandlerMapping' -2024-08-08 21:33:54 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 21:33:54 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' -2024-08-08 21:33:54 - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' -2024-08-08 21:33:54 - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]]} -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'defaultServletHandlerMapping' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' -2024-08-08 21:33:54 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 21:33:54 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' -2024-08-08 21:33:54 - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'sortResolver' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'sortCustomizer' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'pageableResolver' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'pageableCustomizer' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'applicationTaskExecutor' -2024-08-08 21:33:54 - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' -2024-08-08 21:33:54 - Initializing ExecutorService 'applicationTaskExecutor' -2024-08-08 21:33:54 - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 84 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: -javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:569) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - [javax.management.remote.rmi.RMIConnectionImpl@192b3987: connectionId=rmi://127.0.0.1 3] closing. -2024-08-08 21:33:54 - [javax.management.remote.rmi.RMIConnectionImpl@192b3987: connectionId=rmi://127.0.0.1 3] closed. -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'handlerFunctionAdapter' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'mvcUriComponentsContributor' -2024-08-08 21:33:54 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' -2024-08-08 21:33:54 - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'handlerExceptionResolver' -2024-08-08 21:33:54 - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 21:33:54 - ControllerAdvice beans: 1 @ExceptionHandler, 1 ResponseBodyAdvice -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'mvcViewResolver' -2024-08-08 21:33:54 - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'viewNameTranslator' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'defaultViewResolver' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 21:33:54 - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@7db0565c' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'viewResolver' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'applicationAvailability' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'beansEndpoint' -2024-08-08 21:33:54 - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'transactionExecutionListeners' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.JpaBaseConfiguration$PersistenceManagedTypesConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'transactionManager' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'cachesEndpoint' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'healthStatusAggregator' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'healthStatusAggregator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'healthHttpCodeStatusMapper' -2024-08-08 21:33:54 - Autowiring by type from bean name 'healthHttpCodeStatusMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'healthEndpointGroups' -2024-08-08 21:33:54 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 21:33:54 - Autowiring by type from bean name 'healthEndpointGroups' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'healthContributorRegistry' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthContributorAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'management.health.diskspace-org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'pingHealthContributor' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'dbHealthContributor' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthContributorAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'dataSource' -2024-08-08 21:33:54 - Autowiring by type from bean name 'dbHealthContributor' via factory method to bean named 'management.health.db-org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 21:33:54 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'healthEndpointGroups' -2024-08-08 21:33:54 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' -2024-08-08 21:33:54 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'pingHealthContributor' -2024-08-08 21:33:54 - Autowiring by type from bean name 'healthContributorRegistry' via factory method to bean named 'dbHealthContributor' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'healthEndpointGroupMembershipValidator' -2024-08-08 21:33:54 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'healthEndpointGroupMembershipValidator' via factory method to bean named 'healthContributorRegistry' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'healthEndpoint' -2024-08-08 21:33:54 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthContributorRegistry' -2024-08-08 21:33:54 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthEndpointGroups' -2024-08-08 21:33:54 - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'infoEndpoint' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'servletWebChildContextFactory' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'managementServletContext' -2024-08-08 21:33:54 - Autowiring by type from bean name 'managementServletContext' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'conditionsReportEndpoint' -2024-08-08 21:33:54 - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'configurationPropertiesReportEndpoint' via factory method to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'endpointOperationParameterMapper' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' -2024-08-08 21:33:54 - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'mbeanExporter' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'objectNamingStrategy' -2024-08-08 21:33:54 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' -2024-08-08 21:33:54 - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@7db0565c' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'mbeanServer' -2024-08-08 21:33:54 - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@368239c8 -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' -2024-08-08 21:33:54 - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'endpointObjectNameFactory' -2024-08-08 21:33:54 - Autowiring by type from bean name 'endpointObjectNameFactory' via factory method to bean named 'mbeanServer' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jmxMBeanExporter' -2024-08-08 21:33:54 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'mbeanServer' -2024-08-08 21:33:54 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'endpointObjectNameFactory' -2024-08-08 21:33:54 - Autowiring by type from bean name 'jmxMBeanExporter' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'environmentEndpoint' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' -2024-08-08 21:33:54 - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'loggersEndpoint' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' -2024-08-08 21:33:54 - Autowiring by type from bean name 'loggersEndpoint' via factory method to bean named 'springBootLoggingSystem' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'heapDumpWebEndpoint' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'dumpEndpoint' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'metricsEndpoint' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' -2024-08-08 21:33:54 - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'sbomEndpoint' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.sbom.SbomEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.sbom-org.springframework.boot.actuate.sbom.SbomProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'sbomEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'scheduledTasksEndpoint' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'mappingsEndpoint' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' -2024-08-08 21:33:54 - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'dispatcherServletMappingDescriptionProvider' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration$SpringMvcConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'servletMappingDescriptionProvider' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration$ServletWebConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'filterMappingDescriptionProvider' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'eagerlyInitializeJmxEndpointExporter' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'endpointMediaTypes' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'webEndpointDiscoverer' -2024-08-08 21:33:54 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' -2024-08-08 21:33:54 - Autowiring by type from bean name 'webEndpointDiscoverer' via factory method to bean named 'endpointMediaTypes' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'webExposeExcludePropertyEndpointFilter' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'controllerEndpointDiscoverer' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'controllerExposeExcludePropertyEndpointFilter' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'pathMappedEndpoints' -2024-08-08 21:33:54 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'jmxAnnotationEndpointDiscoverer' -2024-08-08 21:33:54 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 21:33:54 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 21:33:54 - Autowiring by type from bean name 'pathMappedEndpoints' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'meterRegistryCloser' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jvmGcMetrics' -2024-08-08 21:33:54 - Using SLF4J as the default logging framework -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jvmHeapPressureMetrics' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jvmMemoryMetrics' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jvmThreadMetrics' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'classLoaderMetrics' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jvmInfoMetrics' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jvmCompilationMetrics' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'logbackMetrics' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'uptimeMetrics' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'processorMetrics' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'fileDescriptorMetrics' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'diskSpaceMetrics' -2024-08-08 21:33:54 - Autowiring by type from bean name 'diskSpaceMetrics' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'hikariDataSourceMeterBinder' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'dataSourcePoolMetadataMeterBinder' -2024-08-08 21:33:54 - Autowiring by type from bean name 'dataSourcePoolMetadataMeterBinder' via factory method to bean named 'dataSource' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.startup.StartupTimeMetricsListenerAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'startupTimeMetrics' -2024-08-08 21:33:54 - Autowiring by type from bean name 'startupTimeMetrics' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'taskSchedulerBuilder' -2024-08-08 21:33:54 - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.task.TaskExecutorMetricsAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'eagerTaskExecutorMetrics' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.tomcat.TomcatMetricsAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'tomcatMetricsBinder' -2024-08-08 21:33:54 - Autowiring by type from bean name 'tomcatMetricsBinder' via factory method to bean named 'simpleMeterRegistry' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$ObservedAspectConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'observedAspect' -2024-08-08 21:33:54 - Autowiring by type from bean name 'observedAspect' via factory method to bean named 'observationRegistry' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'restClientSsl' -2024-08-08 21:33:54 - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'restClientBuilderConfigurer' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'observationRestClientCustomizer' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestClientObservationConfiguration' -2024-08-08 21:33:54 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 21:33:54 - Autowiring by type from bean name 'observationRestClientCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.RestTemplateObservationConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'observationRestTemplateCustomizer' -2024-08-08 21:33:54 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'observationRegistry' -2024-08-08 21:33:54 - Autowiring by type from bean name 'observationRestTemplateCustomizer' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksObservabilityAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'observabilitySchedulingConfigurer' -2024-08-08 21:33:54 - Autowiring by type from bean name 'observabilitySchedulingConfigurer' via factory method to bean named 'observationRegistry' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesEndpointAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' -2024-08-08 21:33:54 - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' -2024-08-08 21:33:54 - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration$CglibAutoProxyConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'lifecycleProcessor' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.data.jpa.util.JpaMetamodelCacheCleanup' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.data.jpa.repository.support.JpaEvaluationContextExtension' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'data-jpa.repository-aot-processor#0' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'offsetResolver' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jdbcTemplate' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' -2024-08-08 21:33:54 - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' -2024-08-08 21:33:54 - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'jdbcClient' -2024-08-08 21:33:54 - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'transactionTemplate' -2024-08-08 21:33:54 - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'multipartResolver' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.servlet.WebMvcEndpointManagementContextConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'webEndpointServletHandlerMapping' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'webEndpointDiscoverer' -2024-08-08 21:33:54 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'servletEndpointDiscoverer' -2024-08-08 21:33:54 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 21:33:54 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'endpointMediaTypes' -2024-08-08 21:33:54 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'webEndpointServletHandlerMapping' via factory method to bean named 'environment' -2024-08-08 21:33:54 - Exposing 0 endpoints beneath base path '/actuator' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'controllerEndpointHandlerMapping' -2024-08-08 21:33:54 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'controllerEndpointDiscoverer' -2024-08-08 21:33:54 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web.cors-org.springframework.boot.actuate.autoconfigure.endpoint.web.CorsEndpointProperties' -2024-08-08 21:33:54 - Autowiring by type from bean name 'controllerEndpointHandlerMapping' via factory method to bean named 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration$EnableSameManagementContextConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' -2024-08-08 21:33:54 - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration$SameManagementContextConfiguration' via constructor to bean named 'environment' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' -2024-08-08 21:33:54 - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' -2024-08-08 21:33:54 - Registering beans for JMX exposure on startup -2024-08-08 21:33:54 - Auto-detecting user-defined JMX MBeans -2024-08-08 21:33:54 - Bean with name 'dataSource' has been autodetected for JMX exposure -2024-08-08 21:33:54 - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] -2024-08-08 21:33:54 - Starting beans in phase -2147483647 -2024-08-08 21:33:54 - Successfully started bean 'springBootLoggingLifecycle' -2024-08-08 21:33:54 - Starting beans in phase 2147481599 -2024-08-08 21:33:54 - Setting state for [Connector["http-nio-8080"]] to [STARTING_PREP] -2024-08-08 21:33:54 - Setting state for [Connector["http-nio-8080"]] to [STARTING] -2024-08-08 21:33:54 - Starting ProtocolHandler ["http-nio-8080"] -2024-08-08 21:33:54 - Setting state for [Connector["http-nio-8080"]] to [STARTED] -2024-08-08 21:33:54 - Tomcat started on port 8080 (http) with context path '/' -2024-08-08 21:33:54 - Successfully started bean 'webServerStartStop' -2024-08-08 21:33:54 - Starting beans in phase 2147482623 -2024-08-08 21:33:54 - Successfully started bean 'webServerGracefulShutdown' -2024-08-08 21:33:54 - Starting beans in phase 2147483647 -2024-08-08 21:33:54 - - - -============================ -CONDITIONS EVALUATION REPORT -============================ - - -Positive matches: ------------------ - - AopAutoConfiguration matched: - - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) - - AuditEventsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - BeansEndpointAutoConfiguration#beansEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.beans.BeansEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CacheMeterBinderProvidersConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.MeterBinder' (OnClassCondition) - - CachesEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - CachesEndpointAutoConfiguration#cachesEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CompositeMeterRegistryAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.composite.CompositeMeterRegistry' (OnClassCondition) - - ConditionsReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConditionsReportEndpointAutoConfiguration#conditionsReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpoint; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: - - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource' (OnClassCondition) - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource' (OnBeanCondition) - - DataSourceHealthContributorAutoConfiguration#dbHealthContributor matched: - - @ConditionalOnMissingBean (names: dbHealthIndicator,dbHealthContributor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceInitializationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DataSourceJmxConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - DataSourceJmxConfiguration.Hikari matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourcePoolMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: javax.sql.DataSource,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'simpleMeterRegistry', 'dataSource' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.DataSourcePoolMetadataMetricsConfiguration matched: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.metadata.DataSourcePoolMetadataProvider; SearchStrategy: all) found bean 'hikariPoolDataSourceMetadataProvider' (OnBeanCondition) - - DataSourcePoolMetricsAutoConfiguration.HikariDataSourceMetricsConfiguration matched: - - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - DiskSpaceHealthContributorAutoConfiguration matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - DiskSpaceHealthContributorAutoConfiguration#diskSpaceHealthIndicator matched: - - @ConditionalOnMissingBean (names: diskSpaceHealthIndicator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - DispatcherServletAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) - - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) - - DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: - - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - EndpointAutoConfiguration#endpointCachingOperationInvokerAdvisor matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoker.cache.CachingOperationInvokerAdvisor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EndpointAutoConfiguration#endpointOperationParameterMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.invoke.ParameterValueMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - EnvironmentEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ErrorMvcAutoConfiguration#basicErrorController matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration#errorAttributes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: - - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) - - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: - - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) - - GenericCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) - - H2ConsoleAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.h2.console.enabled=true) matched (OnPropertyCondition) - - HealthContributorAutoConfiguration#pingHealthContributor matched: - - @ConditionalOnEnabledHealthIndicator management.health.defaults.enabled is considered true (OnEnabledHealthIndicatorCondition) - - HealthEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HealthEndpointConfiguration#healthContributorRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthContributorRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthEndpointGroupMembershipValidator matched: - - @ConditionalOnProperty (management.endpoint.health.validate-group-membership=true) matched (OnPropertyCondition) - - HealthEndpointConfiguration#healthEndpointGroups matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HealthEndpointGroups; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthHttpCodeStatusMapper matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.HttpCodeStatusMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HealthEndpointConfiguration#healthStatusAggregator matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.health.StatusAggregator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HeapDumpWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HeapDumpWebEndpointAutoConfiguration#heapDumpWebEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.HeapDumpWebEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HibernateJpaAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean', 'jakarta.persistence.EntityManager', 'org.hibernate.engine.spi.SessionImplementor' (OnClassCondition) - - HibernateJpaConfiguration matched: - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.Observation' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - HttpClientObservationsAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - HttpEncodingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) - - HttpEncodingAutoConfiguration#characterEncodingFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpExchangesEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - HttpMessageConvertersAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) - - HttpMessageConvertersAutoConfiguration#messageConverters matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) - - HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - InfoEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - InfoEndpointAutoConfiguration#infoEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.info.InfoEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) - - JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: - - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JacksonEndpointAutoConfiguration#endpointObjectMapper matched: - - @ConditionalOnClass found required classes 'com.fasterxml.jackson.databind.ObjectMapper', 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) - - @ConditionalOnProperty (management.endpoints.jackson.isolated-object-mapper) matched (OnPropertyCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: - - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) - - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) - - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: - - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcClientAutoConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JdbcTemplateAutoConfiguration matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) - - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) - - JdbcTemplateConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxAutoConfiguration#mbeanExporter matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#mbeanServer matched: - - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxAutoConfiguration#objectNamingStrategy matched: - - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration matched: - - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) - - JmxEndpointAutoConfiguration#endpointObjectNameFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.EndpointObjectNameFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxAnnotationEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.jmx.JmxEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JmxEndpointAutoConfiguration#jmxMBeanExporter matched: - - @ConditionalOnSingleCandidate (types: javax.management.MBeanServer; SearchStrategy: all) found a single bean 'mbeanServer' (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactory matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#entityManagerFactoryBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#jpaVendorAdapter matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.JpaVendorAdapter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration#transactionManager matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.JpaWebConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.jpa.open-in-view=true) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor,org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean,jakarta.persistence.EntityManagerFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaBaseConfiguration.PersistenceManagedTypesConfiguration#persistenceManagedTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.orm.jpa.persistenceunit.PersistenceManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JpaRepositoriesAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) - - @ConditionalOnProperty (spring.data.jpa.repositories.enabled=true) matched (OnPropertyCondition) - - @ConditionalOnBean (types: javax.sql.DataSource; SearchStrategy: all) found bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean,org.springframework.data.jpa.repository.config.JpaRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JtaAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.transaction.Transaction' (OnClassCondition) - - @ConditionalOnProperty (spring.jta.enabled) matched (OnPropertyCondition) - - JvmMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - JvmMetricsAutoConfiguration#classLoaderMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.ClassLoaderMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmCompilationMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmCompilationMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmGcMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmGcMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmHeapPressureMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmHeapPressureMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmInfoMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmInfoMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmMemoryMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmMemoryMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - JvmMetricsAutoConfiguration#jvmThreadMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.jvm.JvmThreadMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LifecycleAutoConfiguration#defaultLifecycleProcessor matched: - - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - LogFileWebEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.web.exposure' property (OnAvailableEndpointCondition) - - LogbackMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'ch.qos.logback.classic.LoggerContext', 'org.slf4j.LoggerFactory' (OnClassCondition) - - LogbackLoggingCondition ILoggerFactory is a Logback LoggerContext (LogbackMetricsAutoConfiguration.LogbackLoggingCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - LogbackMetricsAutoConfiguration#logbackMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.logging.LogbackMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - LoggersEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - LoggersEndpointAutoConfiguration#loggersEndpoint matched: - - Logging System enabled (LoggersEndpointAutoConfiguration.OnEnabledLoggingSystemCondition) - - @ConditionalOnBean (types: org.springframework.boot.logging.LoggingSystem; SearchStrategy: all) found bean 'springBootLoggingSystem'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.logging.LoggersEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ManagementContextAutoConfiguration.SameManagementContextConfiguration matched: - - Management Port actual port type (SAME) matched required type (OnManagementPortCondition) - - MappingsEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ServletWebConfiguration.SpringMvcConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) - - MetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - MetricsAutoConfiguration#micrometerClock matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MetricsEndpointAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.annotation.Timed' (OnClassCondition) - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - MetricsEndpointAutoConfiguration#metricsEndpoint matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.MetricsEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) - - MultipartAutoConfiguration#multipartConfigElement matched: - - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) - - MultipartAutoConfiguration#multipartResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NamedParameterJdbcTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - NoOpCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) - - ObservationAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.observation.ObservationRegistry' (OnClassCondition) - - ObservationAutoConfiguration#observationRegistry matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.observation.MeterObservationHandler; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.OnlyMetricsMeterObservationHandlerConfiguration matched: - - @ConditionalOnMissingBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration matched: - - @ConditionalOnClass found required class 'org.aspectj.weaver.Advice' (OnClassCondition) - - ObservationAutoConfiguration.ObservedAspectConfiguration#observedAspect matched: - - @ConditionalOnMissingBean (types: io.micrometer.observation.aop.ObservedAspect; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ObservationAutoConfiguration.OnlyMetricsConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry'; @ConditionalOnMissingClass did not find unwanted class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) - - PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: - - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.data.repository.Repository' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#metricsRepositoryMethodInvocationListener matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.MetricsRepositoryMethodInvocationListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RepositoryMetricsAutoConfiguration#repositoryTagsProvider matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.data.RepositoryTagsProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientBuilderConfigurer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientAutoConfiguration#restClientSsl matched: - - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestClientObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) found bean 'restClientBuilder' (OnBeanCondition) - - RestTemplateAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) - - RestTemplateAutoConfiguration#restTemplateBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - RestTemplateObservationConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) - - @ConditionalOnBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) found bean 'restTemplateBuilder' (OnBeanCondition) - - SbomEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - SbomEndpointAutoConfiguration#sbomEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ScheduledTasksEndpointAutoConfiguration#scheduledTasksEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.scheduling.ScheduledTasksEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ScheduledTasksObservabilityAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - ServletEndpointManagementContextConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - ServletEndpointManagementContextConfiguration.WebMvcServletEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - ServletManagementContextAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.Servlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: - - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) - - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) - - SimpleCacheConfiguration matched: - - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) - - SimpleMetricsExportAutoConfiguration matched: - - @ConditionalOnEnabledMetricsExport management.defaults.metrics.export.enabled is considered true (OnMetricsExportEnabledCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.Clock; SearchStrategy: all) found bean 'micrometerClock'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SimpleMetricsExportAutoConfiguration#simpleConfig matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.simple.SimpleConfig; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringApplicationAdminJmxAutoConfiguration matched: - - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) - - SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#pageableCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SpringDataWebAutoConfiguration#sortCustomizer matched: - - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SqlInitializationAutoConfiguration matched: - - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) - - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) - - SslAutoConfiguration#sslBundleRegistry matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - StartupTimeMetricsListenerAutoConfiguration#startupTimeMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.startup.StartupTimeMetricsListener; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - SystemMetricsAutoConfiguration#diskSpaceMetrics matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.metrics.system.DiskSpaceMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#fileDescriptorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.FileDescriptorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#processorMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.ProcessorMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SystemMetricsAutoConfiguration#uptimeMetrics matched: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.system.UptimeMetrics; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration matched: - - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskExecutorMetricsAutoConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.binder.jvm.ExecutorServiceMetrics' (OnClassCondition) - - @ConditionalOnBean (types: java.util.concurrent.Executor,io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans 'applicationTaskExecutor', 'simpleMeterRegistry' (OnBeanCondition) - - TaskSchedulingAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) - - TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ThreadDumpEndpointAutoConfiguration matched: - - @ConditionalOnAvailableEndpoint marked as exposed by a 'management.endpoints.jmx.exposure' property (OnAvailableEndpointCondition) - - ThreadDumpEndpointAutoConfiguration#dumpEndpoint matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.management.ThreadDumpEndpoint; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TomcatMetricsAutoConfiguration matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.binder.tomcat.TomcatMetrics', 'org.apache.catalina.Manager' (OnClassCondition) - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - TomcatMetricsAutoConfiguration#tomcatMetricsBinder matched: - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry'; @ConditionalOnMissingBean (types: io.micrometer.core.instrument.binder.tomcat.TomcatMetrics,org.springframework.boot.actuate.metrics.web.tomcat.TomcatMetricsBinder; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: - - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: - - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration matched: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) - - TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: - - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionManagerCustomizationAutoConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) - - TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration matched: - - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) - - @ConditionalOnResource found location classpath:META-INF/services/jakarta.validation.spi.ValidationProvider (OnResourceCondition) - - ValidationAutoConfiguration#defaultValidator matched: - - @ConditionalOnMissingBean (types: jakarta.validation.Validator; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ValidationAutoConfiguration#methodValidationPostProcessor matched: - - @ConditionalOnMissingBean (types: org.springframework.validation.beanvalidation.MethodValidationPostProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration#controllerEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ControllerEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#endpointMediaTypes matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.EndpointMediaTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#pathMappedEndpoints matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.PathMappedEndpoints; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration#webEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration matched: - - found 'session' scope (OnWebApplicationCondition) - - WebEndpointAutoConfiguration.WebEndpointServletConfiguration#servletEndpointDiscoverer matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.annotation.ServletEndpointsSupplier; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration#formContentFilter matched: - - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) - - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: - - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: - - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: - - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: - - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet,org.springframework.boot.actuate.endpoint.web.WebEndpointsSupplier; SearchStrategy: all) found beans 'webEndpointDiscoverer', 'dispatcherServlet' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#controllerEndpointHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.ControllerEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#endpointObjectMapperWebMvcConfigurer matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.endpoint.jackson.EndpointObjectMapper; SearchStrategy: all) found bean 'endpointObjectMapper' (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#webEndpointServletHandlerMapping matched: - - @ConditionalOnMissingBean (types: org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration matched: - - @ConditionalOnClass found required classes 'org.springframework.web.servlet.DispatcherServlet', 'io.micrometer.observation.Observation' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnBean (types: io.micrometer.observation.ObservationRegistry; SearchStrategy: all) found bean 'observationRegistry' (OnBeanCondition) - - WebMvcObservationAutoConfiguration#webMvcObservationFilter matched: - - @ConditionalOnMissingBean (types: org.springframework.web.filter.ServerHttpObservationFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) - - WebMvcObservationAutoConfiguration.MeterFilterConfiguration matched: - - @ConditionalOnClass found required class 'io.micrometer.core.instrument.MeterRegistry' (OnClassCondition) - - @ConditionalOnBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found bean 'simpleMeterRegistry' (OnBeanCondition) - - WebSocketServletAutoConfiguration matched: - - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: - - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) - - WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: - - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) - - -Negative matches: ------------------ - - ActiveMQAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AopAutoConfiguration.AspectJAutoProxyingConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - AopAutoConfiguration.ClassProxyingConfiguration: - Did not match: - - @ConditionalOnMissingClass found unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) - - AppOpticsMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.appoptics.AppOpticsMeterRegistry' (OnClassCondition) - - ArtemisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - AtlasMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.atlas.AtlasMeterRegistry' (OnClassCondition) - - AuditAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - Matched: - - @ConditionalOnProperty (management.auditevents.enabled) matched (OnPropertyCondition) - - AuditEventsEndpointAutoConfiguration#auditEventsEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.audit.AuditEventRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.audit.AuditEventRepository (OnBeanCondition) - - AvailabilityHealthContributorAutoConfiguration#livenessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.livenessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityHealthContributorAutoConfiguration#readinessStateHealthIndicator: - Did not match: - - @ConditionalOnProperty (management.health.readinessstate.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - AvailabilityProbesAutoConfiguration: - Did not match: - - Probes availability not running on a supported cloud platform (AvailabilityProbesAutoConfiguration.ProbesCondition) - - BatchAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) - - BatchObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.batch.core.configuration.annotation.BatchObservabilityBeanPostProcessor' (OnClassCondition) - - BraveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'brave.Tracer' (OnClassCondition) - - Cache2kCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) - - CacheAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) - - CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: - Did not match: - - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.Cache2kCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.cache2k.Cache2kBuilder', 'org.cache2k.extra.spring.SpringCache2kCache', 'org.cache2k.extra.micrometer.Cache2kCacheMetrics' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.CaffeineCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.caffeine.CaffeineCache', 'com.github.benmanes.caffeine.cache.Cache' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.HazelcastCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'com.hazelcast.spring.cache.HazelcastCache', 'com.hazelcast.core.Hazelcast' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.JCacheCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.springframework.cache.jcache.JCacheCache', 'javax.cache.CacheManager' (OnClassCondition) - - CacheMeterBinderProvidersConfiguration.RedisCacheMeterBinderProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.cache.RedisCache' (OnClassCondition) - - CacheMetricsAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.cache.CacheManager; SearchStrategy: all) did not find any beans of type org.springframework.cache.CacheManager (OnBeanCondition) - - CachesEndpointAutoConfiguration#cachesEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.cache.CachesEndpoint; SearchStrategy: all) found bean 'cachesEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.cache.CachesEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - CaffeineCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) - - CassandraAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - CassandraReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) - - CassandraRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) - - ClientHttpConnectorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnCloudPlatform did not find CLOUD_FOUNDRY (OnCloudPlatformCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) - - found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.cloudfoundry.enabled) matched (OnPropertyCondition) - - CodecsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - CompositeMeterRegistryConfiguration: - Did not match: - - NoneNestedConditions 1 matched 1 did not; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.SingleInjectableMeterRegistry @ConditionalOnSingleCandidate (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found a single bean 'simpleMeterRegistry'; NestedCondition on CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition.NoMeterRegistryCondition @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (CompositeMeterRegistryConfiguration.MultipleNonPrimaryMeterRegistriesCondition) - - ConfigurationPropertiesReportEndpointAutoConfiguration#configurationPropertiesReportEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpoint; SearchStrategy: all) found bean 'configurationPropertiesReportEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.context.properties.ConfigurationPropertiesReportEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ConnectionFactoryHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - ConnectionPoolMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.pool.ConnectionPool' (OnClassCondition) - - CouchbaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - CouchbaseHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) - - CouchbaseRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) - - DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: - Did not match: - - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) - - DataSourceCheckpointRestoreConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) - - DataSourceConfiguration.Dbcp2: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourceConfiguration.Generic: - Did not match: - - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) - - DataSourceConfiguration.OracleUcp: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourceConfiguration.Tomcat: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) - - DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) - - DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found beans of type 'org.springframework.transaction.TransactionManager' transactionManager (OnBeanCondition) - - DatadogMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.datadog.DatadogMeterRegistry' (OnClassCondition) - - DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: - Did not match: - - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) - - DynatraceMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.dynatrace.DynatraceMeterRegistry' (OnClassCondition) - - ElasticMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.elastic.ElasticMeterRegistry' (OnClassCondition) - - ElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) - - ElasticsearchDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) - - ElasticsearchReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) - - ElasticsearchRestClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) - - ElasticsearchRestHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClient' (OnClassCondition) - - EmbeddedLdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - EnvironmentEndpointAutoConfiguration#environmentEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.env.EnvironmentEndpoint; SearchStrategy: all) found bean 'environmentEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.env.EnvironmentEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - ErrorWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - FlywayAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FlywayEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) - - FreeMarkerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) - - GangliaMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.ganglia.GangliaMeterRegistry' (OnClassCondition) - - GraphQlAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlRSocketAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQueryByExampleAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlReactiveQuerydslAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) - - GraphQlWebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebFluxSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphQlWebMvcSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - GraphiteMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.graphite.GraphiteMeterRegistry' (OnClassCondition) - - GroovyTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) - - GsonAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - GsonHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) - - HazelcastAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HazelcastJpaDependencyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) - - HealthEndpointReactiveWebExtensionConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - HealthEndpointWebExtensionConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HibernateMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.hibernate.stat.HibernateMetrics' (OnClassCondition) - - HttpExchangesAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - Matched: - - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) - - @ConditionalOnProperty (management.httpexchanges.recording.enabled) matched (OnPropertyCondition) - - HttpExchangesAutoConfiguration.ReactiveHttpExchangesConfiguration: - Did not match: - - did not find reactive web application classes (OnWebApplicationCondition) - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - - HttpExchangesAutoConfiguration.ServletHttpExchangesConfiguration: - Did not match: - - Ancestor org.springframework.boot.actuate.autoconfigure.web.exchanges.HttpExchangesAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - HttpExchangesEndpointAutoConfiguration#httpExchangesEndpoint: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository; SearchStrategy: all) did not find any beans of type org.springframework.boot.actuate.web.exchanges.HttpExchangeRepository (OnBeanCondition) - - HttpHandlerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - HumioMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.humio.HumioMeterRegistry' (OnClassCondition) - - HypermediaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) - - InfinispanCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) - - InfluxDbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxDbHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) - - InfluxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.influx.InfluxMeterRegistry' (OnClassCondition) - - InfoContributorAutoConfiguration#buildInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.BuildProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#envInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.env.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#gitInfoContributor: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.boot.info.GitProperties; SearchStrategy: all) did not find any beans (OnBeanCondition) - Matched: - - @ConditionalOnEnabledInfoContributor management.info.defaults.enabled is considered true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#javaInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.java.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#osInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.os.enabled is not true (OnEnabledInfoContributorCondition) - - InfoContributorAutoConfiguration#processInfoContributor: - Did not match: - - @ConditionalOnEnabledInfoContributor management.info.process.enabled is not true (OnEnabledInfoContributorCondition) - - IntegrationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) - - IntegrationGraphEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.integration.graph.IntegrationGraphServer' (OnClassCondition) - - JCacheCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) - - JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) - - JdbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) - - JerseyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) - - JerseySameManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JerseyServerMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.micrometer.server.ObservationApplicationEventListener' (OnClassCondition) - - JerseyWebEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - JettyMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.server.Server' (OnClassCondition) - - JmsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) - - JmsHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) - - JmxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.jmx.JmxMeterRegistry' (OnClassCondition) - - JndiConnectionFactoryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) - - JndiDataSourceAutoConfiguration: - Did not match: - - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - JndiJtaConfiguration: - Did not match: - - @ConditionalOnJndi JNDI environment is not available (OnJndiCondition) - Matched: - - @ConditionalOnClass found required class 'org.springframework.transaction.jta.JtaTransactionManager' (OnClassCondition) - - JooqAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) - - JpaRepositoriesAutoConfiguration#entityManagerFactoryBootstrapExecutorCustomizer: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.LazyBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=lazy) did not find property 'bootstrap-mode'; NestedCondition on JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition.DeferredBootstrapMode @ConditionalOnProperty (spring.data.jpa.repositories.bootstrap-mode=deferred) did not find property 'bootstrap-mode' (JpaRepositoriesAutoConfiguration.BootstrapExecutorCondition) - - JsonbAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - JsonbHttpMessageConvertersConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) - - KafkaAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) - - KafkaMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.ProducerFactory' (OnClassCondition) - - KairosMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.kairos.KairosMeterRegistry' (OnClassCondition) - - LdapAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) - - LdapHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.LdapOperations' (OnClassCondition) - - LdapRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) - - LettuceMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.lettuce.core.metrics.MicrometerCommandLatencyRecorder' (OnClassCondition) - - LiquibaseAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) - - LiquibaseEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'liquibase.integration.spring.SpringLiquibase' (OnClassCondition) - - Log4J2MetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.logging.log4j.core.LoggerContext' (OnClassCondition) - - LogFileWebEndpointAutoConfiguration#logFileWebEndpoint: - Did not match: - - Log File did not find logging file (LogFileWebEndpointAutoConfiguration.LogFileCondition) - - MailHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnClassCondition) - - MailSenderAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) - - MailSenderValidatorAutoConfiguration: - Did not match: - - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) - - ManagementContextAutoConfiguration.DifferentManagementContextConfiguration: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - ManagementWebSecurityAutoConfiguration: - Did not match: - - AllNestedConditions 1 matched 1 did not; NestedCondition on DefaultWebSecurityCondition.Beans @ConditionalOnMissingBean (types: org.springframework.security.web.SecurityFilterChain; SearchStrategy: all) did not find any beans; NestedCondition on DefaultWebSecurityCondition.Classes @ConditionalOnClass did not find required classes 'org.springframework.security.web.SecurityFilterChain', 'org.springframework.security.config.annotation.web.builders.HttpSecurity' (DefaultWebSecurityCondition) - Matched: - - found 'session' scope (OnWebApplicationCondition) - - MappingsEndpointAutoConfiguration.ReactiveWebConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - MessageSourceAutoConfiguration: - Did not match: - - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) - - MetricsAspectsAutoConfiguration: - Did not match: - - AnyNestedCondition 0 matched 2 did not; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.ManagementObservationsEnabledCondition @ConditionalOnProperty (management.observations.annotations.enabled=true) did not find property 'enabled'; NestedCondition on MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition.MicrometerObservationsEnabledCondition @ConditionalOnProperty (micrometer.observations.annotations.enabled=true) did not find property 'enabled' (MetricsAspectsAutoConfiguration.ObservationAnnotationsEnabledCondition) - Matched: - - @ConditionalOnClass found required classes 'io.micrometer.core.instrument.MeterRegistry', 'org.aspectj.weaver.Advice' (OnClassCondition) - - MicrometerTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - MongoAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MongoHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.mongodb.core.MongoTemplate' (OnClassCondition) - - MongoMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) - - MongoReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - MongoReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) - - MongoRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) - - MustacheAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) - - Neo4jAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jReactiveRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - Neo4jRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) - - NettyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.util.NettyRuntime' (OnClassCondition) - - NewRelicMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.newrelic.NewRelicMeterRegistry' (OnClassCondition) - - NoOpMeterRegistryConfiguration: - Did not match: - - @ConditionalOnMissingBean (types: io.micrometer.core.instrument.MeterRegistry; SearchStrategy: all) found beans of type 'io.micrometer.core.instrument.MeterRegistry' simpleMeterRegistry (OnBeanCondition) - - NoopTracerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - OAuth2AuthorizationServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2AuthorizationServerJwtAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) - - OAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) - - OAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) - - ObservationAutoConfiguration.MeterObservationHandlerConfiguration.TracingAndMetricsObservationHandlerConfiguration: - Did not match: - - @ConditionalOnBean did not find required type 'io.micrometer.tracing.Tracer' (OnBeanCondition) - - @ConditionalOnBean (types: io.micrometer.tracing.Tracer; SearchStrategy: all) did not find any beans of type io.micrometer.tracing.Tracer (OnBeanCondition) - - ObservationAutoConfiguration.MetricsWithTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - ObservationAutoConfiguration.OnlyTracingConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.opentelemetry.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.opentelemetry.sdk.OpenTelemetrySdk' (OnClassCondition) - - org.springframework.boot.actuate.autoconfigure.tracing.OpenTelemetryAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.otel.bridge.OtelTracer' (OnClassCondition) - - OtlpMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.registry.otlp.OtlpMeterRegistry' (OnClassCondition) - - ProjectInfoAutoConfiguration#buildProperties: - Did not match: - - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) - - ProjectInfoAutoConfiguration#gitProperties: - Did not match: - - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) - - PrometheusExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheusmetrics.PrometheusMeterRegistry' (OnClassCondition) - - PrometheusSimpleclientExemplarsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.tracing.Tracer' (OnClassCondition) - - PrometheusSimpleclientMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.prometheus.PrometheusMeterRegistry' (OnClassCondition) - - PulsarAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - PulsarReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) - - QuartzAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - QuartzEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) - - R2dbcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcDataAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) - - R2dbcInitializationConfiguration: - Did not match: - - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) - - R2dbcObservationAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.proxy.ProxyConnectionFactory' (OnClassCondition) - - R2dbcRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) - - R2dbcTransactionManagerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) - - RSocketGraphQlClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) - - RSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketRequesterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) - - RSocketSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) - - RSocketServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) - - RSocketStrategiesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) - - RabbitAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) - - RabbitHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.amqp.rabbit.core.RabbitTemplate' (OnClassCondition) - - RabbitMetricsAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.rabbitmq.client.ConnectionFactory' (OnClassCondition) - - ReactiveCloudFoundryActuatorAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactiveElasticsearchClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) - - ReactiveElasticsearchRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) - - ReactiveHealthEndpointConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementContextAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveManagementWebSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveMultipartAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - ReactiveOAuth2ClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveOAuth2ResourceServerAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) - - ReactiveSecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - ReactiveUserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) - - ReactiveWebServerFactoryAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - ReactorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Hooks' (OnClassCondition) - - RedisAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) - - RedisCacheConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) - - RedisReactiveAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisReactiveHealthContributorAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) - - RedisRepositoriesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) - - RepositoryRestMvcAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) - - Saml2RelyingPartyAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) - - SbomEndpointAutoConfiguration#sbomEndpointWebExtension: - Did not match: - - @ConditionalOnAvailableEndpoint no 'management.endpoints' property marked it as exposed (OnAvailableEndpointCondition) - Matched: - - @ConditionalOnBean (types: org.springframework.boot.actuate.sbom.SbomEndpoint; SearchStrategy: all) found bean 'sbomEndpoint'; @ConditionalOnMissingBean (types: org.springframework.boot.actuate.sbom.SbomEndpointWebExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) - - SecurityAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) - - SecurityFilterAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) - - SecurityRequestMatchersManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.web.util.matcher.RequestMatcher' (OnClassCondition) - - SendGridAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) - - ServletEndpointManagementContextConfiguration.JerseyServletEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.ResourceConfig' (OnClassCondition) - - ServletManagementContextAutoConfiguration.ApplicationContextFilterConfiguration: - Did not match: - - @ConditionalOnProperty (management.server.add-application-context-header=true) did not find property 'add-application-context-header' (OnPropertyCondition) - - ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: - Did not match: - - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) - - ServletWebServerFactoryConfiguration.EmbeddedJetty: - Did not match: - - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) - - ServletWebServerFactoryConfiguration.EmbeddedUndertow: - Did not match: - - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) - - SessionAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - SessionsEndpointAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) - - ShutdownEndpointAutoConfiguration: - Did not match: - - @ConditionalOnAvailableEndpoint no property management.endpoint.shutdown.enabled found so using endpoint default of false (OnAvailableEndpointCondition) - - SignalFxMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.signalfx.SignalFxMeterRegistry' (OnClassCondition) - - StackdriverMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.stackdriver.StackdriverMeterRegistry' (OnClassCondition) - - StartupEndpointAutoConfiguration: - Did not match: - - ApplicationStartup configured applicationStartup is of type class org.springframework.core.metrics.DefaultApplicationStartup, expected BufferingApplicationStartup. (StartupEndpointAutoConfiguration.ApplicationStartupCondition) - - StatsdMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.micrometer.statsd.StatsdMeterRegistry' (OnClassCondition) - - TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) - - TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: - Did not match: - - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) - - TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) - - TaskSchedulingConfigurations.TaskSchedulerConfiguration: - Did not match: - - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) - - ThymeleafAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) - - TransactionAutoConfiguration#transactionalOperator: - Did not match: - - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) - - TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) - - TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: - Did not match: - - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) - - UserDetailsServiceAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) - - WavefrontAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.application.ApplicationTags' (OnClassCondition) - - WavefrontMetricsExportAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WavefrontTracingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'com.wavefront.sdk.common.WavefrontSender' (OnClassCondition) - - WebClientAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebClientObservationConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) - - WebFluxAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) - - WebFluxEndpointManagementContextConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) - - WebFluxObservationAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebMvcAutoConfiguration#hiddenHttpMethodFilter: - Did not match: - - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: - Did not match: - - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) - - WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: - Did not match: - - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) - - WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: - Did not match: - - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) - - WebMvcEndpointManagementContextConfiguration#managementHealthEndpointWebMvcHandlerMapping: - Did not match: - - Management Port actual port type (SAME) did not match required type (DIFFERENT) (OnManagementPortCondition) - - WebServiceTemplateAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) - - WebServicesAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) - - WebSessionIdResolverAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'reactor.core.publisher.Mono' (OnClassCondition) - - WebSocketMessagingAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) - - WebSocketReactiveAutoConfiguration: - Did not match: - - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) - - WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) - - WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) - - XADataSourceAutoConfiguration: - Did not match: - - @ConditionalOnBean (types: org.springframework.boot.jdbc.XADataSourceWrapper; SearchStrategy: all) did not find any beans of type org.springframework.boot.jdbc.XADataSourceWrapper (OnBeanCondition) - Matched: - - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'jakarta.transaction.TransactionManager', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) - - ZipkinAutoConfiguration: - Did not match: - - @ConditionalOnClass did not find required class 'zipkin2.reporter.Encoding' (OnClassCondition) - - -Exclusions: ------------ - - None - - -Unconditional classes: ----------------------- - - org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.availability.AvailabilityHealthContributorAutoConfiguration - - org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration - - org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration - - org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.metrics.integration.IntegrationMetricsAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.health.HealthContributorAutoConfiguration - - org.springframework.boot.actuate.autoconfigure.endpoint.jackson.JacksonEndpointAutoConfiguration - - org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration - - org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration - - - -2024-08-08 21:33:54 - Started HaengdongApplication in 2.416 seconds (process running for 2.698) -2024-08-08 21:33:54 - Application availability state LivenessState changed to CORRECT -2024-08-08 21:33:54 - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 84 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:54 - RMI TCP Connection(1)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - [javax.management.remote.rmi.RMIConnectionImpl@2dae4e97: connectionId=rmi://127.0.0.1 4] closing. -2024-08-08 21:33:54 - [javax.management.remote.rmi.RMIConnectionImpl@2dae4e97: connectionId=rmi://127.0.0.1 4] closed. -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:62257] -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:62258] -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 84 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 84 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - [javax.management.remote.rmi.RMIConnectionImpl@4cfe17f0: connectionId=rmi://127.0.0.1 5] closing. -2024-08-08 21:33:54 - [javax.management.remote.rmi.RMIConnectionImpl@4cfe17f0: connectionId=rmi://127.0.0.1 5] closed. -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 84 -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 6 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - [javax.management.remote.rmi.RMIConnectionImpl@4f0f0c84: connectionId=rmi://127.0.0.1 6] closing. -2024-08-08 21:33:54 - [javax.management.remote.rmi.RMIConnectionImpl@4f0f0c84: connectionId=rmi://127.0.0.1 6] closed. -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 7 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 84 -2024-08-08 21:33:54 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - [javax.management.remote.rmi.RMIConnectionImpl@69e9d734: connectionId=rmi://127.0.0.1 7] closing. -2024-08-08 21:33:54 - [javax.management.remote.rmi.RMIConnectionImpl@69e9d734: connectionId=rmi://127.0.0.1 7] closed. -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 8 unwrapping query with defaultClassLoader. -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans,*, query=java.rmi.MarshalledObject@d -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 8 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:54 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:54 - connectionId=rmi://127.0.0.1 8, name=org.springframework.boot:type=Endpoint,name=Beans, operationName=beans, signature=[] -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - [javax.management.remote.rmi.RMIConnectionImpl@6cbdd8aa: connectionId=rmi://127.0.0.1 8] closing. -2024-08-08 21:33:55 - [javax.management.remote.rmi.RMIConnectionImpl@6cbdd8aa: connectionId=rmi://127.0.0.1 8] closed. -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 84 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 84 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 9 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 9, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - [javax.management.remote.rmi.RMIConnectionImpl@6f6e6e0b: connectionId=rmi://127.0.0.1 9] closing. -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:55 - [javax.management.remote.rmi.RMIConnectionImpl@6f6e6e0b: connectionId=rmi://127.0.0.1 9] closed. -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 10 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 10, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - [javax.management.remote.rmi.RMIConnectionImpl@7fe5ba8a: connectionId=rmi://127.0.0.1 10] closing. -2024-08-08 21:33:55 - [javax.management.remote.rmi.RMIConnectionImpl@7fe5ba8a: connectionId=rmi://127.0.0.1 10] closed. -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 84 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 84 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 11 unwrapping query with defaultClassLoader. -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings,*, query=java.rmi.MarshalledObject@d -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 12 unwrapping query with defaultClassLoader. -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health,*, query=java.rmi.MarshalledObject@d -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "" -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 11 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 12 unwrapping params with MBean extended ClassLoader. -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 11, name=org.springframework.boot:type=Endpoint,name=Mappings, operationName=mappings, signature=[] -2024-08-08 21:33:55 - connectionId=rmi://127.0.0.1 12, name=org.springframework.boot:type=Endpoint,name=Health, operationName=health, signature=[] -2024-08-08 21:33:55 - Fetching JDBC Connection from DataSource -2024-08-08 21:33:55 - Initializing Spring DispatcherServlet 'dispatcherServlet' -2024-08-08 21:33:55 - Initializing Servlet 'dispatcherServlet' -2024-08-08 21:33:55 - Detected StandardServletMultipartResolver -2024-08-08 21:33:55 - Detected AcceptHeaderLocaleResolver -2024-08-08 21:33:55 - Detected FixedThemeResolver -2024-08-08 21:33:55 - Fetching JDBC Connection from DataSource -2024-08-08 21:33:55 - Detected org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@71e064b2 -2024-08-08 21:33:55 - Detected org.springframework.web.servlet.support.SessionFlashMapManager@3c0a4c8b -2024-08-08 21:33:55 - enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data -2024-08-08 21:33:55 - Completed initialization in 1 ms -2024-08-08 21:33:55 - RMI TCP Connection(3)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - [javax.management.remote.rmi.RMIConnectionImpl@4164ff13: connectionId=rmi://127.0.0.1 12] closing. -2024-08-08 21:33:55 - [javax.management.remote.rmi.RMIConnectionImpl@4164ff13: connectionId=rmi://127.0.0.1 12] closed. -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 82 -2024-08-08 21:33:55 - RMI TCP Connection(2)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:33:55 - [javax.management.remote.rmi.RMIConnectionImpl@1a1f8199: connectionId=rmi://127.0.0.1 11] closing. -2024-08-08 21:33:55 - [javax.management.remote.rmi.RMIConnectionImpl@1a1f8199: connectionId=rmi://127.0.0.1 11] closed. -2024-08-08 21:34:23 - RMI TCP Connection(1)-127.0.0.1: (port 62255) connection closed -2024-08-08 21:34:23 - RMI TCP Connection(3)-127.0.0.1: (port 62255) connection closed -2024-08-08 21:34:23 - RMI TCP Connection(2)-127.0.0.1: (port 62255) connection closed -2024-08-08 21:34:23 - RMI TCP Connection(1)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=62256,localport=62255] -2024-08-08 21:34:23 - RMI TCP Connection(2)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=62257,localport=62255] -2024-08-08 21:34:23 - RMI TCP Connection(3)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=62258,localport=62255] -2024-08-08 21:34:23 - RMI TCP Connection(1)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=62256,localport=62255] -2024-08-08 21:34:23 - RMI TCP Connection(2)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=62257,localport=62255] -2024-08-08 21:34:23 - RMI TCP Connection(3)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=62258,localport=62255] -2024-08-08 21:34:23 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:34:23 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:34:29 - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:62335] -2024-08-08 21:34:29 - RMI TCP Connection(4)-127.0.0.1: (port 62255) op = 80 -2024-08-08 21:34:29 - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:34:29 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:34:29 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:34:29 - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:34:29 - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@13f40d71 -2024-08-08 21:34:44 - RMI TCP Connection(4)-127.0.0.1: (port 62255) connection closed -2024-08-08 21:34:44 - RMI TCP Connection(4)-127.0.0.1: close connection, socket: Socket[addr=/127.0.0.1,port=62335,localport=62255] -2024-08-08 21:34:44 - RMI TCP Connection(4)-127.0.0.1: socket close: Socket[addr=/127.0.0.1,port=62335,localport=62255] -2024-08-08 21:34:53 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:34:53 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:35:23 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:35:23 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:35:35 - Loading persistent provider registrations from [/private/var/folders/vh/87kd_wbd7fx9r9_7sljyx2m40000gn/T/tomcat.8080.10399445426572422873/conf/jaspic-providers.xml] -2024-08-08 21:35:35 - GET "/", parameters={} -2024-08-08 21:35:35 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 21:35:35 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 21:35:35 - Resource not found -2024-08-08 21:35:35 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 21:35:35 - Using 'application/json;q=0.8', given [text/html, application/xhtml+xml, image/avif, image/webp, image/apng, application/xml;q=0.9, */*;q=0.8, application/signed-exchange;v=b3;q=0.7] and supported [application/json, application/*+json] -2024-08-08 21:35:35 - Writing [ErrorResponse[errorCode=NO_RESOURCE_REQUEST, message=존재하지 않는 자원입니다.]] -2024-08-08 21:35:35 - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource .] -2024-08-08 21:35:35 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 21:35:35 - Completed 400 BAD_REQUEST -2024-08-08 21:35:35 - GET "/favicon.ico", parameters={} -2024-08-08 21:35:35 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 21:35:35 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 21:35:35 - Resource not found -2024-08-08 21:35:35 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 21:35:35 - Using 'application/json;q=0.8', given [image/avif, image/webp, image/apng, image/svg+xml, image/*, */*;q=0.8] and supported [application/json, application/*+json] -2024-08-08 21:35:35 - Writing [ErrorResponse[errorCode=NO_RESOURCE_REQUEST, message=존재하지 않는 자원입니다.]] -2024-08-08 21:35:35 - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource favicon.ico.] -2024-08-08 21:35:35 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 21:35:35 - Completed 400 BAD_REQUEST -2024-08-08 21:35:39 - GET "/docs/index.html", parameters={} -2024-08-08 21:35:39 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 21:35:39 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 21:35:39 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 21:35:39 - Completed 200 OK -2024-08-08 21:35:39 - GET "/favicon.ico", parameters={} -2024-08-08 21:35:39 - Mapped to ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]] -2024-08-08 21:35:39 - Opening JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 21:35:39 - Resource not found -2024-08-08 21:35:39 - Using @ExceptionHandler server.haengdong.exception.GlobalExceptionHandler#noResourceException() -2024-08-08 21:35:39 - Using 'application/json;q=0.8', given [image/avif, image/webp, image/apng, image/svg+xml, image/*, */*;q=0.8] and supported [application/json, application/*+json] -2024-08-08 21:35:39 - Writing [ErrorResponse[errorCode=NO_RESOURCE_REQUEST, message=존재하지 않는 자원입니다.]] -2024-08-08 21:35:39 - Resolved [org.springframework.web.servlet.resource.NoResourceFoundException: No static resource favicon.ico.] -2024-08-08 21:35:39 - Closing JPA EntityManager in OpenEntityManagerInViewInterceptor -2024-08-08 21:35:39 - Completed 400 BAD_REQUEST -2024-08-08 21:35:40 - Error parsing HTTP request header -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 21:35:40 - Error state [CLOSE_CONNECTION_NOW] reported while processing request -java.io.EOFException: null - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillReadBuffer(NioEndpoint.java:1293) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.read(NioEndpoint.java:1181) - at org.apache.coyote.http11.Http11InputBuffer.fill(Http11InputBuffer.java:789) - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:348) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:262) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:840) -2024-08-08 21:35:53 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:35:53 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:36:23 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:36:23 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:36:53 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:36:53 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:37:23 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:37:23 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:37:53 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:37:53 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:38:23 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:38:23 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:38:53 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:38:53 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:39:23 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:39:23 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:39:53 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:39:53 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:40:23 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:40:23 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:40:53 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:40:53 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:41:23 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:41:23 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:41:53 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:41:53 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:42:23 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:42:23 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:42:53 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:42:53 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:43:23 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:43:23 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:43:53 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:43:53 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:44:23 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:44:23 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:44:53 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:44:53 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:45:23 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:45:23 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:45:53 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:45:53 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:46:23 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:46:23 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:53:08 - HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=6m44s526ms). -2024-08-08 21:53:08 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:53:08 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:53:38 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:53:38 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:54:08 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:54:08 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:54:38 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:54:38 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:55:07 - RMI Scheduler(0): 9660526616e7737f:-29ce0fd3:19131fb38bd:-7fff -2024-08-08 21:55:08 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:55:08 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:55:38 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:55:38 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:56:08 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:56:08 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:56:38 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:56:38 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:57:08 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:57:08 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:57:38 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:57:38 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:58:08 - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:58:08 - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. -2024-08-08 21:58:37 - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC -2024-08-08 21:58:37 - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@4c6daf0, started on Thu Aug 08 21:33:52 KST 2024 -2024-08-08 21:58:37 - Stopping beans in phase 2147483647 -2024-08-08 21:58:37 - Bean 'applicationTaskExecutor' completed its stop procedure -2024-08-08 21:58:37 - Stopping beans in phase 2147482623 -2024-08-08 21:58:37 - Bean 'webServerGracefulShutdown' completed its stop procedure -2024-08-08 21:58:37 - Stopping beans in phase 2147481599 -2024-08-08 21:58:37 - Bean 'webServerStartStop' completed its stop procedure -2024-08-08 21:58:37 - Stopping beans in phase -2147483647 -2024-08-08 21:58:37 - Bean 'springBootLoggingLifecycle' completed its stop procedure -2024-08-08 21:58:37 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Beans' from the JMX domain -2024-08-08 21:58:37 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Caches' from the JMX domain -2024-08-08 21:58:37 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Health' from the JMX domain -2024-08-08 21:58:37 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Info' from the JMX domain -2024-08-08 21:58:37 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Conditions' from the JMX domain -2024-08-08 21:58:37 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Configprops' from the JMX domain -2024-08-08 21:58:37 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Env' from the JMX domain -2024-08-08 21:58:37 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Loggers' from the JMX domain -2024-08-08 21:58:37 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Threaddump' from the JMX domain -2024-08-08 21:58:37 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Metrics' from the JMX domain -2024-08-08 21:58:37 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Sbom' from the JMX domain -2024-08-08 21:58:37 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Scheduledtasks' from the JMX domain -2024-08-08 21:58:37 - Unregister endpoint with ObjectName 'org.springframework.boot:type=Endpoint,name=Mappings' from the JMX domain -2024-08-08 21:58:37 - Unregistering JMX-exposed beans on shutdown -2024-08-08 21:58:37 - Unregistering JMX-exposed beans -2024-08-08 21:58:37 - Shutting down ExecutorService 'applicationTaskExecutor' -2024-08-08 21:58:37 - Closing JPA EntityManagerFactory for persistence unit 'default' -2024-08-08 21:58:37 - HHH000031: Closing -2024-08-08 21:58:37 - Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@43ab5f31] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@55e02661] -2024-08-08 21:58:37 - Implicitly destroying ServiceRegistry on de-registration of all child ServiceRegistries -2024-08-08 21:58:37 - Implicitly destroying Boot-strap registry on de-registration of all child ServiceRegistries -2024-08-08 21:58:37 - HikariPool-1 - Shutdown initiated... -2024-08-08 21:58:37 - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) -2024-08-08 21:58:37 - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 21:58:37 - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 21:58:37 - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 21:58:37 - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 21:58:37 - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 21:58:37 - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 21:58:37 - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 21:58:37 - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 21:58:37 - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 21:58:37 - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:database user=SA: (connection evicted) -2024-08-08 21:58:37 - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) -2024-08-08 21:58:37 - HikariPool-1 - Shutdown completed. -2024-08-08 21:58:37 - Custom destroy method 'close' on bean with name 'simpleMeterRegistry' completed diff --git a/server/Dockerfile b/server/Dockerfile deleted file mode 100644 index df2cf44e0..000000000 --- a/server/Dockerfile +++ /dev/null @@ -1,9 +0,0 @@ -FROM openjdk:17-jdk-slim - -WORKDIR /app - -COPY /build/libs/*.jar /app/haengdong-0.0.1-SNAPSHOT.jar - -EXPOSE 8080 -ENTRYPOINT ["java"] -CMD ["-Dspring.profiles.active=${SPRING_PROFILES_ACTIVE}", "-Duser.timezone=Asia/Seoul", "-jar", "haengdong-0.0.1-SNAPSHOT.jar"] diff --git a/server/build.gradle b/server/build.gradle deleted file mode 100644 index e28f5d7de..000000000 --- a/server/build.gradle +++ /dev/null @@ -1,89 +0,0 @@ -plugins { - id 'java' - id 'org.springframework.boot' version '3.3.1' - id 'io.spring.dependency-management' version '1.1.5' - id 'org.asciidoctor.jvm.convert' version '3.3.2' -} - -group = 'server' -version = '0.0.1-SNAPSHOT' - -java { - toolchain { - languageVersion = JavaLanguageVersion.of(17) - } -} - -configurations { - compileOnly { - extendsFrom annotationProcessor - } - asciidoctorExt -} - -repositories { - mavenCentral() -} - -dependencies { - implementation 'org.springframework.boot:spring-boot-starter-data-jpa' - implementation 'org.springframework.boot:spring-boot-starter-web' - implementation 'org.springframework.boot:spring-boot-starter-validation' - implementation 'org.springframework.boot:spring-boot-starter-actuator' - - implementation 'io.jsonwebtoken:jjwt:0.9.1' - implementation 'javax.xml.bind:jaxb-api:2.3.1' - - compileOnly 'org.projectlombok:lombok' - annotationProcessor 'org.projectlombok:lombok' - annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor' - - runtimeOnly 'com.h2database:h2' - runtimeOnly 'com.mysql:mysql-connector-j' - - implementation 'software.amazon.awssdk:s3:2.25.27' - - testImplementation 'org.springframework.boot:spring-boot-starter-test' - testRuntimeOnly 'org.junit.platform:junit-platform-launcher' - - asciidoctorExt 'org.springframework.restdocs:spring-restdocs-asciidoctor' - testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc' -} - -ext { - snippetsDir = file('build/generated-snippets') -} - -test { - useJUnitPlatform() - outputs.dir snippetsDir -} - -asciidoctor { - inputs.dir snippetsDir - configurations 'asciidoctorExt' - baseDirFollowsSourceFile() - dependsOn test -} - -tasks.resolveMainClassName { - dependsOn 'copyApiDocuments' -} - -tasks.register('copyApiDocuments', Copy) { - dependsOn asciidoctor - from file("build/docs/asciidoc") - into file("build/resources/main/static/docs") -} - -bootJar { - dependsOn copyApiDocuments -} - -jar { - enabled = false -} - -build { - dependsOn copyApiDocuments -} diff --git a/server/docs/24-08-04-erd.sql b/server/docs/24-08-04-erd.sql deleted file mode 100644 index ae2fbc4a5..000000000 --- a/server/docs/24-08-04-erd.sql +++ /dev/null @@ -1,65 +0,0 @@ --- Create tables -CREATE TABLE action -( - event_id BIGINT, - id BIGINT AUTO_INCREMENT, - sequence BIGINT, - PRIMARY KEY (id) -); - -CREATE TABLE bill_action -( - action_id BIGINT UNIQUE, - id BIGINT AUTO_INCREMENT, - price BIGINT, - title VARCHAR(30), - PRIMARY KEY (id) -); - -CREATE TABLE event -( - id BIGINT AUTO_INCREMENT, - name VARCHAR(255), - token VARCHAR(255), - PRIMARY KEY (id) -); - -CREATE TABLE event_step -( - event_id BIGINT, - id BIGINT AUTO_INCREMENT, - sequence BIGINT, - name VARCHAR(255), - PRIMARY KEY (id) -); - -CREATE TABLE member_action -( - action_id BIGINT UNIQUE, - id BIGINT AUTO_INCREMENT, - member_group_id BIGINT, - member_name VARCHAR(255), - status ENUM('IN', 'OUT'), - PRIMARY KEY (id) -); - --- Add foreign key constraints -ALTER TABLE action - ADD CONSTRAINT FKgf0qmub9va1xbe44nehny31yw - FOREIGN KEY (event_id) - REFERENCES event (id); - -ALTER TABLE bill_action - ADD CONSTRAINT FK54tx517tp0ry6453olkply4us - FOREIGN KEY (action_id) - REFERENCES action (id); - -ALTER TABLE event_step - ADD CONSTRAINT FKe3rkib91cvl0x5w9wqkshmn81 - FOREIGN KEY (event_id) - REFERENCES event (id); - -ALTER TABLE member_action - ADD CONSTRAINT FK5jna51dn8fs2ir52l4uwn517u - FOREIGN KEY (action_id) - REFERENCES action (id); diff --git a/server/docs/24-08-04-erd.svg b/server/docs/24-08-04-erd.svg deleted file mode 100644 index 5a4bac225..000000000 --- a/server/docs/24-08-04-erd.svg +++ /dev/null @@ -1,4 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- Do not edit this file with editors other than draw.io --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="1993px" height="1581px" viewBox="-0.5 -0.5 1993 1581" content="<mxfile host="app.diagrams.net" modified="2024-07-25T04:17:06.208Z" agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36" etag="gR5VLfYLO6MRu5dHcV28" version="24.7.3" type="github"> <diagram id="C5RBs43oDa-KdzZeNtuy" name="Page-1"> <mxGraphModel dx="2380" dy="2150" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0"> <root> <mxCell id="WIyWlLk6GJQsqaUBKTNV-0" /> <mxCell id="WIyWlLk6GJQsqaUBKTNV-1" parent="WIyWlLk6GJQsqaUBKTNV-0" /> <mxCell id="8gZzuRhjrYuwNxX9kY4q-98" value="" style="rounded=0;whiteSpace=wrap;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1"> <mxGeometry x="-442" y="-590" width="1992" height="1580" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-47" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;startArrow=ERone;startFill=0;endArrow=ERzeroToMany;endFill=0;dashed=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="8gZzuRhjrYuwNxX9kY4q-0" target="8gZzuRhjrYuwNxX9kY4q-37" edge="1"> <mxGeometry relative="1" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-66" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;startArrow=ERone;startFill=0;endArrow=ERzeroToMany;endFill=0;dashed=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="8gZzuRhjrYuwNxX9kY4q-0" target="8gZzuRhjrYuwNxX9kY4q-56" edge="1"> <mxGeometry relative="1" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-0" value="Event" style="shape=table;startSize=30;container=1;collapsible=1;childLayout=tableLayout;fixedRows=1;rowLines=0;fontStyle=1;align=center;resizeLast=1;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1"> <mxGeometry x="40" y="40" width="280" height="120" as="geometry"> <mxRectangle x="480" y="530" width="70" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-1" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=1;" parent="8gZzuRhjrYuwNxX9kY4q-0" vertex="1"> <mxGeometry y="30" width="280" height="30" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-2" value="PK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;fontStyle=1;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-1" vertex="1"> <mxGeometry width="30" height="30" as="geometry"> <mxRectangle width="30" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-3" value="event_id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;fontStyle=5;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-1" vertex="1"> <mxGeometry x="30" width="120" height="30" as="geometry"> <mxRectangle width="120" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-137" value="bigint" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;fontStyle=5;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-1" vertex="1"> <mxGeometry x="150" width="130" height="30" as="geometry"> <mxRectangle width="130" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-7" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;" parent="8gZzuRhjrYuwNxX9kY4q-0" vertex="1"> <mxGeometry y="60" width="280" height="30" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-8" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-7" vertex="1"> <mxGeometry width="30" height="30" as="geometry"> <mxRectangle width="30" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-9" value="token" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-7" vertex="1"> <mxGeometry x="30" width="120" height="30" as="geometry"> <mxRectangle width="120" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-138" value="varchar(20)" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-7" vertex="1"> <mxGeometry x="150" width="130" height="30" as="geometry"> <mxRectangle width="130" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-4" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;" parent="8gZzuRhjrYuwNxX9kY4q-0" vertex="1"> <mxGeometry y="90" width="280" height="30" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-5" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-4" vertex="1"> <mxGeometry width="30" height="30" as="geometry"> <mxRectangle width="30" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-6" value="name" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-4" vertex="1"> <mxGeometry x="30" width="120" height="30" as="geometry"> <mxRectangle width="120" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-139" value="varchar(255)" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-4" vertex="1"> <mxGeometry x="150" width="130" height="30" as="geometry"> <mxRectangle width="130" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-37" value="Event_Step" style="shape=table;startSize=30;container=1;collapsible=1;childLayout=tableLayout;fixedRows=1;rowLines=0;fontStyle=1;align=center;resizeLast=1;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1"> <mxGeometry x="40" y="240" width="280" height="150" as="geometry"> <mxRectangle x="480" y="530" width="70" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-38" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=1;" parent="8gZzuRhjrYuwNxX9kY4q-37" vertex="1"> <mxGeometry y="30" width="280" height="30" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-39" value="PK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;fontStyle=1;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-38" vertex="1"> <mxGeometry width="30" height="30" as="geometry"> <mxRectangle width="30" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-40" value="event_step_id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;fontStyle=5;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-38" vertex="1"> <mxGeometry x="30" width="120" height="30" as="geometry"> <mxRectangle width="120" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-143" value="bigint" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;fontStyle=5;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-38" vertex="1"> <mxGeometry x="150" width="130" height="30" as="geometry"> <mxRectangle width="130" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-41" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;" parent="8gZzuRhjrYuwNxX9kY4q-37" vertex="1"> <mxGeometry y="60" width="280" height="30" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-42" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-41" vertex="1"> <mxGeometry width="30" height="30" as="geometry"> <mxRectangle width="30" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-43" value="name" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-41" vertex="1"> <mxGeometry x="30" width="120" height="30" as="geometry"> <mxRectangle width="120" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-144" value="varchar(30)" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-41" vertex="1"> <mxGeometry x="150" width="130" height="30" as="geometry"> <mxRectangle width="130" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-44" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;" parent="8gZzuRhjrYuwNxX9kY4q-37" vertex="1"> <mxGeometry y="90" width="280" height="30" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-45" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-44" vertex="1"> <mxGeometry width="30" height="30" as="geometry"> <mxRectangle width="30" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-46" value="sequence" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-44" vertex="1"> <mxGeometry x="30" width="120" height="30" as="geometry"> <mxRectangle width="120" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-145" value="bigint" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-44" vertex="1"> <mxGeometry x="150" width="130" height="30" as="geometry"> <mxRectangle width="130" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-48" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;" parent="8gZzuRhjrYuwNxX9kY4q-37" vertex="1"> <mxGeometry y="120" width="280" height="30" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-49" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-48" vertex="1"> <mxGeometry width="30" height="30" as="geometry"> <mxRectangle width="30" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-50" value="event_id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-48" vertex="1"> <mxGeometry x="30" width="120" height="30" as="geometry"> <mxRectangle width="120" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-146" value="bigint" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-48" vertex="1"> <mxGeometry x="150" width="130" height="30" as="geometry"> <mxRectangle width="130" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-77" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;dashed=1;startArrow=ERone;startFill=0;endArrow=ERone;endFill=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="8gZzuRhjrYuwNxX9kY4q-56" target="8gZzuRhjrYuwNxX9kY4q-67" edge="1"> <mxGeometry relative="1" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-91" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;dashed=1;startArrow=ERone;startFill=0;endArrow=ERone;endFill=0;" parent="WIyWlLk6GJQsqaUBKTNV-1" source="8gZzuRhjrYuwNxX9kY4q-56" target="8gZzuRhjrYuwNxX9kY4q-81" edge="1"> <mxGeometry relative="1" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-56" value="Action" style="shape=table;startSize=30;container=1;collapsible=1;childLayout=tableLayout;fixedRows=1;rowLines=0;fontStyle=1;align=center;resizeLast=1;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1"> <mxGeometry x="414" y="40" width="280" height="120" as="geometry"> <mxRectangle x="480" y="530" width="70" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-57" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=1;" parent="8gZzuRhjrYuwNxX9kY4q-56" vertex="1"> <mxGeometry y="30" width="280" height="30" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-58" value="PK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;fontStyle=1;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-57" vertex="1"> <mxGeometry width="30" height="30" as="geometry"> <mxRectangle width="30" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-59" value="action_id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;fontStyle=5;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-57" vertex="1"> <mxGeometry x="30" width="120" height="30" as="geometry"> <mxRectangle width="120" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-140" value="bigint" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;fontStyle=5;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-57" vertex="1"> <mxGeometry x="150" width="130" height="30" as="geometry"> <mxRectangle width="130" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-60" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;" parent="8gZzuRhjrYuwNxX9kY4q-56" vertex="1"> <mxGeometry y="60" width="280" height="30" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-61" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-60" vertex="1"> <mxGeometry width="30" height="30" as="geometry"> <mxRectangle width="30" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-62" value="sequence" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-60" vertex="1"> <mxGeometry x="30" width="120" height="30" as="geometry"> <mxRectangle width="120" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-141" value="bigint" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-60" vertex="1"> <mxGeometry x="150" width="130" height="30" as="geometry"> <mxRectangle width="130" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-63" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;" parent="8gZzuRhjrYuwNxX9kY4q-56" vertex="1"> <mxGeometry y="90" width="280" height="30" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-64" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-63" vertex="1"> <mxGeometry width="30" height="30" as="geometry"> <mxRectangle width="30" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-65" value="event_id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-63" vertex="1"> <mxGeometry x="30" width="120" height="30" as="geometry"> <mxRectangle width="120" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-142" value="bigint" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-63" vertex="1"> <mxGeometry x="150" width="130" height="30" as="geometry"> <mxRectangle width="130" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-67" value="Bill_Action" style="shape=table;startSize=30;container=1;collapsible=1;childLayout=tableLayout;fixedRows=1;rowLines=0;fontStyle=1;align=center;resizeLast=1;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1"> <mxGeometry x="414" y="240" width="280" height="150" as="geometry"> <mxRectangle x="480" y="530" width="70" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-68" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=1;" parent="8gZzuRhjrYuwNxX9kY4q-67" vertex="1"> <mxGeometry y="30" width="280" height="30" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-69" value="PK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;fontStyle=1;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-68" vertex="1"> <mxGeometry width="30" height="30" as="geometry"> <mxRectangle width="30" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-70" value="bill_action_id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;fontStyle=5;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-68" vertex="1"> <mxGeometry x="30" width="120" height="30" as="geometry"> <mxRectangle width="120" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-147" value="bigint" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;fontStyle=5;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-68" vertex="1"> <mxGeometry x="150" width="130" height="30" as="geometry"> <mxRectangle width="130" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-71" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;" parent="8gZzuRhjrYuwNxX9kY4q-67" vertex="1"> <mxGeometry y="60" width="280" height="30" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-72" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-71" vertex="1"> <mxGeometry width="30" height="30" as="geometry"> <mxRectangle width="30" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-73" value="title" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-71" vertex="1"> <mxGeometry x="30" width="120" height="30" as="geometry"> <mxRectangle width="120" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-148" value="varchar(30)" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-71" vertex="1"> <mxGeometry x="150" width="130" height="30" as="geometry"> <mxRectangle width="130" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-78" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;" parent="8gZzuRhjrYuwNxX9kY4q-67" vertex="1"> <mxGeometry y="90" width="280" height="30" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-79" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-78" vertex="1"> <mxGeometry width="30" height="30" as="geometry"> <mxRectangle width="30" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-80" value="price" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-78" vertex="1"> <mxGeometry x="30" width="120" height="30" as="geometry"> <mxRectangle width="120" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-149" value="bigint" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-78" vertex="1"> <mxGeometry x="150" width="130" height="30" as="geometry"> <mxRectangle width="130" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-74" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;" parent="8gZzuRhjrYuwNxX9kY4q-67" vertex="1"> <mxGeometry y="120" width="280" height="30" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-75" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-74" vertex="1"> <mxGeometry width="30" height="30" as="geometry"> <mxRectangle width="30" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-76" value="action_id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-74" vertex="1"> <mxGeometry x="30" width="120" height="30" as="geometry"> <mxRectangle width="120" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-150" value="bigint" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-74" vertex="1"> <mxGeometry x="150" width="130" height="30" as="geometry"> <mxRectangle width="130" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-81" value="Member_Action" style="shape=table;startSize=30;container=1;collapsible=1;childLayout=tableLayout;fixedRows=1;rowLines=0;fontStyle=1;align=center;resizeLast=1;html=1;" parent="WIyWlLk6GJQsqaUBKTNV-1" vertex="1"> <mxGeometry x="790" y="40" width="280" height="180" as="geometry"> <mxRectangle x="480" y="530" width="70" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-82" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=1;" parent="8gZzuRhjrYuwNxX9kY4q-81" vertex="1"> <mxGeometry y="30" width="280" height="30" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-83" value="PK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;fontStyle=1;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-82" vertex="1"> <mxGeometry width="30" height="30" as="geometry"> <mxRectangle width="30" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-84" value="member_action_id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;fontStyle=5;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-82" vertex="1"> <mxGeometry x="30" width="120" height="30" as="geometry"> <mxRectangle width="120" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-151" value="bigint" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;fontStyle=5;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-82" vertex="1"> <mxGeometry x="150" width="130" height="30" as="geometry"> <mxRectangle width="130" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-85" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;" parent="8gZzuRhjrYuwNxX9kY4q-81" vertex="1"> <mxGeometry y="60" width="280" height="30" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-86" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-85" vertex="1"> <mxGeometry width="30" height="30" as="geometry"> <mxRectangle width="30" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-87" value="member_name" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-85" vertex="1"> <mxGeometry x="30" width="120" height="30" as="geometry"> <mxRectangle width="120" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-152" value="varchar(20)" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-85" vertex="1"> <mxGeometry x="150" width="130" height="30" as="geometry"> <mxRectangle width="130" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-92" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;" parent="8gZzuRhjrYuwNxX9kY4q-81" vertex="1"> <mxGeometry y="90" width="280" height="30" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-93" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-92" vertex="1"> <mxGeometry width="30" height="30" as="geometry"> <mxRectangle width="30" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-94" value="status" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-92" vertex="1"> <mxGeometry x="30" width="120" height="30" as="geometry"> <mxRectangle width="120" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-153" value="varchar(10)" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-92" vertex="1"> <mxGeometry x="150" width="130" height="30" as="geometry"> <mxRectangle width="130" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-95" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;" parent="8gZzuRhjrYuwNxX9kY4q-81" vertex="1"> <mxGeometry y="120" width="280" height="30" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-96" value="" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-95" vertex="1"> <mxGeometry width="30" height="30" as="geometry"> <mxRectangle width="30" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-97" value="member_group_id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-95" vertex="1"> <mxGeometry x="30" width="120" height="30" as="geometry"> <mxRectangle width="120" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-154" value="bigint" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-95" vertex="1"> <mxGeometry x="150" width="130" height="30" as="geometry"> <mxRectangle width="130" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-88" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;fillColor=none;collapsible=0;dropTarget=0;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;top=0;left=0;right=0;bottom=0;" parent="8gZzuRhjrYuwNxX9kY4q-81" vertex="1"> <mxGeometry y="150" width="280" height="30" as="geometry" /> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-89" value="FK" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;editable=1;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-88" vertex="1"> <mxGeometry width="30" height="30" as="geometry"> <mxRectangle width="30" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-90" value="action_id" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-88" vertex="1"> <mxGeometry x="30" width="120" height="30" as="geometry"> <mxRectangle width="120" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> <mxCell id="8gZzuRhjrYuwNxX9kY4q-155" value="bigint" style="shape=partialRectangle;connectable=0;fillColor=none;top=0;left=0;bottom=0;right=0;align=left;spacingLeft=6;overflow=hidden;whiteSpace=wrap;html=1;" parent="8gZzuRhjrYuwNxX9kY4q-88" vertex="1"> <mxGeometry x="150" width="130" height="30" as="geometry"> <mxRectangle width="130" height="30" as="alternateBounds" /> </mxGeometry> </mxCell> </root> </mxGraphModel> </diagram> </mxfile> " resource="https://app.diagrams.net/?src=about#Hkunsanglee%2Fcafekiosk-study%2Fmain%2Fsrc%2Fmain%2Fresources%2Fexample2.svg#%7B%22pageId%22%3A%22C5RBs43oDa-KdzZeNtuy%22%7D"><defs/><g><g data-cell-id="WIyWlLk6GJQsqaUBKTNV-0"><g data-cell-id="WIyWlLk6GJQsqaUBKTNV-1"><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-98"><g><rect x="0" y="0" width="1992" height="1580" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" pointer-events="all"/></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-47"><g><path d="M 622 750 L 622 814.5" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" stroke-dasharray="3 3" pointer-events="stroke"/><path d="M 626 754 L 618 754" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><ellipse cx="622" cy="818" rx="3" ry="3" fill="none" stroke="rgb(0, 0, 0)" pointer-events="all"/><path d="M 626 830 L 622 822 L 618 830 M 622 822 L 622 830" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-66"><g><path d="M 762 690 L 840.5 690" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" stroke-dasharray="3 3" pointer-events="stroke"/><path d="M 766 686 L 766 694" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><ellipse cx="844" cy="690" rx="3" ry="3" fill="none" stroke="rgb(0, 0, 0)" pointer-events="all"/><path d="M 856 686 L 848 690 L 856 694 M 848 690 L 856 690" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-0"><g><path d="M 482 660 L 482 630 L 762 630 L 762 660" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 482 660 L 482 750 L 762 750 L 762 660" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/><path d="M 482 660 L 762 660" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/><path d="M 512 660 L 512 690 L 512 720 L 512 750" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/><path d="M 632 660 L 632 690 L 632 720 L 632 750" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 645px; margin-left: 622px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: nowrap;">Event</div></div></div></foreignObject><text x="622" y="649" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle" font-weight="bold">Event</text></switch></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-1"><g><path d="M 482 660 M 762 660 M 762 690 L 482 690" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="none"/></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-2"><g><rect x="482" y="660" width="30" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 482 660 M 512 660 M 512 690 M 482 690" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 28px; height: 1px; padding-top: 675px; margin-left: 483px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;">PK</div></div></div></foreignObject><text x="497" y="679" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle" font-weight="bold">PK</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-3"><g><rect x="512" y="660" width="120" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 512 660 M 632 660 M 632 690 M 512 690" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 112px; height: 1px; padding-top: 675px; margin-left: 520px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; text-decoration: underline; white-space: normal; overflow-wrap: normal;">event_id</div></div></div></foreignObject><text x="520" y="679" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" font-weight="bold" text-decoration="underline">event_id</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-137"><g><rect x="632" y="660" width="130" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 632 660 M 762 660 M 762 690 M 632 690" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 122px; height: 1px; padding-top: 675px; margin-left: 640px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; text-decoration: underline; white-space: normal; overflow-wrap: normal;">bigint</div></div></div></foreignObject><text x="640" y="679" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" font-weight="bold" text-decoration="underline">bigint</text></switch></g></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-7"><g/><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-8"><g><rect x="482" y="690" width="30" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 482 690 M 512 690 M 512 720 M 482 720" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-9"><g><rect x="512" y="690" width="120" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 512 690 M 632 690 M 632 720 M 512 720" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 112px; height: 1px; padding-top: 705px; margin-left: 520px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">token</div></div></div></foreignObject><text x="520" y="709" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">token</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-138"><g><rect x="632" y="690" width="130" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 632 690 M 762 690 M 762 720 M 632 720" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 122px; height: 1px; padding-top: 705px; margin-left: 640px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">varchar(20)</div></div></div></foreignObject><text x="640" y="709" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">varchar(20)</text></switch></g></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-4"><g/><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-5"><g><rect x="482" y="720" width="30" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 482 720 M 512 720 M 512 750 M 482 750" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-6"><g><rect x="512" y="720" width="120" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 512 720 M 632 720 M 632 750 M 512 750" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 112px; height: 1px; padding-top: 735px; margin-left: 520px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">name</div></div></div></foreignObject><text x="520" y="739" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">name</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-139"><g><rect x="632" y="720" width="130" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 632 720 M 762 720 M 762 750 M 632 750" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 122px; height: 1px; padding-top: 735px; margin-left: 640px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">varchar(255)</div></div></div></foreignObject><text x="640" y="739" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">varchar(255)</text></switch></g></g></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-37"><g><path d="M 482 860 L 482 830 L 762 830 L 762 860" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 482 860 L 482 980 L 762 980 L 762 860" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/><path d="M 482 860 L 762 860" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/><path d="M 512 860 L 512 890 L 512 920 L 512 950 L 512 980" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/><path d="M 632 860 L 632 890 L 632 920 L 632 950 L 632 980" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 845px; margin-left: 622px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: nowrap;">Event_Step</div></div></div></foreignObject><text x="622" y="849" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle" font-weight="bold">Event_Step</text></switch></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-38"><g><path d="M 482 860 M 762 860 M 762 890 L 482 890" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="none"/></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-39"><g><rect x="482" y="860" width="30" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 482 860 M 512 860 M 512 890 M 482 890" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 28px; height: 1px; padding-top: 875px; margin-left: 483px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;">PK</div></div></div></foreignObject><text x="497" y="879" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle" font-weight="bold">PK</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-40"><g><rect x="512" y="860" width="120" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 512 860 M 632 860 M 632 890 M 512 890" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 112px; height: 1px; padding-top: 875px; margin-left: 520px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; text-decoration: underline; white-space: normal; overflow-wrap: normal;">event_step_id</div></div></div></foreignObject><text x="520" y="879" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" font-weight="bold" text-decoration="underline">event_step_id</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-143"><g><rect x="632" y="860" width="130" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 632 860 M 762 860 M 762 890 M 632 890" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 122px; height: 1px; padding-top: 875px; margin-left: 640px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; text-decoration: underline; white-space: normal; overflow-wrap: normal;">bigint</div></div></div></foreignObject><text x="640" y="879" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" font-weight="bold" text-decoration="underline">bigint</text></switch></g></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-41"><g/><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-42"><g><rect x="482" y="890" width="30" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 482 890 M 512 890 M 512 920 M 482 920" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-43"><g><rect x="512" y="890" width="120" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 512 890 M 632 890 M 632 920 M 512 920" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 112px; height: 1px; padding-top: 905px; margin-left: 520px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">name</div></div></div></foreignObject><text x="520" y="909" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">name</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-144"><g><rect x="632" y="890" width="130" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 632 890 M 762 890 M 762 920 M 632 920" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 122px; height: 1px; padding-top: 905px; margin-left: 640px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">varchar(30)</div></div></div></foreignObject><text x="640" y="909" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">varchar(30)</text></switch></g></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-44"><g/><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-45"><g><rect x="482" y="920" width="30" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 482 920 M 512 920 M 512 950 M 482 950" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-46"><g><rect x="512" y="920" width="120" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 512 920 M 632 920 M 632 950 M 512 950" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 112px; height: 1px; padding-top: 935px; margin-left: 520px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">sequence</div></div></div></foreignObject><text x="520" y="939" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">sequence</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-145"><g><rect x="632" y="920" width="130" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 632 920 M 762 920 M 762 950 M 632 950" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 122px; height: 1px; padding-top: 935px; margin-left: 640px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">bigint</div></div></div></foreignObject><text x="640" y="939" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">bigint</text></switch></g></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-48"><g/><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-49"><g><rect x="482" y="950" width="30" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 482 950 M 512 950 M 512 980 M 482 980" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 28px; height: 1px; padding-top: 965px; margin-left: 483px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">FK</div></div></div></foreignObject><text x="497" y="969" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle">FK</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-50"><g><rect x="512" y="950" width="120" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 512 950 M 632 950 M 632 980 M 512 980" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 112px; height: 1px; padding-top: 965px; margin-left: 520px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">event_id</div></div></div></foreignObject><text x="520" y="969" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">event_id</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-146"><g><rect x="632" y="950" width="130" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 632 950 M 762 950 M 762 980 M 632 980" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 122px; height: 1px; padding-top: 965px; margin-left: 640px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">bigint</div></div></div></foreignObject><text x="640" y="969" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">bigint</text></switch></g></g></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-77"><g><path d="M 996 750 L 996 830" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" stroke-dasharray="3 3" pointer-events="stroke"/><path d="M 1000 754 L 992 754" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 992 826 L 1000 826" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-91"><g><path d="M 1136 690 L 1184 690 L 1184 720 L 1232 720" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" stroke-dasharray="3 3" pointer-events="stroke"/><path d="M 1140 686 L 1140 694" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 1228 724 L 1228 716" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-56"><g><path d="M 856 660 L 856 630 L 1136 630 L 1136 660" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 856 660 L 856 750 L 1136 750 L 1136 660" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/><path d="M 856 660 L 1136 660" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/><path d="M 886 660 L 886 690 L 886 720 L 886 750" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/><path d="M 1006 660 L 1006 690 L 1006 720 L 1006 750" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 645px; margin-left: 996px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: nowrap;">Action</div></div></div></foreignObject><text x="996" y="649" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle" font-weight="bold">Action</text></switch></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-57"><g><path d="M 856 660 M 1136 660 M 1136 690 L 856 690" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="none"/></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-58"><g><rect x="856" y="660" width="30" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 856 660 M 886 660 M 886 690 M 856 690" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 28px; height: 1px; padding-top: 675px; margin-left: 857px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;">PK</div></div></div></foreignObject><text x="871" y="679" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle" font-weight="bold">PK</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-59"><g><rect x="886" y="660" width="120" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 886 660 M 1006 660 M 1006 690 M 886 690" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 112px; height: 1px; padding-top: 675px; margin-left: 894px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; text-decoration: underline; white-space: normal; overflow-wrap: normal;">action_id</div></div></div></foreignObject><text x="894" y="679" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" font-weight="bold" text-decoration="underline">action_id</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-140"><g><rect x="1006" y="660" width="130" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1006 660 M 1136 660 M 1136 690 M 1006 690" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 122px; height: 1px; padding-top: 675px; margin-left: 1014px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; text-decoration: underline; white-space: normal; overflow-wrap: normal;">bigint</div></div></div></foreignObject><text x="1014" y="679" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" font-weight="bold" text-decoration="underline">bigint</text></switch></g></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-60"><g/><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-61"><g><rect x="856" y="690" width="30" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 856 690 M 886 690 M 886 720 M 856 720" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-62"><g><rect x="886" y="690" width="120" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 886 690 M 1006 690 M 1006 720 M 886 720" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 112px; height: 1px; padding-top: 705px; margin-left: 894px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">sequence</div></div></div></foreignObject><text x="894" y="709" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">sequence</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-141"><g><rect x="1006" y="690" width="130" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1006 690 M 1136 690 M 1136 720 M 1006 720" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 122px; height: 1px; padding-top: 705px; margin-left: 1014px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">bigint</div></div></div></foreignObject><text x="1014" y="709" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">bigint</text></switch></g></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-63"><g/><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-64"><g><rect x="856" y="720" width="30" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 856 720 M 886 720 M 886 750 M 856 750" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 28px; height: 1px; padding-top: 735px; margin-left: 857px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">FK</div></div></div></foreignObject><text x="871" y="739" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle">FK</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-65"><g><rect x="886" y="720" width="120" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 886 720 M 1006 720 M 1006 750 M 886 750" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 112px; height: 1px; padding-top: 735px; margin-left: 894px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">event_id</div></div></div></foreignObject><text x="894" y="739" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">event_id</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-142"><g><rect x="1006" y="720" width="130" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1006 720 M 1136 720 M 1136 750 M 1006 750" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 122px; height: 1px; padding-top: 735px; margin-left: 1014px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">bigint</div></div></div></foreignObject><text x="1014" y="739" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">bigint</text></switch></g></g></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-67"><g><path d="M 856 860 L 856 830 L 1136 830 L 1136 860" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 856 860 L 856 980 L 1136 980 L 1136 860" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/><path d="M 856 860 L 1136 860" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/><path d="M 886 860 L 886 890 L 886 920 L 886 950 L 886 980" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/><path d="M 1006 860 L 1006 890 L 1006 920 L 1006 950 L 1006 980" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 845px; margin-left: 996px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: nowrap;">Bill_Action</div></div></div></foreignObject><text x="996" y="849" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle" font-weight="bold">Bill_Action</text></switch></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-68"><g><path d="M 856 860 M 1136 860 M 1136 890 L 856 890" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="none"/></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-69"><g><rect x="856" y="860" width="30" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 856 860 M 886 860 M 886 890 M 856 890" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 28px; height: 1px; padding-top: 875px; margin-left: 857px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;">PK</div></div></div></foreignObject><text x="871" y="879" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle" font-weight="bold">PK</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-70"><g><rect x="886" y="860" width="120" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 886 860 M 1006 860 M 1006 890 M 886 890" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 112px; height: 1px; padding-top: 875px; margin-left: 894px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; text-decoration: underline; white-space: normal; overflow-wrap: normal;">bill_action_id</div></div></div></foreignObject><text x="894" y="879" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" font-weight="bold" text-decoration="underline">bill_action_id</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-147"><g><rect x="1006" y="860" width="130" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1006 860 M 1136 860 M 1136 890 M 1006 890" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 122px; height: 1px; padding-top: 875px; margin-left: 1014px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; text-decoration: underline; white-space: normal; overflow-wrap: normal;">bigint</div></div></div></foreignObject><text x="1014" y="879" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" font-weight="bold" text-decoration="underline">bigint</text></switch></g></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-71"><g/><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-72"><g><rect x="856" y="890" width="30" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 856 890 M 886 890 M 886 920 M 856 920" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-73"><g><rect x="886" y="890" width="120" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 886 890 M 1006 890 M 1006 920 M 886 920" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 112px; height: 1px; padding-top: 905px; margin-left: 894px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">title</div></div></div></foreignObject><text x="894" y="909" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">title</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-148"><g><rect x="1006" y="890" width="130" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1006 890 M 1136 890 M 1136 920 M 1006 920" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 122px; height: 1px; padding-top: 905px; margin-left: 1014px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">varchar(30)</div></div></div></foreignObject><text x="1014" y="909" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">varchar(30)</text></switch></g></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-78"><g/><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-79"><g><rect x="856" y="920" width="30" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 856 920 M 886 920 M 886 950 M 856 950" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-80"><g><rect x="886" y="920" width="120" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 886 920 M 1006 920 M 1006 950 M 886 950" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 112px; height: 1px; padding-top: 935px; margin-left: 894px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">price</div></div></div></foreignObject><text x="894" y="939" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">price</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-149"><g><rect x="1006" y="920" width="130" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1006 920 M 1136 920 M 1136 950 M 1006 950" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 122px; height: 1px; padding-top: 935px; margin-left: 1014px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">bigint</div></div></div></foreignObject><text x="1014" y="939" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">bigint</text></switch></g></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-74"><g/><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-75"><g><rect x="856" y="950" width="30" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 856 950 M 886 950 M 886 980 M 856 980" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 28px; height: 1px; padding-top: 965px; margin-left: 857px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">FK</div></div></div></foreignObject><text x="871" y="969" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle">FK</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-76"><g><rect x="886" y="950" width="120" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 886 950 M 1006 950 M 1006 980 M 886 980" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 112px; height: 1px; padding-top: 965px; margin-left: 894px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">action_id</div></div></div></foreignObject><text x="894" y="969" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">action_id</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-150"><g><rect x="1006" y="950" width="130" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1006 950 M 1136 950 M 1136 980 M 1006 980" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 122px; height: 1px; padding-top: 965px; margin-left: 1014px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">bigint</div></div></div></foreignObject><text x="1014" y="969" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">bigint</text></switch></g></g></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-81"><g><path d="M 1232 660 L 1232 630 L 1512 630 L 1512 660" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="all"/><path d="M 1232 660 L 1232 810 L 1512 810 L 1512 660" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/><path d="M 1232 660 L 1512 660" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/><path d="M 1262 660 L 1262 690 L 1262 720 L 1262 750 L 1262 780 L 1262 810" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/><path d="M 1382 660 L 1382 690 L 1382 720 L 1382 750 L 1382 780 L 1382 810" fill="none" stroke="rgb(0, 0, 0)" stroke-miterlimit="10" pointer-events="none"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 645px; margin-left: 1372px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: nowrap;">Member_Action</div></div></div></foreignObject><text x="1372" y="649" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle" font-weight="bold">Member_Action</text></switch></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-82"><g><path d="M 1232 660 M 1512 660 M 1512 690 L 1232 690" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="none"/></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-83"><g><rect x="1232" y="660" width="30" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1232 660 M 1262 660 M 1262 690 M 1232 690" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 28px; height: 1px; padding-top: 675px; margin-left: 1233px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; white-space: normal; overflow-wrap: normal;">PK</div></div></div></foreignObject><text x="1247" y="679" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle" font-weight="bold">PK</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-84"><g><rect x="1262" y="660" width="120" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1262 660 M 1382 660 M 1382 690 M 1262 690" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 112px; height: 1px; padding-top: 675px; margin-left: 1270px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; text-decoration: underline; white-space: normal; overflow-wrap: normal;">member_action_id</div></div></div></foreignObject><text x="1270" y="679" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" font-weight="bold" text-decoration="underline">member_action_id</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-151"><g><rect x="1382" y="660" width="130" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1382 660 M 1512 660 M 1512 690 M 1382 690" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 122px; height: 1px; padding-top: 675px; margin-left: 1390px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; font-weight: bold; text-decoration: underline; white-space: normal; overflow-wrap: normal;">bigint</div></div></div></foreignObject><text x="1390" y="679" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" font-weight="bold" text-decoration="underline">bigint</text></switch></g></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-85"><g/><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-86"><g><rect x="1232" y="690" width="30" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1232 690 M 1262 690 M 1262 720 M 1232 720" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-87"><g><rect x="1262" y="690" width="120" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1262 690 M 1382 690 M 1382 720 M 1262 720" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 112px; height: 1px; padding-top: 705px; margin-left: 1270px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">member_name</div></div></div></foreignObject><text x="1270" y="709" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">member_name</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-152"><g><rect x="1382" y="690" width="130" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1382 690 M 1512 690 M 1512 720 M 1382 720" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 122px; height: 1px; padding-top: 705px; margin-left: 1390px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">varchar(20)</div></div></div></foreignObject><text x="1390" y="709" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">varchar(20)</text></switch></g></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-92"><g/><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-93"><g><rect x="1232" y="720" width="30" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1232 720 M 1262 720 M 1262 750 M 1232 750" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-94"><g><rect x="1262" y="720" width="120" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1262 720 M 1382 720 M 1382 750 M 1262 750" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 112px; height: 1px; padding-top: 735px; margin-left: 1270px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">status</div></div></div></foreignObject><text x="1270" y="739" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">status</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-153"><g><rect x="1382" y="720" width="130" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1382 720 M 1512 720 M 1512 750 M 1382 750" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 122px; height: 1px; padding-top: 735px; margin-left: 1390px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">varchar(10)</div></div></div></foreignObject><text x="1390" y="739" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">varchar(10)</text></switch></g></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-95"><g/><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-96"><g><rect x="1232" y="750" width="30" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1232 750 M 1262 750 M 1262 780 M 1232 780" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-97"><g><rect x="1262" y="750" width="120" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1262 750 M 1382 750 M 1382 780 M 1262 780" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 112px; height: 1px; padding-top: 765px; margin-left: 1270px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">member_group_id</div></div></div></foreignObject><text x="1270" y="769" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">member_group_id</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-154"><g><rect x="1382" y="750" width="130" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1382 750 M 1512 750 M 1512 780 M 1382 780" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 122px; height: 1px; padding-top: 765px; margin-left: 1390px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">bigint</div></div></div></foreignObject><text x="1390" y="769" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">bigint</text></switch></g></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-88"><g/><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-89"><g><rect x="1232" y="780" width="30" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1232 780 M 1262 780 M 1262 810 M 1232 810" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 28px; height: 1px; padding-top: 795px; margin-left: 1233px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: center; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">FK</div></div></div></foreignObject><text x="1247" y="799" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px" text-anchor="middle">FK</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-90"><g><rect x="1262" y="780" width="120" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1262 780 M 1382 780 M 1382 810 M 1262 810" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 112px; height: 1px; padding-top: 795px; margin-left: 1270px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">action_id</div></div></div></foreignObject><text x="1270" y="799" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">action_id</text></switch></g></g></g><g data-cell-id="8gZzuRhjrYuwNxX9kY4q-155"><g><rect x="1382" y="780" width="130" height="30" fill="none" stroke="none" pointer-events="all"/><path d="M 1382 780 M 1512 780 M 1512 810 M 1382 810" fill="none" stroke="rgb(0, 0, 0)" stroke-linecap="square" stroke-miterlimit="10" pointer-events="all"/></g><g><g transform="translate(-0.5 -0.5)"><switch><foreignObject pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility" style="overflow: visible; text-align: left;"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 122px; height: 1px; padding-top: 795px; margin-left: 1390px;"><div data-drawio-colors="color: rgb(0, 0, 0); " style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: rgb(0, 0, 0); line-height: 1.2; pointer-events: all; white-space: normal; overflow-wrap: normal;">bigint</div></div></div></foreignObject><text x="1390" y="799" fill="rgb(0, 0, 0)" font-family=""Helvetica"" font-size="12px">bigint</text></switch></g></g></g></g></g></g></g></g><switch><g requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"/><a transform="translate(0,-5)" xlink:href="https://www.drawio.com/doc/faq/svg-export-text-problems" target="_blank"><text text-anchor="middle" font-size="10px" x="50%" y="100%">Text is not SVG - cannot display</text></a></switch></svg> \ No newline at end of file diff --git a/server/docs/migration.sql b/server/docs/migration.sql deleted file mode 100644 index e69de29bb..000000000 diff --git a/server/gradle/wrapper/gradle-wrapper.jar b/server/gradle/wrapper/gradle-wrapper.jar deleted file mode 100644 index e6441136f..000000000 Binary files a/server/gradle/wrapper/gradle-wrapper.jar and /dev/null differ diff --git a/server/gradle/wrapper/gradle-wrapper.properties b/server/gradle/wrapper/gradle-wrapper.properties deleted file mode 100644 index a4413138c..000000000 --- a/server/gradle/wrapper/gradle-wrapper.properties +++ /dev/null @@ -1,7 +0,0 @@ -distributionBase=GRADLE_USER_HOME -distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip -networkTimeout=10000 -validateDistributionUrl=true -zipStoreBase=GRADLE_USER_HOME -zipStorePath=wrapper/dists diff --git a/server/gradlew b/server/gradlew deleted file mode 100644 index b740cf133..000000000 --- a/server/gradlew +++ /dev/null @@ -1,249 +0,0 @@ -#!/bin/sh - -# -# Copyright © 2015-2021 the original authors. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# https://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -############################################################################## -# -# Gradle start up script for POSIX generated by Gradle. -# -# Important for running: -# -# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is -# noncompliant, but you have some other compliant shell such as ksh or -# bash, then to run this script, type that shell name before the whole -# command line, like: -# -# ksh Gradle -# -# Busybox and similar reduced shells will NOT work, because this script -# requires all of these POSIX shell features: -# * functions; -# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», -# «${var#prefix}», «${var%suffix}», and «$( cmd )»; -# * compound commands having a testable exit status, especially «case»; -# * various built-in commands including «command», «set», and «ulimit». -# -# Important for patching: -# -# (2) This script targets any POSIX shell, so it avoids extensions provided -# by Bash, Ksh, etc; in particular arrays are avoided. -# -# The "traditional" practice of packing multiple parameters into a -# space-separated string is a well documented source of bugs and security -# problems, so this is (mostly) avoided, by progressively accumulating -# options in "$@", and eventually passing that to Java. -# -# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, -# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; -# see the in-line comments for details. -# -# There are tweaks for specific operating systems such as AIX, CygWin, -# Darwin, MinGW, and NonStop. -# -# (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt -# within the Gradle project. -# -# You can find Gradle at https://github.com/gradle/gradle/. -# -############################################################################## - -# Attempt to set APP_HOME - -# Resolve links: $0 may be a link -app_path=$0 - -# Need this for daisy-chained symlinks. -while - APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path - [ -h "$app_path" ] -do - ls=$( ls -ld "$app_path" ) - link=${ls#*' -> '} - case $link in #( - /*) app_path=$link ;; #( - *) app_path=$APP_HOME$link ;; - esac -done - -# This is normally unused -# shellcheck disable=SC2034 -APP_BASE_NAME=${0##*/} -# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) -APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit - -# Use the maximum available, or set MAX_FD != -1 to use that value. -MAX_FD=maximum - -warn () { - echo "$*" -} >&2 - -die () { - echo - echo "$*" - echo - exit 1 -} >&2 - -# OS specific support (must be 'true' or 'false'). -cygwin=false -msys=false -darwin=false -nonstop=false -case "$( uname )" in #( - CYGWIN* ) cygwin=true ;; #( - Darwin* ) darwin=true ;; #( - MSYS* | MINGW* ) msys=true ;; #( - NONSTOP* ) nonstop=true ;; -esac - -CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar - - -# Determine the Java command to use to start the JVM. -if [ -n "$JAVA_HOME" ] ; then - if [ -x "$JAVA_HOME/jre/sh/java" ] ; then - # IBM's JDK on AIX uses strange locations for the executables - JAVACMD=$JAVA_HOME/jre/sh/java - else - JAVACMD=$JAVA_HOME/bin/java - fi - if [ ! -x "$JAVACMD" ] ; then - die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." - fi -else - JAVACMD=java - if ! command -v java >/dev/null 2>&1 - then - die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. - -Please set the JAVA_HOME variable in your environment to match the -location of your Java installation." - fi -fi - -# Increase the maximum file descriptors if we can. -if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then - case $MAX_FD in #( - max*) - # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. - # shellcheck disable=SC2039,SC3045 - MAX_FD=$( ulimit -H -n ) || - warn "Could not query maximum file descriptor limit" - esac - case $MAX_FD in #( - '' | soft) :;; #( - *) - # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. - # shellcheck disable=SC2039,SC3045 - ulimit -n "$MAX_FD" || - warn "Could not set maximum file descriptor limit to $MAX_FD" - esac -fi - -# Collect all arguments for the java command, stacking in reverse order: -# * args from the command line -# * the main class name -# * -classpath -# * -D...appname settings -# * --module-path (only if needed) -# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. - -# For Cygwin or MSYS, switch paths to Windows format before running java -if "$cygwin" || "$msys" ; then - APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) - CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) - - JAVACMD=$( cygpath --unix "$JAVACMD" ) - - # Now convert the arguments - kludge to limit ourselves to /bin/sh - for arg do - if - case $arg in #( - -*) false ;; # don't mess with options #( - /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath - [ -e "$t" ] ;; #( - *) false ;; - esac - then - arg=$( cygpath --path --ignore --mixed "$arg" ) - fi - # Roll the args list around exactly as many times as the number of - # args, so each arg winds up back in the position where it started, but - # possibly modified. - # - # NB: a `for` loop captures its iteration list before it begins, so - # changing the positional parameters here affects neither the number of - # iterations, nor the values presented in `arg`. - shift # remove old arg - set -- "$@" "$arg" # push replacement arg - done -fi - - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' - -# Collect all arguments for the java command: -# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, -# and any embedded shellness will be escaped. -# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be -# treated as '${Hostname}' itself on the command line. - -set -- \ - "-Dorg.gradle.appname=$APP_BASE_NAME" \ - -classpath "$CLASSPATH" \ - org.gradle.wrapper.GradleWrapperMain \ - "$@" - -# Stop when "xargs" is not available. -if ! command -v xargs >/dev/null 2>&1 -then - die "xargs is not available" -fi - -# Use "xargs" to parse quoted args. -# -# With -n1 it outputs one arg per line, with the quotes and backslashes removed. -# -# In Bash we could simply go: -# -# readarray ARGS < <( xargs -n1 <<<"$var" ) && -# set -- "${ARGS[@]}" "$@" -# -# but POSIX shell has neither arrays nor command substitution, so instead we -# post-process each arg (as a line of input to sed) to backslash-escape any -# character that might be a shell metacharacter, then use eval to reverse -# that process (while maintaining the separation between arguments), and wrap -# the whole thing up as a single "set" statement. -# -# This will of course break if any of these variables contains a newline or -# an unmatched quote. -# - -eval "set -- $( - printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | - xargs -n1 | - sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | - tr '\n' ' ' - )" '"$@"' - -exec "$JAVACMD" "$@" diff --git a/server/gradlew.bat b/server/gradlew.bat deleted file mode 100644 index 25da30dbd..000000000 --- a/server/gradlew.bat +++ /dev/null @@ -1,92 +0,0 @@ -@rem -@rem Copyright 2015 the original author or authors. -@rem -@rem Licensed under the Apache License, Version 2.0 (the "License"); -@rem you may not use this file except in compliance with the License. -@rem You may obtain a copy of the License at -@rem -@rem https://www.apache.org/licenses/LICENSE-2.0 -@rem -@rem Unless required by applicable law or agreed to in writing, software -@rem distributed under the License is distributed on an "AS IS" BASIS, -@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -@rem See the License for the specific language governing permissions and -@rem limitations under the License. -@rem - -@if "%DEBUG%"=="" @echo off -@rem ########################################################################## -@rem -@rem Gradle startup script for Windows -@rem -@rem ########################################################################## - -@rem Set local scope for the variables with windows NT shell -if "%OS%"=="Windows_NT" setlocal - -set DIRNAME=%~dp0 -if "%DIRNAME%"=="" set DIRNAME=. -@rem This is normally unused -set APP_BASE_NAME=%~n0 -set APP_HOME=%DIRNAME% - -@rem Resolve any "." and ".." in APP_HOME to make it shorter. -for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi - -@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" - -@rem Find java.exe -if defined JAVA_HOME goto findJavaFromJavaHome - -set JAVA_EXE=java.exe -%JAVA_EXE% -version >NUL 2>&1 -if %ERRORLEVEL% equ 0 goto execute - -echo. 1>&2 -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 -echo. 1>&2 -echo Please set the JAVA_HOME variable in your environment to match the 1>&2 -echo location of your Java installation. 1>&2 - -goto fail - -:findJavaFromJavaHome -set JAVA_HOME=%JAVA_HOME:"=% -set JAVA_EXE=%JAVA_HOME%/bin/java.exe - -if exist "%JAVA_EXE%" goto execute - -echo. 1>&2 -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 -echo. 1>&2 -echo Please set the JAVA_HOME variable in your environment to match the 1>&2 -echo location of your Java installation. 1>&2 - -goto fail - -:execute -@rem Setup the command line - -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar - - -@rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* - -:end -@rem End local scope for the variables with windows NT shell -if %ERRORLEVEL% equ 0 goto mainEnd - -:fail -rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of -rem the _cmd.exe /c_ return code! -set EXIT_CODE=%ERRORLEVEL% -if %EXIT_CODE% equ 0 set EXIT_CODE=1 -if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% -exit /b %EXIT_CODE% - -:mainEnd -if "%OS%"=="Windows_NT" endlocal - -:omega diff --git a/server/settings.gradle b/server/settings.gradle deleted file mode 100644 index dbbee46fb..000000000 --- a/server/settings.gradle +++ /dev/null @@ -1 +0,0 @@ -rootProject.name = 'haengdong' diff --git a/server/src/docs/asciidoc/bill.adoc b/server/src/docs/asciidoc/bill.adoc deleted file mode 100644 index 64b366594..000000000 --- a/server/src/docs/asciidoc/bill.adoc +++ /dev/null @@ -1,121 +0,0 @@ -== 지출 - -=== 지출 생성 - -operation::createBills[snippets="path-parameters,http-request,request-body,request-fields,http-response,request-cookies"] - -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - { - "code":"REQUEST_EMPTY", - "message":"지출 금액은 비어 있으면 안됩니다." - }, - { - "code":"REQUEST_EMPTY", - "message":"지출 내역은 비어 있으면 안됩니다." - }, - { - "code":"BILL_TITLE_INVALID", - "message":"앞뒤 공백을 제거한 지출 내역 제목은 %d ~ %d자여야 합니다." - }, - { - "code":"BILL_PRICE_INVALID", - "message":"지출 금액은 10,000,000 이하의 자연수여야 합니다." - }, - { - "code":"EVENT_NOT_FOUND", - "message":"존재하지 않는 행사입니다." - }, - { - "code":"TOKEN_NOT_FOUND", - "message":"토큰이 존재하지 않습니다." - }, - { - "code":"TOKEN_EXPIRED", - "message":"토큰이 존재하지 않습니다." - }, - { - "code":"TOKEN_INVALID", - "message":"유효하지 않은 토큰입니다." - } -] ----- - -=== 지출 수정 - -operation::updateBill[snippets="path-parameters,http-request,request-body,request-fields,http-response,request-cookies"] - -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - { - "code":"REQUEST_EMPTY", - "message":"지출 내역 제목은 공백일 수 없습니다." - }, - { - "code":"REQUEST_EMPTY", - "message":"지출 금액은 공백일 수 없습니다." - }, - { - "code":"BILL_TITLE_INVALID", - "message":"앞뒤 공백을 제거한 지출 내역 제목은 %d ~ %d자여야 합니다." - }, - { - "code":"BILL_PRICE_INVALID", - "message":"지출 금액은 %,d 이하의 자연수여야 합니다." - }, - { - "code":"EVENT_NOT_FOUND", - "message":"존재하지 않는 행사입니다." - }, - { - "code":"BILL_NOT_FOUND", - "message":"존재하지 않는 지출입니다." - }, - { - "code":"TOKEN_NOT_FOUND", - "message":"토큰이 존재하지 않습니다." - }, - { - "code":"TOKEN_EXPIRED", - "message":"토큰이 존재하지 않습니다." - }, - { - "code":"TOKEN_INVALID", - "message":"유효하지 않은 토큰입니다." - } -] ----- - -=== 지출 삭제 - -operation::deleteBill[snippets="path-parameters,http-request,http-response,request-cookies"] - -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - { - "code":"EVENT_NOT_FOUND", - "message":"존재하지 않는 행사입니다." - }, - { - "code":"TOKEN_NOT_FOUND", - "message":"토큰이 존재하지 않습니다." - }, - { - "code":"TOKEN_EXPIRED", - "message":"토큰이 존재하지 않습니다." - }, - { - "code":"TOKEN_INVALID", - "message":"유효하지 않은 토큰입니다." - } -] ----- diff --git a/server/src/docs/asciidoc/billDetail.adoc b/server/src/docs/asciidoc/billDetail.adoc deleted file mode 100644 index 349fb309c..000000000 --- a/server/src/docs/asciidoc/billDetail.adoc +++ /dev/null @@ -1,93 +0,0 @@ -== 지출 상세 - -=== 지출 상세 조회 - -operation::findBillDetails[snippets="path-parameters,http-request,http-response,request-cookies"] - -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - { - "code": "EVENT_NOT_FOUND", - "message": "존재하지 않는 행사입니다." - }, - { - "code": "BILL_NOT_FOUND", - "message": "존재하지 않는 지출입니다." - }, - { - "code": "BILL_DETAIL_NOT_FOUND", - "message": "존재하지 않는 참여자 지출입니다." - }, - { - "code": "TOKEN_NOT_FOUND", - "message": "토큰이 존재하지 않습니다." - }, - { - "code": "TOKEN_EXPIRED", - "message": "만료된 토큰입니다." - }, - { - "code": "TOKEN_INVALID", - "message": "유효하지 않은 토큰입니다." - }, - { - "code": "FORBIDDEN", - "message": "접근할 수 없는 행사입니다." - } -] ----- - -=== 지출 상세 수정 - -operation::updateBillDetails[snippets="path-parameters,http-request,request-body,request-fields,http-response,request-cookies"] - -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - { - "code": "REQUEST_EMPTY", - "message": "멤버 이름은 공백일 수 없습니다." - }, - { - "code": "REQUEST_EMPTY", - "message": "지출 금액은 공백일 수 없습니다." - }, - { - "code": "EVENT_NOT_FOUND", - "message": "존재하지 않는 행사입니다." - }, - { - "code": "BILL_NOT_FOUND", - "message": "존재하지 않는 지출 입니다." - }, - { - "code": "BILL_DETAIL_NOT_FOUND", - "message": "존재하지 않는 참여자 지출입니다." - }, - { - "code": "BILL_PRICE_NOT_MATCHED", - "message": "지출 총액이 일치하지 않습니다." - }, - { - "code": "TOKEN_NOT_FOUND", - "message": "토큰이 존재하지 않습니다." - }, - { - "code": "TOKEN_EXPIRED", - "message": "만료된 토큰입니다." - }, - { - "code": "TOKEN_INVALID", - "message": "유효하지 않은 토큰입니다." - }, - { - "code": "FORBIDDEN", - "message": "접근할 수 없는 행사입니다." - } -] ----- diff --git a/server/src/docs/asciidoc/event.adoc b/server/src/docs/asciidoc/event.adoc deleted file mode 100644 index 282d08cfe..000000000 --- a/server/src/docs/asciidoc/event.adoc +++ /dev/null @@ -1,268 +0,0 @@ -== 행사 - -=== 행사 생성 - -operation::createEvent[snippets="http-request,request-body,request-fields,response-body,response-fields,http-response,response-cookies"] -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - { - "code":"REQUEST_EMPTY", - "message":"행사 이름은 공백일 수 없습니다." - }, - { - "code":"EVENT_NAME_LENGTH_INVALID", - "message":"행사 이름은 2자 이상 30자 이하만 입력 가능합니다. 입력한 이름 길이 : 21" - }, - { - "code":"EVENT_NAME_MULTIPLE_BLANK", - "message":"행사 이름에는 공백 문자가 연속될 수 없습니다. 입력한 이름 : 공백 문자" - }, - { - "code":"EVENT_PASSWORD_INVALID", - "message":"비밀번호는 4자리 숫자만 가능합니다." - } -] ----- - -=== 행사 관리자 로그인 - -operation::eventLogin[snippets="path-parameters,http-request,request-body,request-fields,http-response,response-cookies"] -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - { - "code":"EVENT_NOT_FOUND", - "message":"존재하지 않는 행사입니다." - }, - { - "code":"REQUEST_EMPTY", - "message":"비밀번호는 공백일 수 없습니다." - }, - { - "code":"PASSWORD_INVALID", - "message":"비밀번호가 일치하지 않습니다." - } -] ----- - -=== 행사 정보 조회 - -operation::getEvent[snippets="path-parameters,http-request,response-body,response-fields,http-response"] - -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - { - "code":"EVENT_NOT_FOUND", - "message":"존재하지 않는 행사입니다." - } -] ----- - -=== 행사 전체 참여자 목록 조회 - -operation::findAllMembers[snippets="path-parameters,http-request,response-body,response-fields,http-response,response-fields"] - -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - { - "code":"EVENT_NOT_FOUND", - "message":"존재하지 않는 행사입니다." - } -] ----- - -=== 행사 전체 지출 이력 조회 - -operation::findBills[snippets="path-parameters,http-request,http-response,response-fields"] - -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - { - "code":"EVENT_NOT_FOUND", - "message":"존재하지 않는 행사입니다." - } -] ----- - -=== 행사 참여자 정보 변경 - -operation::updateMembers[snippets="path-parameters,http-request,request-body,request-fields,http-response,request-cookies"] -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - - { - "code":"MEMBER_NAME_CHANGE_DUPLICATE", - "message":"중복된 참여 인원 이름 변경 요청이 존재합니다." - }, - { - "code":"MEMBER_NOT_EXIST", - "message":"현재 참여하고 있지 않는 인원이 존재합니다." - }, - { - "code":"REQUEST_EMPTY", - "message":"멤버 이름은 공백일 수 없습니다." - }, - { - "code":"MEMBER_NAME_LENGTH_INVALID", - "message":"멤버 이름은 1자 이상 4자 이하만 입력 가능합니다." - }, - { - "code":"EVENT_NOT_FOUND", - "message":"존재하지 않는 행사입니다." - }, - { - "code":"MEMBER_NAME_DUPLICATE", - "message":"중복된 행사 참여 인원 이름이 존재합니다." - }, - { - "code":"TOKEN_NOT_FOUND", - "message":"토큰이 존재하지 않습니다." - }, - { - "code":"TOKEN_EXPIRED", - "message":"만료된 토큰입니다." - }, - { - "code":"TOKEN_INVALID", - "message":"유효하지 않은 토큰입니다." - } -] ----- - -=== 행사 참여자 삭제 - -operation::deleteMember[snippets="path-parameters,http-request,http-response,request-cookies"] -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - { - "code":"EVENT_NOT_FOUND", - "message":"존재하지 않는 행사입니다." - }, - { - "code":"TOKEN_NOT_FOUND", - "message":"토큰이 존재하지 않습니다." - }, - { - "code":"TOKEN_EXPIRED", - "message":"토큰이 존재하지 않습니다." - }, - { - "code":"TOKEN_INVALID", - "message":"유효하지 않은 토큰입니다." - } -] ----- - -=== 행사 어드민 권한 확인 - -operation::authenticateEvent[snippets="http-request,http-response,request-cookies"] -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - { - "code": "EVENT_NOT_FOUND", - "message": "존재하지 않는 행사입니다." - }, - { - "code": "TOKEN_NOT_FOUND", - "message": "토큰이 존재하지 않습니다." - }, - { - "code": "TOKEN_EXPIRED", - "message": "만료된 토큰입니다." - }, - { - "code": "TOKEN_INVALID", - "message": "유효하지 않은 토큰입니다." - }, - { - "code": "FORBIDDEN", - "message": "접근할 수 없는 행사입니다." - } -] ----- - -=== 행사 이미지 업로드 -operation::uploadImages[snippets="http-request,http-response"] - -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - { - "code": "EVENT_NOT_FOUND", - "message": "존재하지 않는 행사입니다." - }, - { - "code": "IMAGE_UPLOAD_FAIL", - "message": "이미지 업로드에 실패했습니다." - }, - { - "code":"TOKEN_NOT_FOUND", - "message":"토큰이 존재하지 않습니다." - }, - { - "code":"TOKEN_EXPIRED", - "message":"만료된 토큰입니다." - }, - { - "code":"TOKEN_INVALID", - "message":"유효하지 않은 토큰입니다." - } -] ----- - -=== 행사 이미지 목록 조회 - -operation::findImages[snippets="http-request,response-body,response-fields,http-response"] - -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - { - "code": "EVENT_NOT_FOUND", - "message": "존재하지 않는 행사입니다." - } -] ----- - -=== 행사 이미지 삭제 - -operation::deleteImage[snippets="http-request,http-response"] - -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - { - "code": "EVENT_NOT_FOUND", - "message": "존재하지 않는 행사입니다." - } -] ----- diff --git a/server/src/docs/asciidoc/index.adoc b/server/src/docs/asciidoc/index.adoc deleted file mode 100644 index 4dcc2dc26..000000000 --- a/server/src/docs/asciidoc/index.adoc +++ /dev/null @@ -1,15 +0,0 @@ -ifndef::snippets[] -:snippets: ../../build/generated-snippets -endif::[] -= 행동대장 -:source-highlighter: highlightjs :hardbreaks: -:toc: left :doctype: book :icons: font :toc-title: 전체 API 목록 :toclevels: 2 :sectlinks: -:sectnums: -:sectnumlevels: 2 - - -include::{docdir}/event.adoc[] -include::{docdir}/memberBillReport.adoc[] -include::{docdir}/member.adoc[] -include::{docdir}/bill.adoc[] -include::{docdir}/billDetail.adoc[] diff --git a/server/src/docs/asciidoc/member.adoc b/server/src/docs/asciidoc/member.adoc deleted file mode 100644 index e37a57d57..000000000 --- a/server/src/docs/asciidoc/member.adoc +++ /dev/null @@ -1,152 +0,0 @@ -== 참여자 - -=== 행사 참여자 추가(멤버 추가) - -operation::saveMembers[snippets="path-parameters,http-request,request-body,request-fields,http-response,request-cookies"] - -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - { - "code":"REQUEST_EMPTY", - "message":"멤버 목록은 공백일 수 없습니다." - }, - { - "code":"EVENT_NOT_FOUND", - "message":"존재하지 않는 행사입니다." - }, - { - "code":"MEMBER_ALREADY_EXIST", - "message":"현재 참여하고 있는 인원이 존재합니다." - }, - { - "code":"MEMBER_NAME_DUPLICATE", - "message":"중복된 이름이 존재합니다. 입력된 이름: [이상, 이상, 감자, 백호]" - }, - { - "code":"TOKEN_NOT_FOUND", - "message":"토큰이 존재하지 않습니다." - }, - { - "code":"TOKEN_EXPIRED", - "message":"만료된 토큰입니다." - }, - { - "code":"TOKEN_INVALID", - "message":"유효하지 않은 토큰입니다." - }, - { - "code":"FORBIDDEN", - "message":"접근할 수 없는 행사입니다." - } -] ----- - -=== 행사 참여 인원에서 삭제(멤버 삭제) - -operation::deleteMember[snippets="path-parameters,http-request,http-response,request-cookies"] - -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - { - "code":"EVENT_NOT_FOUND", - "message":"존재하지 않는 행사입니다." - }, - { - "code":"TOKEN_NOT_FOUND", - "message":"토큰이 존재하지 않습니다." - }, - { - "code":"TOKEN_EXPIRED", - "message":"만료된 토큰입니다." - }, - { - "code":"TOKEN_INVALID", - "message":"유효하지 않은 토큰입니다." - }, - { - "code":"FORBIDDEN", - "message":"접근할 수 없는 행사입니다." - } -] ----- - -=== 멤버 정보 수정 - -operation::updateMembers[snippets="path-parameters,http-request,request-body,request-fields,http-response,request-cookies"] - -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - { - "code": "REQUEST_EMPTY", - "message": "멤버 ID는 공백일 수 없습니다." - }, - { - "code": "REQUEST_EMPTY", - "message": "입금 여부는 공백일 수 없습니다." - }, - { - "code": "REQUEST_EMPTY", - "message": "멤버 이름은 공백일 수 없습니다." - }, - { - "code": "MEMBER_NAME_LENGTH_INVALID", - "message": "멤버 이름은 1자 이상 4자 이하만 입력 가능합니다." - }, - { - "code":"EVENT_NOT_FOUND", - "message":"존재하지 않는 행사입니다." - }, - { - "code": "MEMBER_UPDATE_MISMATCH", - "message": "업데이트 요청된 참여자 정보와 기존 행사 참여자 정보가 일치하지 않습니다." - }, - { - "code": "MEMBER_NAME_DUPLICATE", - "message": "중복된 행사 참여 인원 이름이 존재합니다." - }, - { - "code": "MEMBER_NAME_CHANGE_DUPLICATE", - "message": "중복된 참여 인원 이름 변경 요청이 존재합니다." - }, - { - "code":"TOKEN_NOT_FOUND", - "message":"토큰이 존재하지 않습니다." - }, - { - "code":"TOKEN_EXPIRED", - "message":"만료된 토큰입니다." - }, - { - "code":"TOKEN_INVALID", - "message":"유효하지 않은 토큰입니다." - }, - { - "code":"FORBIDDEN", - "message":"접근할 수 없는 행사입니다." - } -] ----- - -=== 현재 행사에 참여 중인 (탈주 가능한) 참여자 목록 조회 - -operation::getCurrentMembers[snippets="path-parameters,http-request,http-response,response-fields"] -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - { - "code":"EVENT_NOT_FOUND", - "message":"존재하지 않는 행사입니다." - } -] ----- diff --git a/server/src/docs/asciidoc/memberBillReport.adoc b/server/src/docs/asciidoc/memberBillReport.adoc deleted file mode 100644 index 18bd7d3ef..000000000 --- a/server/src/docs/asciidoc/memberBillReport.adoc +++ /dev/null @@ -1,17 +0,0 @@ -== 정산 - -=== 참여자별 정산 결과 조회 - -operation::getMemberBillReports[snippets="path-parameters,http-request,response-body,response-fields,http-response,http-request"] - -==== [.red]#Exceptions# - -[source,json,options="nowrap"] ----- -[ - { - "code":"EVENT_NOT_FOUND", - "message":"존재하지 않는 행사입니다." - } -] ----- diff --git a/server/src/main/java/server/haengdong/HaengdongApplication.java b/server/src/main/java/server/haengdong/HaengdongApplication.java deleted file mode 100644 index f25499e01..000000000 --- a/server/src/main/java/server/haengdong/HaengdongApplication.java +++ /dev/null @@ -1,16 +0,0 @@ -package server.haengdong; - -import lombok.extern.slf4j.Slf4j; -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.data.jpa.repository.config.EnableJpaAuditing; - -@Slf4j -@SpringBootApplication -public class HaengdongApplication { - - public static void main(String[] args) { - SpringApplication.run(HaengdongApplication.class, args); - } - -} diff --git a/server/src/main/java/server/haengdong/application/AuthService.java b/server/src/main/java/server/haengdong/application/AuthService.java deleted file mode 100644 index d9352ad53..000000000 --- a/server/src/main/java/server/haengdong/application/AuthService.java +++ /dev/null @@ -1,41 +0,0 @@ -package server.haengdong.application; - - -import java.util.Map; -import server.haengdong.domain.TokenProvider; -import server.haengdong.exception.AuthenticationException; -import server.haengdong.exception.HaengdongErrorCode; - -public class AuthService { - - private static final String TOKEN_NAME = "eventToken"; - private static final String CLAIM_SUB = "sub"; - - private final TokenProvider tokenProvider; - - public AuthService(TokenProvider tokenProvider) { - this.tokenProvider = tokenProvider; - } - - public String createToken(String eventId) { - Map<String, Object> payload = Map.of(CLAIM_SUB, eventId); - - return tokenProvider.createToken(payload); - } - - public String findEventIdByToken(String token) { - validateToken(token); - Map<String, Object> payload = tokenProvider.getPayload(token); - return (String) payload.get(CLAIM_SUB); - } - - private void validateToken(String token) { - if (!tokenProvider.validateToken(token)) { - throw new AuthenticationException(HaengdongErrorCode.TOKEN_INVALID); - } - } - - public String getTokenName() { - return TOKEN_NAME; - } -} diff --git a/server/src/main/java/server/haengdong/application/BillService.java b/server/src/main/java/server/haengdong/application/BillService.java deleted file mode 100644 index 407914d29..000000000 --- a/server/src/main/java/server/haengdong/application/BillService.java +++ /dev/null @@ -1,155 +0,0 @@ -package server.haengdong.application; - -import java.util.List; -import lombok.RequiredArgsConstructor; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; -import server.haengdong.application.request.BillAppRequest; -import server.haengdong.application.request.BillDetailUpdateAppRequest; -import server.haengdong.application.request.BillDetailsUpdateAppRequest; -import server.haengdong.application.request.BillUpdateAppRequest; -import server.haengdong.application.response.BillDetailsAppResponse; -import server.haengdong.application.response.StepAppResponse; -import server.haengdong.domain.bill.Bill; -import server.haengdong.domain.bill.BillDetail; -import server.haengdong.domain.bill.BillRepository; -import server.haengdong.domain.event.Event; -import server.haengdong.domain.event.EventRepository; -import server.haengdong.domain.member.Member; -import server.haengdong.domain.member.MemberRepository; -import server.haengdong.domain.step.Steps; -import server.haengdong.exception.HaengdongErrorCode; -import server.haengdong.exception.HaengdongException; - -@RequiredArgsConstructor -@Transactional(readOnly = true) -@Service -public class BillService { - - private final BillRepository billRepository; - private final EventRepository eventRepository; - private final MemberRepository memberRepository; - - @Transactional - public void saveBill(String eventToken, BillAppRequest request) { - Event event = getEvent(eventToken); - List<Long> memberIds = request.memberIds(); - List<Member> members = memberIds.stream() - .map(this::findMember) - .toList(); - - Bill bill = request.toBill(event, members); - billRepository.save(bill); - } - - private Member findMember(Long memberId) { - return memberRepository.findById(memberId) - .orElseThrow(() -> new HaengdongException(HaengdongErrorCode.MEMBER_NOT_FOUND)); - } - - public List<StepAppResponse> findSteps(String token) { - Event event = getEvent(token); - List<Bill> bills = billRepository.findAllByEvent(event); - - return createStepAppResponses(bills); - } - - private List<StepAppResponse> createStepAppResponses(List<Bill> bills) { - Steps steps = Steps.of(bills); - return steps.getSteps().stream() - .map(StepAppResponse::of) - .toList(); - } - - @Transactional - public void updateBill(String token, Long billId, BillUpdateAppRequest request) { - Bill bill = getBill(billId); - - validateToken(token, bill); - - bill.update(request.title(), request.price()); - } - - private void validateToken(String token, Bill bill) { - Event event = bill.getEvent(); - if (event.isTokenMismatch(token)) { - throw new HaengdongException(HaengdongErrorCode.BILL_NOT_FOUND); - } - } - - @Transactional - public void deleteBill(String token, Long billId) { - Bill bill = getBill(billId); - validateToken(token, bill); - billRepository.deleteById(billId); - } - - public BillDetailsAppResponse findBillDetails(String token, Long billId) { - Bill bill = billRepository.findById(billId) - .orElseThrow(() -> new HaengdongException(HaengdongErrorCode.BILL_NOT_FOUND)); - validateToken(token, bill); - - List<BillDetail> billDetails = bill.getBillDetails(); - return BillDetailsAppResponse.of(billDetails); - } - - @Transactional - public void updateBillDetails(String token, Long billId, BillDetailsUpdateAppRequest request) { - Bill bill = billRepository.findById(billId) - .orElseThrow(() -> new HaengdongException(HaengdongErrorCode.BILL_NOT_FOUND)); - - List<BillDetailUpdateAppRequest> billDetailUpdateAppRequests = request.billDetailUpdateAppRequests(); - - validateToken(token, bill); - validateBillDetailSize(billDetailUpdateAppRequests, bill); - validateTotalPrice(billDetailUpdateAppRequests, bill); - - List<BillDetail> billDetails = bill.getBillDetails(); - - for (BillDetailUpdateAppRequest updateRequest : billDetailUpdateAppRequests) { - BillDetail detailToUpdate = billDetails.stream() - .filter(detail -> detail.isSameId(updateRequest.id())) - .findFirst() - .orElseThrow(() -> new HaengdongException(HaengdongErrorCode.BILL_DETAIL_NOT_FOUND)); - - detailToUpdate.updatePrice(updateRequest.price()); - detailToUpdate.updateIsFixed(updateRequest.isFixed()); - } - } - - private void validateBillDetailSize(List<BillDetailUpdateAppRequest> requests, Bill bill) { - List<Long> ids = requests.stream() - .map(BillDetailUpdateAppRequest::id) - .distinct() - .toList(); - if (bill.getBillDetails().size() != ids.size()) { - throw new HaengdongException(HaengdongErrorCode.BILL_DETAIL_NOT_FOUND); - } - } - - private void validateTotalPrice( - List<BillDetailUpdateAppRequest> billDetailUpdateAppRequests, - Bill bill - ) { - Long requestsPriceSum = calculateUpdatePriceSum(billDetailUpdateAppRequests); - if (!bill.isSamePrice(requestsPriceSum)) { - throw new HaengdongException(HaengdongErrorCode.BILL_PRICE_NOT_MATCHED); - } - } - - private Long calculateUpdatePriceSum(List<BillDetailUpdateAppRequest> billDetailUpdateAppRequests) { - return billDetailUpdateAppRequests.stream() - .map(BillDetailUpdateAppRequest::price) - .reduce(0L, Long::sum); - } - - private Event getEvent(String eventToken) { - return eventRepository.findByToken(eventToken) - .orElseThrow(() -> new HaengdongException(HaengdongErrorCode.EVENT_NOT_FOUND)); - } - - private Bill getBill(Long billId) { - return billRepository.findById(billId) - .orElseThrow(() -> new HaengdongException(HaengdongErrorCode.BILL_NOT_FOUND)); - } -} diff --git a/server/src/main/java/server/haengdong/application/EventService.java b/server/src/main/java/server/haengdong/application/EventService.java deleted file mode 100644 index 2eb80f265..000000000 --- a/server/src/main/java/server/haengdong/application/EventService.java +++ /dev/null @@ -1,140 +0,0 @@ -package server.haengdong.application; - -import java.util.List; -import java.util.Map.Entry; -import lombok.RequiredArgsConstructor; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; -import server.haengdong.application.request.EventAppRequest; -import server.haengdong.application.request.EventLoginAppRequest; -import server.haengdong.application.request.EventUpdateAppRequest; -import server.haengdong.application.response.EventAppResponse; -import server.haengdong.application.response.EventDetailAppResponse; -import server.haengdong.application.response.EventImageAppResponse; -import server.haengdong.application.response.MemberBillReportAppResponse; -import server.haengdong.domain.bill.Bill; -import server.haengdong.domain.bill.BillRepository; -import server.haengdong.domain.bill.MemberBillReport; -import server.haengdong.domain.event.Event; -import server.haengdong.domain.event.EventImage; -import server.haengdong.domain.event.EventImageRepository; -import server.haengdong.domain.event.EventRepository; -import server.haengdong.domain.event.EventTokenProvider; -import server.haengdong.domain.member.Member; -import server.haengdong.exception.AuthenticationException; -import server.haengdong.exception.HaengdongErrorCode; -import server.haengdong.exception.HaengdongException; - -@RequiredArgsConstructor -@Transactional(readOnly = true) -@Service -public class EventService { - - private final EventRepository eventRepository; - private final EventTokenProvider eventTokenProvider; - private final BillRepository billRepository; - private final EventImageRepository eventImageRepository; - - @Value("${image.base-url}") - private String baseUrl; - - @Transactional - public EventAppResponse saveEvent(EventAppRequest request) { - String token = eventTokenProvider.createToken(); - Event event = request.toEvent(token); - eventRepository.save(event); - - return EventAppResponse.of(event); - } - - public EventDetailAppResponse findEvent(String token) { - Event event = getEvent(token); - - return EventDetailAppResponse.of(event); - } - - public void validatePassword(EventLoginAppRequest request) throws HaengdongException { - Event event = getEvent(request.token()); - if (event.isPasswordMismatch(request.password())) { - throw new AuthenticationException(HaengdongErrorCode.PASSWORD_INVALID); - } - } - - private Event getEvent(String token) { - return eventRepository.findByToken(token) - .orElseThrow(() -> new HaengdongException(HaengdongErrorCode.EVENT_NOT_FOUND)); - } - - public List<MemberBillReportAppResponse> getMemberBillReports(String token) { - Event event = eventRepository.findByToken(token) - .orElseThrow(() -> new HaengdongException(HaengdongErrorCode.EVENT_NOT_FOUND)); - List<Bill> bills = billRepository.findAllByEvent(event); - - MemberBillReport memberBillReport = MemberBillReport.createByBills(bills); - - return memberBillReport.getReports().entrySet().stream() - .map(this::createMemberBillReportResponse) - .toList(); - } - - private MemberBillReportAppResponse createMemberBillReportResponse(Entry<Member, Long> entry) { - Member member = entry.getKey(); - Long price = entry.getValue(); - - return new MemberBillReportAppResponse( - member.getId(), - member.getName(), - member.isDeposited(), - price - ); - } - - @Transactional - public void updateEvent(String token, EventUpdateAppRequest request) { - Event event = getEvent(token); - if (request.isEventNameExist()) { - event.rename(request.eventName()); - } - if (request.isAccountExist()) { - event.changeAccount(request.bankName(), request.accountNumber()); - } - } - - @Transactional - public void saveImages(String token, List<String> imageNames) { - Event event = getEvent(token); - - List<EventImage> images = imageNames.stream() - .map(imageName -> new EventImage(event, imageName)) - .toList(); - - eventImageRepository.saveAll(images); - } - - public List<EventImageAppResponse> findImages(String token) { - Event event = getEvent(token); - - return eventImageRepository.findAllByEvent(event) - .stream() - .map(image -> new EventImageAppResponse(image.getId(), createUrl(image))) - .toList(); - } - - private String createUrl(EventImage image) { - return baseUrl + image.getName(); - } - - @Transactional - public String deleteImage(String token, Long imageId) { - EventImage eventImage = eventImageRepository.findById(imageId) - .orElseThrow(() -> new HaengdongException(HaengdongErrorCode.IMAGE_NOT_FOUND)); - - Event event = eventImage.getEvent(); - if (event.isTokenMismatch(token)) { - throw new AuthenticationException(HaengdongErrorCode.PASSWORD_INVALID); - } - eventImageRepository.delete(eventImage); - return eventImage.getName(); - } -} diff --git a/server/src/main/java/server/haengdong/application/ImageService.java b/server/src/main/java/server/haengdong/application/ImageService.java deleted file mode 100644 index 6e0ffdb76..000000000 --- a/server/src/main/java/server/haengdong/application/ImageService.java +++ /dev/null @@ -1,72 +0,0 @@ -package server.haengdong.application; - -import static software.amazon.awssdk.core.sync.RequestBody.fromInputStream; - -import java.io.IOException; -import java.io.InputStream; -import java.util.List; -import java.util.UUID; -import lombok.RequiredArgsConstructor; -import lombok.extern.slf4j.Slf4j; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.stereotype.Service; -import org.springframework.web.multipart.MultipartFile; -import server.haengdong.application.response.ImageNameAppResponse; -import server.haengdong.exception.HaengdongErrorCode; -import server.haengdong.exception.HaengdongException; -import software.amazon.awssdk.services.s3.S3Client; -import software.amazon.awssdk.services.s3.model.DeleteObjectRequest; -import software.amazon.awssdk.services.s3.model.PutObjectRequest; - -@Slf4j -@RequiredArgsConstructor -@Service -public class ImageService { - - @Value("${image.bucket}") - private String bucketName; - - @Value("${image.directory}") - private String directoryPath; - - private final S3Client s3Client; - - public List<String> uploadImages(List<MultipartFile> images) { - return images.stream() - .map(this::uploadImage) - .toList(); - } - - private String uploadImage(MultipartFile image) { - try (InputStream inputStream = image.getInputStream()) { - return uploadImageToStorage(inputStream, image); - } catch (IOException e) { - throw new HaengdongException(HaengdongErrorCode.IMAGE_UPLOAD_FAIL); - } - } - - private String uploadImageToStorage(InputStream inputStream, MultipartFile image) { - String imageName = UUID.randomUUID() + image.getOriginalFilename(); - String key = directoryPath + imageName; - long contentLength = image.getSize(); - - PutObjectRequest putObjectRequest = PutObjectRequest.builder() - .bucket(bucketName) - .key(key) - .contentLength(contentLength) - .contentType(image.getContentType()) - .build(); - - s3Client.putObject(putObjectRequest, fromInputStream(inputStream, contentLength)); - return imageName; - } - - public void deleteImage(String imageName) { - DeleteObjectRequest deleteObjectRequest = DeleteObjectRequest.builder() - .bucket(bucketName) - .key(directoryPath + imageName) - .build(); - - s3Client.deleteObject(deleteObjectRequest); - } -} diff --git a/server/src/main/java/server/haengdong/application/MemberService.java b/server/src/main/java/server/haengdong/application/MemberService.java deleted file mode 100644 index 840c4f769..000000000 --- a/server/src/main/java/server/haengdong/application/MemberService.java +++ /dev/null @@ -1,118 +0,0 @@ -package server.haengdong.application; - - -import java.util.List; -import java.util.Set; -import lombok.RequiredArgsConstructor; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; -import server.haengdong.application.request.MemberSaveAppRequest; -import server.haengdong.application.request.MembersSaveAppRequest; -import server.haengdong.application.request.MembersUpdateAppRequest; -import server.haengdong.application.response.MemberAppResponse; -import server.haengdong.application.response.MembersDepositAppResponse; -import server.haengdong.application.response.MembersSaveAppResponse; -import server.haengdong.domain.bill.Bill; -import server.haengdong.domain.bill.BillRepository; -import server.haengdong.domain.event.Event; -import server.haengdong.domain.event.EventRepository; -import server.haengdong.domain.member.Member; -import server.haengdong.domain.member.MemberRepository; -import server.haengdong.domain.member.UpdatedMembers; -import server.haengdong.exception.HaengdongErrorCode; -import server.haengdong.exception.HaengdongException; - -@RequiredArgsConstructor -@Transactional(readOnly = true) -@Service -public class MemberService { - - private final MemberRepository memberRepository; - private final EventRepository eventRepository; - private final BillRepository billRepository; - - @Transactional - public MembersSaveAppResponse saveMembers(String token, MembersSaveAppRequest request) { - Event event = getEvent(token); - List<String> memberNames = request.members().stream() - .map(MemberSaveAppRequest::name) - .toList(); - - validateMemberSave(memberNames, event); - - List<Member> members = memberNames.stream() - .map(name -> new Member(event, name)) - .toList(); - - List<Member> savedMembers = memberRepository.saveAll(members); - return MembersSaveAppResponse.of(savedMembers); - } - - private void validateMemberSave(List<String> memberNames, Event event) { - Set<String> uniqueMemberNames = Set.copyOf(memberNames); - if (memberNames.size() != uniqueMemberNames.size()) { - throw new HaengdongException(HaengdongErrorCode.MEMBER_NAME_DUPLICATE, memberNames); - } - if (isDuplicatedMemberNames(uniqueMemberNames, event)) { - throw new HaengdongException(HaengdongErrorCode.MEMBER_ALREADY_EXIST); - } - } - - private boolean isDuplicatedMemberNames(Set<String> uniqueMemberNames, Event event) { - return memberRepository.findAllByEvent(event).stream() - .anyMatch(member -> uniqueMemberNames.contains(member.getName())); - } - - public List<MemberAppResponse> getCurrentMembers(String token) { - Event event = getEvent(token); - - return billRepository.findFirstByEventOrderByIdDesc(event) - .map(Bill::getMembers) - .orElseGet(() -> memberRepository.findAllByEvent(event)) - .stream() - .map(MemberAppResponse::of) - .toList(); - } - - public MembersDepositAppResponse findAllMembers(String token) { - Event event = getEvent(token); - - List<Member> members = memberRepository.findAllByEvent(event); - - return MembersDepositAppResponse.of(members); - } - - @Transactional - public void updateMembers(String token, MembersUpdateAppRequest request) { - Event event = getEvent(token); - UpdatedMembers updatedMembers = new UpdatedMembers(request.toMembers(event)); - List<Member> originMembers = memberRepository.findAllByEvent(event); - - updatedMembers.validateUpdatable(originMembers); - memberRepository.saveAll(updatedMembers.getMembers()); - } - - @Transactional - public void deleteMember(String token, Long memberId) { - memberRepository.findById(memberId) - .ifPresent(member -> deleteMember(token, member)); - } - - private void deleteMember(String token, Member member) { - Event event = member.getEvent(); - if (event.isTokenMismatch(token)) { - throw new HaengdongException(HaengdongErrorCode.MEMBER_NOT_FOUND); - } - - billRepository.findAllByEvent(event).stream() - .filter(bill -> bill.containMember(member)) - .forEach(bill -> bill.removeMemberBillDetail(member)); - billRepository.flush(); - memberRepository.delete(member); - } - - private Event getEvent(String token) { - return eventRepository.findByToken(token) - .orElseThrow(() -> new HaengdongException(HaengdongErrorCode.EVENT_NOT_FOUND)); - } -} diff --git a/server/src/main/java/server/haengdong/application/request/BillAppRequest.java b/server/src/main/java/server/haengdong/application/request/BillAppRequest.java deleted file mode 100644 index 8eb945263..000000000 --- a/server/src/main/java/server/haengdong/application/request/BillAppRequest.java +++ /dev/null @@ -1,17 +0,0 @@ -package server.haengdong.application.request; - -import java.util.List; -import server.haengdong.domain.bill.Bill; -import server.haengdong.domain.member.Member; -import server.haengdong.domain.event.Event; - -public record BillAppRequest( - String title, - Long price, - List<Long> memberIds -) { - - public Bill toBill(Event event, List<Member> members) { - return Bill.create(event, title, price, members); - } -} diff --git a/server/src/main/java/server/haengdong/application/request/BillDetailUpdateAppRequest.java b/server/src/main/java/server/haengdong/application/request/BillDetailUpdateAppRequest.java deleted file mode 100644 index 4e66b9215..000000000 --- a/server/src/main/java/server/haengdong/application/request/BillDetailUpdateAppRequest.java +++ /dev/null @@ -1,8 +0,0 @@ -package server.haengdong.application.request; - -public record BillDetailUpdateAppRequest( - Long id, - Long price, - boolean isFixed -) { -} diff --git a/server/src/main/java/server/haengdong/application/request/BillDetailsUpdateAppRequest.java b/server/src/main/java/server/haengdong/application/request/BillDetailsUpdateAppRequest.java deleted file mode 100644 index 7a6477e08..000000000 --- a/server/src/main/java/server/haengdong/application/request/BillDetailsUpdateAppRequest.java +++ /dev/null @@ -1,8 +0,0 @@ -package server.haengdong.application.request; - -import java.util.List; - -public record BillDetailsUpdateAppRequest( - List<BillDetailUpdateAppRequest> billDetailUpdateAppRequests -) { -} diff --git a/server/src/main/java/server/haengdong/application/request/BillUpdateAppRequest.java b/server/src/main/java/server/haengdong/application/request/BillUpdateAppRequest.java deleted file mode 100644 index aa09f2351..000000000 --- a/server/src/main/java/server/haengdong/application/request/BillUpdateAppRequest.java +++ /dev/null @@ -1,7 +0,0 @@ -package server.haengdong.application.request; - -public record BillUpdateAppRequest( - String title, - Long price -) { -} diff --git a/server/src/main/java/server/haengdong/application/request/EventAppRequest.java b/server/src/main/java/server/haengdong/application/request/EventAppRequest.java deleted file mode 100644 index 20ec16d88..000000000 --- a/server/src/main/java/server/haengdong/application/request/EventAppRequest.java +++ /dev/null @@ -1,10 +0,0 @@ -package server.haengdong.application.request; - -import server.haengdong.domain.event.Event; - -public record EventAppRequest(String name, String password) { - - public Event toEvent(String token) { - return new Event(name, password, token); - } -} diff --git a/server/src/main/java/server/haengdong/application/request/EventLoginAppRequest.java b/server/src/main/java/server/haengdong/application/request/EventLoginAppRequest.java deleted file mode 100644 index 947b5ef39..000000000 --- a/server/src/main/java/server/haengdong/application/request/EventLoginAppRequest.java +++ /dev/null @@ -1,4 +0,0 @@ -package server.haengdong.application.request; - -public record EventLoginAppRequest(String token, String password) { -} diff --git a/server/src/main/java/server/haengdong/application/request/EventUpdateAppRequest.java b/server/src/main/java/server/haengdong/application/request/EventUpdateAppRequest.java deleted file mode 100644 index 13bffccc1..000000000 --- a/server/src/main/java/server/haengdong/application/request/EventUpdateAppRequest.java +++ /dev/null @@ -1,17 +0,0 @@ -package server.haengdong.application.request; - -public record EventUpdateAppRequest( - String eventName, - String bankName, - String accountNumber -) { - - public boolean isEventNameExist() { - return eventName != null && !eventName.trim().isEmpty(); - } - - public boolean isAccountExist() { - return bankName != null && !bankName.trim().isEmpty() - && accountNumber != null && !accountNumber.trim().isEmpty(); - } -} diff --git a/server/src/main/java/server/haengdong/application/request/MemberNameUpdateAppRequest.java b/server/src/main/java/server/haengdong/application/request/MemberNameUpdateAppRequest.java deleted file mode 100644 index b36d71cc1..000000000 --- a/server/src/main/java/server/haengdong/application/request/MemberNameUpdateAppRequest.java +++ /dev/null @@ -1,7 +0,0 @@ -package server.haengdong.application.request; - -public record MemberNameUpdateAppRequest( - Long id, - String name -) { -} diff --git a/server/src/main/java/server/haengdong/application/request/MemberNamesUpdateAppRequest.java b/server/src/main/java/server/haengdong/application/request/MemberNamesUpdateAppRequest.java deleted file mode 100644 index cd0c00544..000000000 --- a/server/src/main/java/server/haengdong/application/request/MemberNamesUpdateAppRequest.java +++ /dev/null @@ -1,8 +0,0 @@ -package server.haengdong.application.request; - -import java.util.List; - -public record MemberNamesUpdateAppRequest( - List<MemberNameUpdateAppRequest> members -) { -} diff --git a/server/src/main/java/server/haengdong/application/request/MemberSaveAppRequest.java b/server/src/main/java/server/haengdong/application/request/MemberSaveAppRequest.java deleted file mode 100644 index 45dc234e3..000000000 --- a/server/src/main/java/server/haengdong/application/request/MemberSaveAppRequest.java +++ /dev/null @@ -1,4 +0,0 @@ -package server.haengdong.application.request; - -public record MemberSaveAppRequest(String name) { -} diff --git a/server/src/main/java/server/haengdong/application/request/MemberUpdateAppRequest.java b/server/src/main/java/server/haengdong/application/request/MemberUpdateAppRequest.java deleted file mode 100644 index 77df0625b..000000000 --- a/server/src/main/java/server/haengdong/application/request/MemberUpdateAppRequest.java +++ /dev/null @@ -1,16 +0,0 @@ -package server.haengdong.application.request; - - -import server.haengdong.domain.member.Member; -import server.haengdong.domain.event.Event; - -public record MemberUpdateAppRequest( - Long id, - String name, - boolean isDeposited -) { - - public Member toMember(Event event) { - return new Member(id, event, name, isDeposited); - } -} diff --git a/server/src/main/java/server/haengdong/application/request/MembersSaveAppRequest.java b/server/src/main/java/server/haengdong/application/request/MembersSaveAppRequest.java deleted file mode 100644 index ae0c9fc62..000000000 --- a/server/src/main/java/server/haengdong/application/request/MembersSaveAppRequest.java +++ /dev/null @@ -1,8 +0,0 @@ -package server.haengdong.application.request; - -import java.util.List; - -public record MembersSaveAppRequest( - List<MemberSaveAppRequest> members -) { -} diff --git a/server/src/main/java/server/haengdong/application/request/MembersUpdateAppRequest.java b/server/src/main/java/server/haengdong/application/request/MembersUpdateAppRequest.java deleted file mode 100644 index aa3253504..000000000 --- a/server/src/main/java/server/haengdong/application/request/MembersUpdateAppRequest.java +++ /dev/null @@ -1,14 +0,0 @@ -package server.haengdong.application.request; - -import java.util.List; -import server.haengdong.domain.event.Event; -import server.haengdong.domain.member.Member; - -public record MembersUpdateAppRequest(List<MemberUpdateAppRequest> members) { - - public List<Member> toMembers(Event event) { - return members.stream() - .map(memberRequest -> memberRequest.toMember(event)) - .toList(); - } -} diff --git a/server/src/main/java/server/haengdong/application/response/BillAppResponse.java b/server/src/main/java/server/haengdong/application/response/BillAppResponse.java deleted file mode 100644 index 6ee68935c..000000000 --- a/server/src/main/java/server/haengdong/application/response/BillAppResponse.java +++ /dev/null @@ -1,15 +0,0 @@ -package server.haengdong.application.response; - -import server.haengdong.domain.bill.Bill; - -public record BillAppResponse( - Long id, - String title, - Long price, - boolean isFixed -) { - - public static BillAppResponse of(Bill bill) { - return new BillAppResponse(bill.getId(), bill.getTitle(), bill.getPrice(), bill.isFixed()); - } -} diff --git a/server/src/main/java/server/haengdong/application/response/BillDetailAppResponse.java b/server/src/main/java/server/haengdong/application/response/BillDetailAppResponse.java deleted file mode 100644 index 6618135cb..000000000 --- a/server/src/main/java/server/haengdong/application/response/BillDetailAppResponse.java +++ /dev/null @@ -1,20 +0,0 @@ -package server.haengdong.application.response; - -import server.haengdong.domain.bill.BillDetail; - -public record BillDetailAppResponse( - Long id, - String memberName, - Long price, - boolean isFixed -) { - - public static BillDetailAppResponse of(BillDetail billDetail) { - return new BillDetailAppResponse( - billDetail.getId(), - billDetail.getMember().getName(), - billDetail.getPrice(), - billDetail.isFixed() - ); - } -} diff --git a/server/src/main/java/server/haengdong/application/response/BillDetailsAppResponse.java b/server/src/main/java/server/haengdong/application/response/BillDetailsAppResponse.java deleted file mode 100644 index 3618e0d08..000000000 --- a/server/src/main/java/server/haengdong/application/response/BillDetailsAppResponse.java +++ /dev/null @@ -1,14 +0,0 @@ -package server.haengdong.application.response; - -import java.util.List; -import java.util.stream.Collectors; -import server.haengdong.domain.bill.BillDetail; - -public record BillDetailsAppResponse(List<BillDetailAppResponse> billDetails) { - - public static BillDetailsAppResponse of(List<BillDetail> billDetails) { - return billDetails.stream() - .map(BillDetailAppResponse::of) - .collect(Collectors.collectingAndThen(Collectors.toList(), BillDetailsAppResponse::new)); - } -} diff --git a/server/src/main/java/server/haengdong/application/response/EventAppResponse.java b/server/src/main/java/server/haengdong/application/response/EventAppResponse.java deleted file mode 100644 index f331d0011..000000000 --- a/server/src/main/java/server/haengdong/application/response/EventAppResponse.java +++ /dev/null @@ -1,10 +0,0 @@ -package server.haengdong.application.response; - -import server.haengdong.domain.event.Event; - -public record EventAppResponse(String token) { - - public static EventAppResponse of(Event event) { - return new EventAppResponse(event.getToken()); - } -} diff --git a/server/src/main/java/server/haengdong/application/response/EventDetailAppResponse.java b/server/src/main/java/server/haengdong/application/response/EventDetailAppResponse.java deleted file mode 100644 index 899ea76ec..000000000 --- a/server/src/main/java/server/haengdong/application/response/EventDetailAppResponse.java +++ /dev/null @@ -1,14 +0,0 @@ -package server.haengdong.application.response; - -import server.haengdong.domain.event.Event; - -public record EventDetailAppResponse( - String eventName, - String bankName, - String accountNumber -) { - - public static EventDetailAppResponse of(Event event) { - return new EventDetailAppResponse(event.getName(), event.getBankName(), event.getAccountNumber()); - } -} diff --git a/server/src/main/java/server/haengdong/application/response/EventImageAppResponse.java b/server/src/main/java/server/haengdong/application/response/EventImageAppResponse.java deleted file mode 100644 index 26e442403..000000000 --- a/server/src/main/java/server/haengdong/application/response/EventImageAppResponse.java +++ /dev/null @@ -1,7 +0,0 @@ -package server.haengdong.application.response; - -public record EventImageAppResponse( - Long id, - String url -) { -} diff --git a/server/src/main/java/server/haengdong/application/response/ImageNameAppResponse.java b/server/src/main/java/server/haengdong/application/response/ImageNameAppResponse.java deleted file mode 100644 index 2e6efaceb..000000000 --- a/server/src/main/java/server/haengdong/application/response/ImageNameAppResponse.java +++ /dev/null @@ -1,11 +0,0 @@ -package server.haengdong.application.response; - -import server.haengdong.domain.event.Event; -import server.haengdong.domain.event.EventImage; - -public record ImageNameAppResponse(String name) { - - public EventImage toEventImage(Event event) { - return new EventImage(event, name); - } -} diff --git a/server/src/main/java/server/haengdong/application/response/LastBillMemberAppResponse.java b/server/src/main/java/server/haengdong/application/response/LastBillMemberAppResponse.java deleted file mode 100644 index abefe009a..000000000 --- a/server/src/main/java/server/haengdong/application/response/LastBillMemberAppResponse.java +++ /dev/null @@ -1,10 +0,0 @@ -package server.haengdong.application.response; - -import server.haengdong.domain.member.Member; - -public record LastBillMemberAppResponse(Long id, String name) { - - public static LastBillMemberAppResponse of(Member member) { - return new LastBillMemberAppResponse(member.getId(), member.getName()); - } -} diff --git a/server/src/main/java/server/haengdong/application/response/MemberAppResponse.java b/server/src/main/java/server/haengdong/application/response/MemberAppResponse.java deleted file mode 100644 index 98579b2d1..000000000 --- a/server/src/main/java/server/haengdong/application/response/MemberAppResponse.java +++ /dev/null @@ -1,13 +0,0 @@ -package server.haengdong.application.response; - -import server.haengdong.domain.member.Member; - -public record MemberAppResponse( - Long id, - String name -) { - - public static MemberAppResponse of(Member member) { - return new MemberAppResponse(member.getId(), member.getName()); - } -} diff --git a/server/src/main/java/server/haengdong/application/response/MemberBillReportAppResponse.java b/server/src/main/java/server/haengdong/application/response/MemberBillReportAppResponse.java deleted file mode 100644 index 875578fbc..000000000 --- a/server/src/main/java/server/haengdong/application/response/MemberBillReportAppResponse.java +++ /dev/null @@ -1,9 +0,0 @@ -package server.haengdong.application.response; - -public record MemberBillReportAppResponse( - Long memberId, - String name, - boolean isDeposited, - Long price -) { -} diff --git a/server/src/main/java/server/haengdong/application/response/MemberDepositAppResponse.java b/server/src/main/java/server/haengdong/application/response/MemberDepositAppResponse.java deleted file mode 100644 index bb09e02df..000000000 --- a/server/src/main/java/server/haengdong/application/response/MemberDepositAppResponse.java +++ /dev/null @@ -1,14 +0,0 @@ -package server.haengdong.application.response; - -import server.haengdong.domain.member.Member; - -public record MemberDepositAppResponse( - Long id, - String name, - boolean isDeposited -) { - - public static MemberDepositAppResponse of(Member member) { - return new MemberDepositAppResponse(member.getId(), member.getName(), member.isDeposited()); - } -} diff --git a/server/src/main/java/server/haengdong/application/response/MemberSaveAppResponse.java b/server/src/main/java/server/haengdong/application/response/MemberSaveAppResponse.java deleted file mode 100644 index bd1d117f2..000000000 --- a/server/src/main/java/server/haengdong/application/response/MemberSaveAppResponse.java +++ /dev/null @@ -1,13 +0,0 @@ -package server.haengdong.application.response; - -import server.haengdong.domain.member.Member; - -public record MemberSaveAppResponse( - Long id, - String name -) { - - public static MemberSaveAppResponse of(Member member) { - return new MemberSaveAppResponse(member.getId(), member.getName()); - } -} diff --git a/server/src/main/java/server/haengdong/application/response/MembersDepositAppResponse.java b/server/src/main/java/server/haengdong/application/response/MembersDepositAppResponse.java deleted file mode 100644 index 007904d25..000000000 --- a/server/src/main/java/server/haengdong/application/response/MembersDepositAppResponse.java +++ /dev/null @@ -1,15 +0,0 @@ -package server.haengdong.application.response; - -import java.util.List; -import server.haengdong.domain.member.Member; - -public record MembersDepositAppResponse( - List<MemberDepositAppResponse> members -) { - - public static MembersDepositAppResponse of(List<Member> members) { - return new MembersDepositAppResponse(members.stream() - .map(MemberDepositAppResponse::of) - .toList()); - } -} diff --git a/server/src/main/java/server/haengdong/application/response/MembersSaveAppResponse.java b/server/src/main/java/server/haengdong/application/response/MembersSaveAppResponse.java deleted file mode 100644 index c81fe0996..000000000 --- a/server/src/main/java/server/haengdong/application/response/MembersSaveAppResponse.java +++ /dev/null @@ -1,17 +0,0 @@ -package server.haengdong.application.response; - -import java.util.List; -import server.haengdong.domain.member.Member; - -public record MembersSaveAppResponse( - List<MemberSaveAppResponse> members -) { - - public static MembersSaveAppResponse of(List<Member> members) { - return new MembersSaveAppResponse( - members.stream() - .map(MemberSaveAppResponse::of) - .toList() - ); - } -} diff --git a/server/src/main/java/server/haengdong/application/response/StepAppResponse.java b/server/src/main/java/server/haengdong/application/response/StepAppResponse.java deleted file mode 100644 index 57ca1860c..000000000 --- a/server/src/main/java/server/haengdong/application/response/StepAppResponse.java +++ /dev/null @@ -1,22 +0,0 @@ -package server.haengdong.application.response; - -import java.util.List; -import server.haengdong.domain.step.Step; - -public record StepAppResponse( - List<BillAppResponse> bills, - List<MemberAppResponse> members -) { - - public static StepAppResponse of(Step step) { - List<BillAppResponse> billAppResponses = step.getBills().stream() - .map(BillAppResponse::of) - .toList(); - - List<MemberAppResponse> memberAppResponses = step.getMembers().stream() - .map(MemberAppResponse::of) - .toList(); - - return new StepAppResponse(billAppResponses, memberAppResponses); - } -} diff --git a/server/src/main/java/server/haengdong/config/AdminInterceptor.java b/server/src/main/java/server/haengdong/config/AdminInterceptor.java deleted file mode 100644 index acfe99789..000000000 --- a/server/src/main/java/server/haengdong/config/AdminInterceptor.java +++ /dev/null @@ -1,56 +0,0 @@ -package server.haengdong.config; - -import jakarta.servlet.http.HttpServletRequest; -import jakarta.servlet.http.HttpServletResponse; -import java.util.regex.Matcher; -import java.util.regex.Pattern; -import lombok.extern.slf4j.Slf4j; -import org.springframework.http.HttpMethod; -import org.springframework.web.servlet.HandlerInterceptor; -import server.haengdong.application.AuthService; -import server.haengdong.exception.AuthenticationException; -import server.haengdong.exception.HaengdongErrorCode; -import server.haengdong.infrastructure.auth.AuthenticationExtractor; - -@Slf4j -public class AdminInterceptor implements HandlerInterceptor { - - private static final String ADMIN_URI_REGEX = "/api/admin/events/([^/]+)"; - private static final Pattern ADMIN_URI_PATTERN = Pattern.compile(ADMIN_URI_REGEX); - private static final int EVENT_TOKEN_MATCHER_INDEX = 1; - - private final AuthService authService; - private final AuthenticationExtractor authenticationExtractor; - - public AdminInterceptor(AuthService authService, AuthenticationExtractor authenticationExtractor) { - this.authService = authService; - this.authenticationExtractor = authenticationExtractor; - } - - @Override - public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) { - HttpMethod method = HttpMethod.valueOf(request.getMethod()); - if (HttpMethod.OPTIONS.equals(method)) { - return true; - } - validateToken(request); - return true; - } - - private void validateToken(HttpServletRequest request) { - String token = authenticationExtractor.extract(request, authService.getTokenName()); - String tokenEventId = authService.findEventIdByToken(token); - String uri = request.getRequestURI(); - - Matcher matcher = ADMIN_URI_PATTERN.matcher(uri); - if (!matcher.find()) { - throw new AuthenticationException(HaengdongErrorCode.FORBIDDEN); - } - - String eventToken = matcher.group(EVENT_TOKEN_MATCHER_INDEX); - if (!tokenEventId.equals(eventToken)) { - log.warn("[행사 접근 불가] Cookie EventId = {}, URL EventId = {}", tokenEventId, eventToken); - throw new AuthenticationException(HaengdongErrorCode.FORBIDDEN); - } - } -} diff --git a/server/src/main/java/server/haengdong/config/JpaConfig.java b/server/src/main/java/server/haengdong/config/JpaConfig.java deleted file mode 100644 index f0210e4b0..000000000 --- a/server/src/main/java/server/haengdong/config/JpaConfig.java +++ /dev/null @@ -1,9 +0,0 @@ -package server.haengdong.config; - -import org.springframework.context.annotation.Configuration; -import org.springframework.data.jpa.repository.config.EnableJpaAuditing; - -@Configuration -@EnableJpaAuditing -public class JpaConfig { -} diff --git a/server/src/main/java/server/haengdong/config/RequestServletFilter.java b/server/src/main/java/server/haengdong/config/RequestServletFilter.java deleted file mode 100644 index b1afdb6f8..000000000 --- a/server/src/main/java/server/haengdong/config/RequestServletFilter.java +++ /dev/null @@ -1,23 +0,0 @@ -package server.haengdong.config; - -import jakarta.servlet.Filter; -import jakarta.servlet.FilterChain; -import jakarta.servlet.ServletException; -import jakarta.servlet.ServletRequest; -import jakarta.servlet.ServletResponse; -import jakarta.servlet.http.HttpServletRequest; -import java.io.IOException; -import org.springframework.stereotype.Component; -import org.springframework.web.util.ContentCachingRequestWrapper; - -@Component -public class RequestServletFilter implements Filter { - - @Override - public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) - throws IOException, ServletException { - ContentCachingRequestWrapper wrappedRequest = new ContentCachingRequestWrapper((HttpServletRequest) request); - - chain.doFilter(wrappedRequest, response); - } -} diff --git a/server/src/main/java/server/haengdong/config/S3Config.java b/server/src/main/java/server/haengdong/config/S3Config.java deleted file mode 100644 index 13aa51546..000000000 --- a/server/src/main/java/server/haengdong/config/S3Config.java +++ /dev/null @@ -1,17 +0,0 @@ -package server.haengdong.config; - -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import software.amazon.awssdk.regions.Region; -import software.amazon.awssdk.services.s3.S3Client; - -@Configuration -public class S3Config { - - @Bean - public S3Client s3Client() { - return S3Client.builder() - .region(Region.AP_NORTHEAST_2) - .build(); - } -} diff --git a/server/src/main/java/server/haengdong/config/WebMvcConfig.java b/server/src/main/java/server/haengdong/config/WebMvcConfig.java deleted file mode 100644 index 43f858db3..000000000 --- a/server/src/main/java/server/haengdong/config/WebMvcConfig.java +++ /dev/null @@ -1,65 +0,0 @@ -package server.haengdong.config; - -import lombok.RequiredArgsConstructor; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.boot.context.properties.EnableConfigurationProperties; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.web.servlet.config.annotation.CorsRegistry; -import org.springframework.web.servlet.config.annotation.InterceptorRegistry; -import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; -import server.haengdong.application.AuthService; -import server.haengdong.domain.TokenProvider; -import server.haengdong.infrastructure.auth.AuthenticationExtractor; -import server.haengdong.infrastructure.auth.JwtTokenProvider; -import server.haengdong.infrastructure.auth.TokenProperties; - -@RequiredArgsConstructor -@EnableConfigurationProperties(TokenProperties.class) -@Configuration -public class WebMvcConfig implements WebMvcConfigurer { - - private final TokenProperties tokenProperties; - - @Value("${cors.max-age}") - private Long maxAge; - - @Value("${cors.allowed-origins}") - private String[] allowedOrigins; - - @Override - public void addCorsMappings(CorsRegistry registry) { - registry.addMapping("/**") - .allowedOrigins(allowedOrigins) - .allowedMethods("GET", "POST", "PUT", "PATCH", "DELETE", "OPTIONS") - .allowedHeaders("*") - .allowCredentials(true) - .maxAge(maxAge); - } - - @Override - public void addInterceptors(InterceptorRegistry registry) { - registry.addInterceptor(adminInterceptor()) - .addPathPatterns("/api/admin/**"); - } - - @Bean - public AdminInterceptor adminInterceptor() { - return new AdminInterceptor(authService(), authenticationExtractor()); - } - - @Bean - public AuthService authService() { - return new AuthService(tokenProvider()); - } - - @Bean - public TokenProvider tokenProvider() { - return new JwtTokenProvider(tokenProperties); - } - - @Bean - public AuthenticationExtractor authenticationExtractor() { - return new AuthenticationExtractor(); - } -} diff --git a/server/src/main/java/server/haengdong/domain/BaseEntity.java b/server/src/main/java/server/haengdong/domain/BaseEntity.java deleted file mode 100644 index 2eb4aa01c..000000000 --- a/server/src/main/java/server/haengdong/domain/BaseEntity.java +++ /dev/null @@ -1,23 +0,0 @@ -package server.haengdong.domain; - -import jakarta.persistence.Column; -import jakarta.persistence.EntityListeners; -import jakarta.persistence.MappedSuperclass; -import java.time.Instant; -import lombok.Getter; -import org.springframework.data.annotation.CreatedDate; -import org.springframework.data.annotation.LastModifiedDate; -import org.springframework.data.jpa.domain.support.AuditingEntityListener; - -@Getter -@EntityListeners(AuditingEntityListener.class) -@MappedSuperclass -public abstract class BaseEntity { - - @Column(updatable = false) - @CreatedDate - private Instant createdAt; - - @LastModifiedDate - private Instant updatedAt; -} diff --git a/server/src/main/java/server/haengdong/domain/TokenProvider.java b/server/src/main/java/server/haengdong/domain/TokenProvider.java deleted file mode 100644 index 28e7956c3..000000000 --- a/server/src/main/java/server/haengdong/domain/TokenProvider.java +++ /dev/null @@ -1,12 +0,0 @@ -package server.haengdong.domain; - -import java.util.Map; - -public interface TokenProvider { - - String createToken(Map<String, Object> payload); - - Map<String, Object> getPayload(String token); - - boolean validateToken(String token); -} diff --git a/server/src/main/java/server/haengdong/domain/bill/Bill.java b/server/src/main/java/server/haengdong/domain/bill/Bill.java deleted file mode 100644 index 747a526e0..000000000 --- a/server/src/main/java/server/haengdong/domain/bill/Bill.java +++ /dev/null @@ -1,159 +0,0 @@ -package server.haengdong.domain.bill; - -import jakarta.persistence.CascadeType; -import jakarta.persistence.Column; -import jakarta.persistence.Entity; -import jakarta.persistence.FetchType; -import jakarta.persistence.GeneratedValue; -import jakarta.persistence.GenerationType; -import jakarta.persistence.Id; -import jakarta.persistence.JoinColumn; -import jakarta.persistence.ManyToOne; -import jakarta.persistence.OneToMany; -import java.util.ArrayList; -import java.util.Iterator; -import java.util.List; -import java.util.Set; -import java.util.stream.Collectors; -import java.util.stream.Stream; -import lombok.AccessLevel; -import lombok.Getter; -import lombok.NoArgsConstructor; -import server.haengdong.domain.BaseEntity; -import server.haengdong.domain.member.Member; -import server.haengdong.domain.event.Event; -import server.haengdong.exception.HaengdongErrorCode; -import server.haengdong.exception.HaengdongException; - -@Getter -@NoArgsConstructor(access = AccessLevel.PROTECTED) -@Entity -public class Bill extends BaseEntity { - - private static final int MIN_TITLE_LENGTH = 1; - private static final int MAX_TITLE_LENGTH = 30; - private static final long MIN_PRICE = 1L; - private static final long MAX_PRICE = 10_000_000L; - - @Id - @GeneratedValue(strategy = GenerationType.IDENTITY) - private Long id; - - @JoinColumn(name = "event_id", nullable = false) - @ManyToOne(fetch = FetchType.LAZY) - private Event event; - - @Column(nullable = false, length = MAX_TITLE_LENGTH) - private String title; - - @Column(nullable = false) - private Long price; - - @OneToMany(mappedBy = "bill", cascade = CascadeType.ALL, orphanRemoval = true, fetch = FetchType.LAZY) - private List<BillDetail> billDetails = new ArrayList<>(); - - public Bill(Event event, String title, Long price) { - validateTitle(title); - validatePrice(price); - this.event = event; - this.title = title.trim(); - this.price = price; - } - - private void validateTitle(String title) { - int titleLength = title.trim().length(); - if (titleLength < MIN_TITLE_LENGTH || titleLength > MAX_TITLE_LENGTH) { - throw new HaengdongException(HaengdongErrorCode.BILL_TITLE_INVALID, MIN_TITLE_LENGTH, MAX_TITLE_LENGTH); - } - } - - private void validatePrice(Long price) { - if (price < MIN_PRICE || price > MAX_PRICE) { - throw new HaengdongException(HaengdongErrorCode.BILL_PRICE_INVALID, MAX_PRICE); - } - } - - public static Bill create(Event event, String title, Long price, List<Member> members) { - Bill bill = new Bill(event, title, price); - bill.resetBillDetails(members); - return bill; - } - - public void resetBillDetails(List<Member> members) { - this.billDetails.clear(); - Iterator<Long> priceIterator = distributePrice(members.size()).iterator(); - - for (Member member : members) { - BillDetail billDetail = new BillDetail(this, member, priceIterator.next(), false); - this.billDetails.add(billDetail); - } - } - - private void resetBillDetails() { - Iterator<Long> priceIterator = distributePrice(billDetails.size()).iterator(); - - billDetails.forEach(billDetail -> { - billDetail.updatePrice(priceIterator.next()); - billDetail.updateIsFixed(false); - }); - } - - private List<Long> distributePrice(int memberCount) { - if (memberCount == 0) { - return new ArrayList<>(); - } - long eachPrice = price / memberCount; - long remainder = price % memberCount; - - List<Long> results = Stream.generate(() -> eachPrice) - .limit(memberCount - 1) - .collect(Collectors.toList()); - results.add(eachPrice + remainder); - return results; - } - - public void removeMemberBillDetail(Member member) { - BillDetail foundBillDetail = billDetails.stream() - .filter(billDetail -> billDetail.isMember(member)) - .findFirst() - .orElseThrow(() -> new HaengdongException(HaengdongErrorCode.MEMBER_NOT_FOUND)); - - billDetails.remove(foundBillDetail); - resetBillDetails(); - } - - public void update(String title, Long price) { - validateTitle(title); - validatePrice(price); - this.title = title.trim(); - this.price = price; - resetBillDetails(); - } - - public boolean containMember(Member member) { - return billDetails.stream() - .anyMatch(billDetail -> billDetail.isMember(member)); - } - - public boolean isSameMembers(Bill other) { - Set<Member> members = Set.copyOf(this.getMembers()); - Set<Member> otherMembers = Set.copyOf(other.getMembers()); - - return members.equals(otherMembers); - } - - public boolean isSamePrice(Long price) { - return this.price.equals(price); - } - - public boolean isFixed() { - return billDetails.stream() - .anyMatch(BillDetail::isFixed); - } - - public List<Member> getMembers() { - return billDetails.stream() - .map(BillDetail::getMember) - .toList(); - } -} diff --git a/server/src/main/java/server/haengdong/domain/bill/BillDetail.java b/server/src/main/java/server/haengdong/domain/bill/BillDetail.java deleted file mode 100644 index 8a754b2b9..000000000 --- a/server/src/main/java/server/haengdong/domain/bill/BillDetail.java +++ /dev/null @@ -1,62 +0,0 @@ -package server.haengdong.domain.bill; - -import jakarta.persistence.Column; -import jakarta.persistence.Entity; -import jakarta.persistence.FetchType; -import jakarta.persistence.GeneratedValue; -import jakarta.persistence.GenerationType; -import jakarta.persistence.Id; -import jakarta.persistence.JoinColumn; -import jakarta.persistence.ManyToOne; -import lombok.AccessLevel; -import lombok.Getter; -import lombok.NoArgsConstructor; -import server.haengdong.domain.BaseEntity; -import server.haengdong.domain.member.Member; - -@Getter -@NoArgsConstructor(access = AccessLevel.PROTECTED) -@Entity -public class BillDetail extends BaseEntity { - - @Id - @GeneratedValue(strategy = GenerationType.IDENTITY) - private Long id; - - @JoinColumn(nullable = false) - @ManyToOne(fetch = FetchType.LAZY) - private Bill bill; - - @JoinColumn(name = "member_id", nullable = false) - @ManyToOne(fetch = FetchType.LAZY) - private Member member; - - @Column(nullable = false) - private Long price; - - @Column(nullable = false) - private boolean isFixed; - - public BillDetail(Bill bill, Member member, Long price, boolean isFixed) { - this.bill = bill; - this.member = member; - this.price = price; - this.isFixed = isFixed; - } - - public void updatePrice(Long price) { - this.price = price; - } - - public void updateIsFixed(boolean isFixed) { - this.isFixed = isFixed; - } - - public boolean isSameId(Long id) { - return this.id.equals(id); - } - - public boolean isMember(Member member) { - return this.member.equals(member); - } -} diff --git a/server/src/main/java/server/haengdong/domain/bill/BillRepository.java b/server/src/main/java/server/haengdong/domain/bill/BillRepository.java deleted file mode 100644 index 23efe487c..000000000 --- a/server/src/main/java/server/haengdong/domain/bill/BillRepository.java +++ /dev/null @@ -1,23 +0,0 @@ -package server.haengdong.domain.bill; - -import java.util.List; -import java.util.Optional; -import org.springframework.data.jpa.repository.JpaRepository; -import org.springframework.data.jpa.repository.Query; -import org.springframework.stereotype.Repository; -import server.haengdong.domain.event.Event; - -@Repository -public interface BillRepository extends JpaRepository<Bill, Long> { - - @Query(""" - select b - from Bill b - join fetch b.billDetails bd - join fetch bd.member - where b.event = :event - """) - List<Bill> findAllByEvent(Event event); - - Optional<Bill> findFirstByEventOrderByIdDesc(Event event); -} diff --git a/server/src/main/java/server/haengdong/domain/bill/MemberBillReport.java b/server/src/main/java/server/haengdong/domain/bill/MemberBillReport.java deleted file mode 100644 index ee16824d0..000000000 --- a/server/src/main/java/server/haengdong/domain/bill/MemberBillReport.java +++ /dev/null @@ -1,30 +0,0 @@ -package server.haengdong.domain.bill; - -import static java.util.stream.Collectors.toMap; - -import java.util.List; -import java.util.Map; -import lombok.Getter; -import server.haengdong.domain.member.Member; - -@Getter -public class MemberBillReport { - - private final Map<Member, Long> reports; - - private MemberBillReport(Map<Member, Long> reports) { - this.reports = reports; - } - - public static MemberBillReport createByBills(List<Bill> bills) { - Map<Member, Long> reports = bills.stream() - .flatMap(bill -> bill.getBillDetails().stream()) - .collect(toMap( - BillDetail::getMember, - BillDetail::getPrice, - Long::sum - )); - - return new MemberBillReport(reports); - } -} diff --git a/server/src/main/java/server/haengdong/domain/event/Bank.java b/server/src/main/java/server/haengdong/domain/event/Bank.java deleted file mode 100644 index 53fbbd92d..000000000 --- a/server/src/main/java/server/haengdong/domain/event/Bank.java +++ /dev/null @@ -1,56 +0,0 @@ -package server.haengdong.domain.event; - -import java.util.Arrays; -import server.haengdong.exception.HaengdongErrorCode; -import server.haengdong.exception.HaengdongException; - -public enum Bank { - WOORI_BANK("우리은행"), - JEIL_BANK("SC제일은행"), - SHINHAN_BANK("신한은행"), - KB_BANK("KB국민은행"), - HANA_BANK("하나은행"), - CITI_BANK("씨티은행"), - IM_BANK("IM뱅크"), - BUSAN_BANK("부산은행"), - GYEONGNAM_BANK("경남은행"), - GWANGJU_BANK("광주은행"), - JEONBUK_BANK("전북은행"), - JEJU_BANK("제주은행"), - IBK_BANK("IBK기업은행"), - KDB_BANK("KDB산업은행"), - SUHYUP_BANK("수협은행"), - NH_BANK("NH농협"), - SAEMAUL_BANK("새마을금고"), - POST_BANK("우체국은행"), - SHINHYEOP_BANK("신협은행"), - SBI_SAVINGS_BANK("SBI저축"), - KAKAO_BANK("카카오뱅크"), - TOSS_BANK("토스뱅크"), - K_BANK("케이뱅크"), - ; - - private final String name; - - Bank(String name) { - this.name = name; - } - - public static void isExists(String bankName) { - Arrays.stream(Bank.values()) - .filter(bank -> bank.name.equals(bankName)) - .findFirst() - .orElseThrow(() -> new HaengdongException(HaengdongErrorCode.BANK_NAME_INVALID, getSupportedBanks())); - } - - private static String getSupportedBanks() { - return Arrays.stream(Bank.values()) - .map(Bank::getName) - .reduce((bank1, bank2) -> bank1 + ", " + bank2) - .orElse("지원하는 은행이 없습니다."); - } - - public String getName() { - return name; - } -} diff --git a/server/src/main/java/server/haengdong/domain/event/Event.java b/server/src/main/java/server/haengdong/domain/event/Event.java deleted file mode 100644 index a7cc00fb3..000000000 --- a/server/src/main/java/server/haengdong/domain/event/Event.java +++ /dev/null @@ -1,117 +0,0 @@ -package server.haengdong.domain.event; - -import jakarta.persistence.AttributeOverride; -import jakarta.persistence.Column; -import jakarta.persistence.Embedded; -import jakarta.persistence.Entity; -import jakarta.persistence.GeneratedValue; -import jakarta.persistence.GenerationType; -import jakarta.persistence.Id; -import java.time.Instant; -import java.util.Arrays; -import lombok.AccessLevel; -import lombok.Getter; -import lombok.NoArgsConstructor; -import server.haengdong.domain.BaseEntity; -import server.haengdong.exception.HaengdongErrorCode; -import server.haengdong.exception.HaengdongException; - -@Getter -@NoArgsConstructor(access = AccessLevel.PROTECTED) -@Entity -public class Event extends BaseEntity { - - private static final int MIN_NAME_LENGTH = 1; - private static final int MAX_NAME_LENGTH = 20; - private static final int MIN_ACCOUNT_NUMBER_LENGTH = 8; - private static final int MAX_ACCOUNT_NUMBER_LENGTH = 30; - private static final String SPACES = " "; - - @Id - @GeneratedValue(strategy = GenerationType.IDENTITY) - private Long id; - - @Column(nullable = false, length = MAX_NAME_LENGTH) - private String name; - - @Embedded - @AttributeOverride(name = "value", column = @Column(name = "password", nullable = false)) - private Password password; - - @Column(nullable = false, unique = true) - private String token; - - @Column(length = MAX_ACCOUNT_NUMBER_LENGTH) - private String account; - - - public Event(String name, String password, String token) { - validateName(name); - this.name = name; - this.password = new Password(password); - this.token = token; - this.account = ""; - } - - private void validateName(String name) { - int nameLength = name.trim().length(); - if (nameLength < MIN_NAME_LENGTH || MAX_NAME_LENGTH < nameLength) { - throw new HaengdongException( - HaengdongErrorCode.EVENT_NAME_LENGTH_INVALID, MIN_NAME_LENGTH, MAX_NAME_LENGTH); - } - if (isBlankContinuous(name)) { - throw new HaengdongException(HaengdongErrorCode.EVENT_NAME_CONSECUTIVE_SPACES); - } - } - - private boolean isBlankContinuous(String name) { - return name.contains(SPACES); - } - - public boolean isTokenMismatch(String token) { - return !this.token.equals(token); - } - - public boolean isPasswordMismatch(String rawPassword) { - return !password.matches(rawPassword); - } - - public void rename(String name) { - validateName(name); - this.name = name; - } - - public void changeAccount(String bankName, String accountNumber) { - validateBankName(bankName); - validateAccountNumber(accountNumber); - this.account = bankName + " " + accountNumber; - } - - private void validateBankName(String bankName) { - Bank.isExists(bankName); - } - - private void validateAccountNumber(String accountNumber) { - int accountLength = accountNumber.trim().length(); - if (accountLength < MIN_ACCOUNT_NUMBER_LENGTH || MAX_ACCOUNT_NUMBER_LENGTH < accountLength) { - throw new HaengdongException( - HaengdongErrorCode.ACCOUNT_LENGTH_INVALID, MIN_ACCOUNT_NUMBER_LENGTH, MAX_ACCOUNT_NUMBER_LENGTH); - } - } - - public String getBankName() { - String[] bankNameAndAccountNumber = account.split(" "); - if (bankNameAndAccountNumber.length > 0) { - return bankNameAndAccountNumber[0]; - } - return ""; - } - - public String getAccountNumber() { - String[] bankNameAndAccountNumber = account.split(" "); - if (bankNameAndAccountNumber.length > 1) { - return String.join(" ", Arrays.copyOfRange(bankNameAndAccountNumber, 1, bankNameAndAccountNumber.length)); - } - return ""; - } -} diff --git a/server/src/main/java/server/haengdong/domain/event/EventImage.java b/server/src/main/java/server/haengdong/domain/event/EventImage.java deleted file mode 100644 index 16b2f5964..000000000 --- a/server/src/main/java/server/haengdong/domain/event/EventImage.java +++ /dev/null @@ -1,36 +0,0 @@ -package server.haengdong.domain.event; - -import jakarta.persistence.Column; -import jakarta.persistence.Entity; -import jakarta.persistence.FetchType; -import jakarta.persistence.GeneratedValue; -import jakarta.persistence.GenerationType; -import jakarta.persistence.Id; -import jakarta.persistence.JoinColumn; -import jakarta.persistence.ManyToOne; -import lombok.AccessLevel; -import lombok.Getter; -import lombok.NoArgsConstructor; -import server.haengdong.domain.BaseEntity; - -@Getter -@NoArgsConstructor(access = AccessLevel.PROTECTED) -@Entity -public class EventImage extends BaseEntity { - - @Id - @GeneratedValue(strategy = GenerationType.IDENTITY) - private Long id; - - @JoinColumn(name = "event_id", nullable = false) - @ManyToOne(fetch = FetchType.LAZY) - private Event event; - - @Column(nullable = false) - private String name; - - public EventImage(Event event, String name) { - this.event = event; - this.name = name; - } -} diff --git a/server/src/main/java/server/haengdong/domain/event/EventImageRepository.java b/server/src/main/java/server/haengdong/domain/event/EventImageRepository.java deleted file mode 100644 index 00f84b8af..000000000 --- a/server/src/main/java/server/haengdong/domain/event/EventImageRepository.java +++ /dev/null @@ -1,11 +0,0 @@ -package server.haengdong.domain.event; - -import java.util.List; -import org.springframework.data.jpa.repository.JpaRepository; -import org.springframework.stereotype.Repository; - -@Repository -public interface EventImageRepository extends JpaRepository<EventImage, Long> { - - List<EventImage> findAllByEvent(Event event); -} diff --git a/server/src/main/java/server/haengdong/domain/event/EventRepository.java b/server/src/main/java/server/haengdong/domain/event/EventRepository.java deleted file mode 100644 index 09526125e..000000000 --- a/server/src/main/java/server/haengdong/domain/event/EventRepository.java +++ /dev/null @@ -1,11 +0,0 @@ -package server.haengdong.domain.event; - -import java.util.Optional; -import org.springframework.data.jpa.repository.JpaRepository; -import org.springframework.stereotype.Repository; - -@Repository -public interface EventRepository extends JpaRepository<Event, Long> { - - Optional<Event> findByToken(String token); -} diff --git a/server/src/main/java/server/haengdong/domain/event/EventTokenProvider.java b/server/src/main/java/server/haengdong/domain/event/EventTokenProvider.java deleted file mode 100644 index 6450f0dcf..000000000 --- a/server/src/main/java/server/haengdong/domain/event/EventTokenProvider.java +++ /dev/null @@ -1,12 +0,0 @@ -package server.haengdong.domain.event; - -import java.util.UUID; -import org.springframework.stereotype.Component; - -@Component -public class EventTokenProvider { - - public String createToken() { - return UUID.randomUUID().toString(); - } -} diff --git a/server/src/main/java/server/haengdong/domain/event/Password.java b/server/src/main/java/server/haengdong/domain/event/Password.java deleted file mode 100644 index 7c195b5d5..000000000 --- a/server/src/main/java/server/haengdong/domain/event/Password.java +++ /dev/null @@ -1,52 +0,0 @@ -package server.haengdong.domain.event; - -import jakarta.persistence.Embeddable; -import java.security.MessageDigest; -import java.security.NoSuchAlgorithmException; -import java.util.Base64; -import java.util.regex.Matcher; -import java.util.regex.Pattern; -import lombok.AccessLevel; -import lombok.Getter; -import lombok.NoArgsConstructor; -import server.haengdong.exception.HaengdongErrorCode; -import server.haengdong.exception.HaengdongException; - -@NoArgsConstructor(access = AccessLevel.PROTECTED) -@Getter -@Embeddable -public class Password { - - private static final int PASSWORD_LENGTH = 4; - private static final Pattern PASSWORD_PATTERN = Pattern.compile(String.format("^\\d{%d}$", PASSWORD_LENGTH)); - private static final String HASH_ALGORITHM = "SHA-256"; - - private String value; - - public Password(String password) { - validatePassword(password); - this.value = encode(password); - } - - private void validatePassword(String password) { - Matcher matcher = PASSWORD_PATTERN.matcher(password); - if (!matcher.matches()) { - throw new HaengdongException(HaengdongErrorCode.EVENT_PASSWORD_FORMAT_INVALID, PASSWORD_LENGTH); - } - } - - private String encode(String rawPassword) { - try { - MessageDigest digest = MessageDigest.getInstance(HASH_ALGORITHM); - byte[] hashedPassword = digest.digest(rawPassword.getBytes()); - return Base64.getEncoder().encodeToString(hashedPassword); - } catch (NoSuchAlgorithmException e) { - throw new IllegalArgumentException("해시 알고리즘이 존재하지 않습니다."); - } - } - - public boolean matches(String rawPassword) { - String hashedPassword = encode(rawPassword); - return value.equals(hashedPassword); - } -} diff --git a/server/src/main/java/server/haengdong/domain/member/Member.java b/server/src/main/java/server/haengdong/domain/member/Member.java deleted file mode 100644 index 2c9cb41d6..000000000 --- a/server/src/main/java/server/haengdong/domain/member/Member.java +++ /dev/null @@ -1,85 +0,0 @@ -package server.haengdong.domain.member; - -import jakarta.persistence.Column; -import jakarta.persistence.Entity; -import jakarta.persistence.FetchType; -import jakarta.persistence.GeneratedValue; -import jakarta.persistence.GenerationType; -import jakarta.persistence.Id; -import jakarta.persistence.JoinColumn; -import jakarta.persistence.ManyToOne; -import jakarta.persistence.Table; -import jakarta.persistence.UniqueConstraint; -import java.util.Objects; -import lombok.AccessLevel; -import lombok.Getter; -import lombok.NoArgsConstructor; -import server.haengdong.domain.BaseEntity; -import server.haengdong.domain.event.Event; -import server.haengdong.exception.HaengdongErrorCode; -import server.haengdong.exception.HaengdongException; - -@Getter -@NoArgsConstructor(access = AccessLevel.PROTECTED) -@Table(uniqueConstraints = {@UniqueConstraint(columnNames = {"event_id", "name"})}) -@Entity -public class Member extends BaseEntity { - - private static final int MIN_NAME_LENGTH = 1; - private static final int MAX_NAME_LENGTH = 8; - - @Id - @GeneratedValue(strategy = GenerationType.IDENTITY) - private Long id; - - @JoinColumn(name = "event_id", nullable = false) - @ManyToOne(fetch = FetchType.LAZY) - private Event event; - - @Column(nullable = false, length = MAX_NAME_LENGTH) - private String name; - - @Column(nullable = false) - private boolean isDeposited; - - public Member(Event event, String name) { - this(null, event, name, false); - } - - public Member(Long id, Event event, String name, boolean isDeposited) { - validateName(name); - this.id = id; - this.event = event; - this.name = name; - this.isDeposited = isDeposited; - } - - private void validateName(String name) { - int nameLength = name.length(); - if (nameLength < MIN_NAME_LENGTH || nameLength > MAX_NAME_LENGTH) { - throw new HaengdongException(HaengdongErrorCode.MEMBER_NAME_LENGTH_INVALID, MIN_NAME_LENGTH, - MAX_NAME_LENGTH); - } - } - - public boolean hasName(String name) { - return this.name.equals(name); - } - - @Override - public boolean equals(Object o) { - if (this == o) { - return true; - } - if (o == null || getClass() != o.getClass()) { - return false; - } - Member member = (Member) o; - return Objects.equals(id, member.id); - } - - @Override - public int hashCode() { - return Objects.hash(id); - } -} diff --git a/server/src/main/java/server/haengdong/domain/member/MemberRepository.java b/server/src/main/java/server/haengdong/domain/member/MemberRepository.java deleted file mode 100644 index 15d57f4ba..000000000 --- a/server/src/main/java/server/haengdong/domain/member/MemberRepository.java +++ /dev/null @@ -1,10 +0,0 @@ -package server.haengdong.domain.member; - -import java.util.List; -import org.springframework.data.jpa.repository.JpaRepository; -import server.haengdong.domain.event.Event; - -public interface MemberRepository extends JpaRepository<Member, Long> { - - List<Member> findAllByEvent(Event event); -} diff --git a/server/src/main/java/server/haengdong/domain/member/UpdatedMembers.java b/server/src/main/java/server/haengdong/domain/member/UpdatedMembers.java deleted file mode 100644 index 3a588c077..000000000 --- a/server/src/main/java/server/haengdong/domain/member/UpdatedMembers.java +++ /dev/null @@ -1,67 +0,0 @@ -package server.haengdong.domain.member; - -import java.util.HashSet; -import java.util.List; -import java.util.Set; -import java.util.stream.Collectors; -import server.haengdong.exception.HaengdongErrorCode; -import server.haengdong.exception.HaengdongException; - -public class UpdatedMembers { - - private final Set<Member> members; - - public UpdatedMembers(List<Member> members) { - validateMemberUnique(members); - validateNameUnique(members); - this.members = new HashSet<>(members); - } - - private void validateMemberUnique(List<Member> members) { - if (members.size() != Set.copyOf(members).size()) { - throw new HaengdongException(HaengdongErrorCode.MEMBER_NAME_CHANGE_DUPLICATE); - } - } - - private void validateNameUnique(List<Member> members) { - Set<String> uniqueNames = members.stream() - .map(Member::getName) - .collect(Collectors.toSet()); - if (members.size() != uniqueNames.size()) { - throw new HaengdongException(HaengdongErrorCode.MEMBER_NAME_CHANGE_DUPLICATE); - } - } - - public void validateUpdatable(List<Member> originMembers) { - Set<Member> uniqueMembers = Set.copyOf(originMembers); - validateUpdatedMembersExist(uniqueMembers); - validateUpdatedNamesUnique(uniqueMembers); - } - - private void validateUpdatedMembersExist(Set<Member> originMembers) { - if (!this.members.equals(originMembers)) { - throw new HaengdongException(HaengdongErrorCode.MEMBER_UPDATE_MISMATCH); - } - } - - private void validateUpdatedNamesUnique(Set<Member> originMembers) { - boolean duplicated = originMembers.stream() - .anyMatch(this::isMemberNameUpdated); - - if (duplicated) { - throw new HaengdongException(HaengdongErrorCode.MEMBER_NAME_DUPLICATE); - } - } - - private boolean isMemberNameUpdated(Member originMembers) { - return this.members.stream() - .filter(member -> !member.getId().equals(originMembers.getId())) - .anyMatch(member -> member.hasName(originMembers.getName())); - } - - public List<Member> getMembers() { - return members.stream().toList(); - } -} - - diff --git a/server/src/main/java/server/haengdong/domain/step/Step.java b/server/src/main/java/server/haengdong/domain/step/Step.java deleted file mode 100644 index 834d3e715..000000000 --- a/server/src/main/java/server/haengdong/domain/step/Step.java +++ /dev/null @@ -1,50 +0,0 @@ -package server.haengdong.domain.step; - -import java.util.ArrayList; -import java.util.HashSet; -import java.util.List; -import java.util.Set; -import server.haengdong.domain.bill.Bill; -import server.haengdong.domain.member.Member; -import server.haengdong.exception.HaengdongErrorCode; -import server.haengdong.exception.HaengdongException; - -public class Step { - - private final List<Bill> bills; - private final Set<Member> members; - - private Step(List<Bill> bills, Set<Member> members) { - this.bills = bills; - this.members = members; - } - - public static Step of(Bill bill) { - List<Bill> bills = new ArrayList<>(); - bills.add(bill); - Set<Member> members = new HashSet<>(bill.getMembers()); - - return new Step(bills, members); - } - - public void add(Bill bill) { - if (isNotSameMember(bill)) { - throw new HaengdongException(HaengdongErrorCode.DIFFERENT_STEP_MEMBERS); - } - - bills.add(bill); - } - - public boolean isNotSameMember(Bill bill) { - Set<Member> otherMembers = Set.copyOf(bill.getMembers()); - return !members.equals(otherMembers); - } - - public List<Bill> getBills() { - return bills; - } - - public Set<Member> getMembers() { - return members; - } -} diff --git a/server/src/main/java/server/haengdong/domain/step/Steps.java b/server/src/main/java/server/haengdong/domain/step/Steps.java deleted file mode 100644 index f1ad8c746..000000000 --- a/server/src/main/java/server/haengdong/domain/step/Steps.java +++ /dev/null @@ -1,33 +0,0 @@ -package server.haengdong.domain.step; - -import java.util.ArrayList; -import java.util.List; -import server.haengdong.domain.bill.Bill; - -public class Steps { - - private final List<Step> steps; - - private Steps(List<Step> steps) { - this.steps = steps; - } - - public static Steps of(List<Bill> bills) { - List<Step> steps = new ArrayList<>(); - Step currentStep = null; - - for (Bill bill : bills) { - if (currentStep == null || currentStep.isNotSameMember(bill)) { - currentStep = Step.of(bill); - steps.add(currentStep); - continue; - } - currentStep.add(bill); - } - return new Steps(steps); - } - - public List<Step> getSteps() { - return steps; - } -} diff --git a/server/src/main/java/server/haengdong/exception/AuthenticationException.java b/server/src/main/java/server/haengdong/exception/AuthenticationException.java deleted file mode 100644 index 2efcb16e7..000000000 --- a/server/src/main/java/server/haengdong/exception/AuthenticationException.java +++ /dev/null @@ -1,19 +0,0 @@ -package server.haengdong.exception; - -import lombok.Getter; - -@Getter -public class AuthenticationException extends RuntimeException { - - private final HaengdongErrorCode errorCode; - private final String message; - - public AuthenticationException(HaengdongErrorCode errorCode) { - this(errorCode, errorCode.getMessage()); - } - - public AuthenticationException(HaengdongErrorCode errorCode, String message) { - this.errorCode = errorCode; - this.message = message; - } -} diff --git a/server/src/main/java/server/haengdong/exception/ErrorResponse.java b/server/src/main/java/server/haengdong/exception/ErrorResponse.java deleted file mode 100644 index 3937f4322..000000000 --- a/server/src/main/java/server/haengdong/exception/ErrorResponse.java +++ /dev/null @@ -1,15 +0,0 @@ -package server.haengdong.exception; - -public record ErrorResponse( - String errorCode, - String message -) { - - public static ErrorResponse of(HaengdongErrorCode errorCode) { - return new ErrorResponse(errorCode.name(), errorCode.getMessage()); - } - - public static ErrorResponse of(HaengdongErrorCode errorCode, String message) { - return new ErrorResponse(errorCode.name(), message); - } -} diff --git a/server/src/main/java/server/haengdong/exception/GlobalExceptionHandler.java b/server/src/main/java/server/haengdong/exception/GlobalExceptionHandler.java deleted file mode 100644 index 4d2c96c73..000000000 --- a/server/src/main/java/server/haengdong/exception/GlobalExceptionHandler.java +++ /dev/null @@ -1,90 +0,0 @@ -package server.haengdong.exception; - -import jakarta.servlet.http.HttpServletRequest; -import java.io.BufferedReader; -import java.io.IOException; -import java.util.stream.Collectors; -import lombok.extern.slf4j.Slf4j; -import org.springframework.http.HttpStatus; -import org.springframework.http.ResponseEntity; -import org.springframework.http.converter.HttpMessageNotReadableException; -import org.springframework.web.HttpRequestMethodNotSupportedException; -import org.springframework.web.bind.MethodArgumentNotValidException; -import org.springframework.web.bind.annotation.ExceptionHandler; -import org.springframework.web.bind.annotation.RestControllerAdvice; -import org.springframework.web.servlet.resource.NoResourceFoundException; - -@Slf4j -@RestControllerAdvice -public class GlobalExceptionHandler { - - private static final String LOG_FORMAT = """ - \n\t{ - "RequestURI": "{} {}", - "RequestBody": {}, - "ErrorMessage": "{}" - \t} - """; - - @ExceptionHandler(AuthenticationException.class) - public ResponseEntity<ErrorResponse> authenticationException(HttpServletRequest req, AuthenticationException e) { - log.warn(LOG_FORMAT, req.getMethod(), req.getRequestURI(), getRequestBody(req), e.getMessage(), e); - return ResponseEntity.status(HttpStatus.UNAUTHORIZED) - .body(ErrorResponse.of(e.getErrorCode())); - } - - @ExceptionHandler(HttpRequestMethodNotSupportedException.class) - public ResponseEntity<ErrorResponse> noResourceException(HttpRequestMethodNotSupportedException e) { - log.warn(e.getMessage(), e); - return ResponseEntity.badRequest() - .body(ErrorResponse.of(HaengdongErrorCode.REQUEST_METHOD_NOT_SUPPORTED)); - } - - @ExceptionHandler(NoResourceFoundException.class) - public ResponseEntity<ErrorResponse> noResourceException(NoResourceFoundException e) { - log.warn(e.getMessage(), e); - return ResponseEntity.badRequest() - .body(ErrorResponse.of(HaengdongErrorCode.NO_RESOURCE_REQUEST)); - } - - @ExceptionHandler(HttpMessageNotReadableException.class) - public ResponseEntity<ErrorResponse> httpMessageNotReadableException(HttpMessageNotReadableException e) { - log.warn(e.getMessage(), e); - return ResponseEntity.badRequest() - .body(ErrorResponse.of(HaengdongErrorCode.MESSAGE_NOT_READABLE)); - } - - @ExceptionHandler(MethodArgumentNotValidException.class) - public ResponseEntity<ErrorResponse> handleMethodArgumentNotValidException(MethodArgumentNotValidException e) { - log.warn(e.getMessage(), e); - String errorMessage = e.getFieldErrors().stream() - .map(error -> error.getField() + " " + error.getDefaultMessage()) - .collect(Collectors.joining(", ")); - - return ResponseEntity.badRequest() - .body(ErrorResponse.of(HaengdongErrorCode.REQUEST_EMPTY, errorMessage)); - } - - @ExceptionHandler(HaengdongException.class) - public ResponseEntity<ErrorResponse> haengdongException(HttpServletRequest req, HaengdongException e) { - log.warn(LOG_FORMAT, req.getMethod(), req.getRequestURI(), getRequestBody(req), e.getMessage(), e); - return ResponseEntity.badRequest() - .body(ErrorResponse.of(e.getErrorCode(), e.getMessage())); - } - - @ExceptionHandler(Exception.class) - public ResponseEntity<ErrorResponse> handleException(HttpServletRequest req, Exception e) { - log.error(LOG_FORMAT, req.getMethod(), req.getRequestURI(), getRequestBody(req), e.getMessage(), e); - return ResponseEntity.internalServerError() - .body(ErrorResponse.of(HaengdongErrorCode.INTERNAL_SERVER_ERROR)); - } - - private String getRequestBody(HttpServletRequest req) { - try (BufferedReader reader = req.getReader()) { - return reader.lines().collect(Collectors.joining(System.lineSeparator() + "\t")); - } catch (IOException e) { - log.error("Failed to read request body", e); - return ""; - } - } -} diff --git a/server/src/main/java/server/haengdong/exception/HaengdongErrorCode.java b/server/src/main/java/server/haengdong/exception/HaengdongErrorCode.java deleted file mode 100644 index fc79123b9..000000000 --- a/server/src/main/java/server/haengdong/exception/HaengdongErrorCode.java +++ /dev/null @@ -1,61 +0,0 @@ -package server.haengdong.exception; - -import lombok.Getter; - -@Getter -public enum HaengdongErrorCode { - - /* Domain */ - - EVENT_NOT_FOUND("존재하지 않는 행사입니다."), - EVENT_NAME_LENGTH_INVALID("행사 이름은 %d자 이상 %d자 이하만 입력 가능합니다."), - EVENT_NAME_CONSECUTIVE_SPACES("행사 이름에는 공백 문자가 연속될 수 없습니다."), - EVENT_PASSWORD_FORMAT_INVALID("비밀번호는 %d자리 숫자만 가능합니다."), - BANK_NAME_INVALID("지원하지 않는 은행입니다. 지원하는 은행 목록: %s"), - ACCOUNT_LENGTH_INVALID("계좌번호는 %d자 이상 %d자 이하만 입력 가능합니다."), - IMAGE_UPLOAD_FAIL("이미지 업로드에 실패했습니다."), - - MEMBER_NAME_LENGTH_INVALID("참여자 이름은 %d자 이상 %d자 이하만 입력 가능합니다."), - MEMBER_NAME_DUPLICATE("행사에 중복된 참여자 이름이 존재합니다."), - MEMBER_NOT_FOUND("존재하지 않는 참여자입니다."), - MEMBER_ALREADY_EXIST("현재 참여하고 있는 인원이 존재합니다."), - MEMBER_NAME_CHANGE_DUPLICATE("중복된 참여 인원 이름 변경 요청이 존재합니다."), - MEMBER_UPDATE_MISMATCH("업데이트 요청된 참여자 ID 목록과 기존 행사 참여자 ID 목록이 일치하지 않습니다."), - - BILL_NOT_FOUND("존재하지 않는 지출입니다."), - BILL_TITLE_INVALID("앞뒤 공백을 제거한 지출 내역 제목은 %d ~ %d자여야 합니다."), - BILL_PRICE_INVALID("지출 금액은 %,d 이하의 자연수여야 합니다."), - BILL_DETAIL_NOT_FOUND("존재하지 않는 참여자 지출입니다."), - BILL_PRICE_NOT_MATCHED("지출 총액이 일치하지 않습니다."), - - DIFFERENT_STEP_MEMBERS("참여자 목록이 일치하지 않습니다."), - - IMAGE_NOT_FOUND("존재하지 않는 이미지 입니다."), - - /* Authentication */ - - PASSWORD_INVALID("비밀번호가 일치하지 않습니다."), - - TOKEN_NOT_FOUND("토큰이 존재하지 않습니다."), - TOKEN_INVALID("유효하지 않은 토큰입니다."), - - FORBIDDEN("접근할 수 없는 행사입니다."), - - /* Request Validation */ - - REQUEST_EMPTY("입력 값은 공백일 수 없습니다.") - - /* System */, - - MESSAGE_NOT_READABLE("읽을 수 없는 요청입니다."), - REQUEST_METHOD_NOT_SUPPORTED("지원하지 않는 요청 메서드입니다."), - NO_RESOURCE_REQUEST("존재하지 않는 자원입니다."), - INTERNAL_SERVER_ERROR("서버 내부에서 에러가 발생했습니다."), - ; - - private final String message; - - HaengdongErrorCode(String message) { - this.message = message; - } -} diff --git a/server/src/main/java/server/haengdong/exception/HaengdongException.java b/server/src/main/java/server/haengdong/exception/HaengdongException.java deleted file mode 100644 index 4454fe7bf..000000000 --- a/server/src/main/java/server/haengdong/exception/HaengdongException.java +++ /dev/null @@ -1,19 +0,0 @@ -package server.haengdong.exception; - -import lombok.Getter; - -@Getter -public class HaengdongException extends RuntimeException { - - private final HaengdongErrorCode errorCode; - - public HaengdongException(HaengdongErrorCode errorCode) { - super(errorCode.getMessage()); - this.errorCode = errorCode; - } - - public HaengdongException(HaengdongErrorCode errorCode, Object... args) { - super(String.format(errorCode.getMessage(), args)); - this.errorCode = errorCode; - } -} diff --git a/server/src/main/java/server/haengdong/infrastructure/DataSourceConfig.java b/server/src/main/java/server/haengdong/infrastructure/DataSourceConfig.java deleted file mode 100644 index c859217b4..000000000 --- a/server/src/main/java/server/haengdong/infrastructure/DataSourceConfig.java +++ /dev/null @@ -1,70 +0,0 @@ -package server.haengdong.infrastructure; - -import com.zaxxer.hikari.HikariDataSource; -import jakarta.persistence.EntityManagerFactory; -import java.util.HashMap; -import java.util.Map; -import javax.sql.DataSource; -import org.springframework.beans.factory.annotation.Qualifier; -import org.springframework.boot.context.properties.ConfigurationProperties; -import org.springframework.boot.jdbc.DataSourceBuilder; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.Configuration; -import org.springframework.context.annotation.DependsOn; -import org.springframework.context.annotation.Primary; -import org.springframework.context.annotation.Profile; -import org.springframework.jdbc.datasource.LazyConnectionDataSourceProxy; -import org.springframework.orm.jpa.JpaTransactionManager; -import org.springframework.transaction.PlatformTransactionManager; - -@Profile("prod") -@Configuration -public class DataSourceConfig { - - private static final String PRIMARY = "primary"; - private static final String SECONDARY = "secondary"; - - @ConfigurationProperties(prefix = "spring.datasource.hikari.primary") - @Bean - public DataSource primaryDataSource() { - return DataSourceBuilder.create().type(HikariDataSource.class).build(); - } - - @ConfigurationProperties(prefix = "spring.datasource.hikari.secondary") - @Bean - public DataSource secondaryDataSource() { - return DataSourceBuilder.create().type(HikariDataSource.class).build(); - } - - @DependsOn({"primaryDataSource", "secondaryDataSource"}) - @Bean - public DataSource routingDataSource( - @Qualifier("primaryDataSource") DataSource primary, - @Qualifier("secondaryDataSource") DataSource secondary) { - DynamicRoutingDataSource routingDataSource = new DynamicRoutingDataSource(); - - Map<Object, Object> dataSourceMap = new HashMap<>(); - - dataSourceMap.put(PRIMARY, primary); - dataSourceMap.put(SECONDARY, secondary); - - routingDataSource.setTargetDataSources(dataSourceMap); - routingDataSource.setDefaultTargetDataSource(primary); - - return routingDataSource; - } - - @DependsOn({"routingDataSource"}) - @Primary - @Bean - public DataSource dataSource(DataSource routingDataSource) { - return new LazyConnectionDataSourceProxy(routingDataSource); - } - - @Bean - public PlatformTransactionManager transactionManager(EntityManagerFactory entityManagerFactory) { - JpaTransactionManager jpaTransactionManager = new JpaTransactionManager(); - jpaTransactionManager.setEntityManagerFactory(entityManagerFactory); - return jpaTransactionManager; - } -} diff --git a/server/src/main/java/server/haengdong/infrastructure/DynamicRoutingDataSource.java b/server/src/main/java/server/haengdong/infrastructure/DynamicRoutingDataSource.java deleted file mode 100644 index 5f84010a1..000000000 --- a/server/src/main/java/server/haengdong/infrastructure/DynamicRoutingDataSource.java +++ /dev/null @@ -1,18 +0,0 @@ -package server.haengdong.infrastructure; - -import static org.springframework.transaction.support.TransactionSynchronizationManager.isCurrentTransactionReadOnly; - -import lombok.extern.slf4j.Slf4j; -import org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource; - -@Slf4j -public class DynamicRoutingDataSource extends AbstractRoutingDataSource { - - private static final String PRIMARY = "primary"; - private static final String SECONDARY = "secondary"; - - @Override - protected Object determineCurrentLookupKey() { - return isCurrentTransactionReadOnly() ? SECONDARY : PRIMARY; - } -} diff --git a/server/src/main/java/server/haengdong/infrastructure/auth/AuthenticationExtractor.java b/server/src/main/java/server/haengdong/infrastructure/auth/AuthenticationExtractor.java deleted file mode 100644 index 4972de48a..000000000 --- a/server/src/main/java/server/haengdong/infrastructure/auth/AuthenticationExtractor.java +++ /dev/null @@ -1,23 +0,0 @@ -package server.haengdong.infrastructure.auth; - -import jakarta.servlet.http.Cookie; -import jakarta.servlet.http.HttpServletRequest; -import java.util.Arrays; -import server.haengdong.exception.AuthenticationException; -import server.haengdong.exception.HaengdongErrorCode; - -public class AuthenticationExtractor { - - public String extract(HttpServletRequest request, String cookieName) { - Cookie[] cookies = request.getCookies(); - if (cookies == null) { - throw new AuthenticationException(HaengdongErrorCode.TOKEN_NOT_FOUND); - } - - return Arrays.stream(cookies) - .filter(cookie -> cookieName.equals(cookie.getName())) - .findFirst() - .orElseThrow(() -> new AuthenticationException(HaengdongErrorCode.TOKEN_NOT_FOUND)) - .getValue(); - } -} diff --git a/server/src/main/java/server/haengdong/infrastructure/auth/CookieProperties.java b/server/src/main/java/server/haengdong/infrastructure/auth/CookieProperties.java deleted file mode 100644 index 18f867601..000000000 --- a/server/src/main/java/server/haengdong/infrastructure/auth/CookieProperties.java +++ /dev/null @@ -1,15 +0,0 @@ -package server.haengdong.infrastructure.auth; - -import java.time.Duration; -import org.springframework.boot.context.properties.ConfigurationProperties; - -@ConfigurationProperties("cookie") -public record CookieProperties( - boolean httpOnly, - boolean secure, - String domain, - String path, - String sameSite, - Duration maxAge -) { -} diff --git a/server/src/main/java/server/haengdong/infrastructure/auth/JwtTokenProvider.java b/server/src/main/java/server/haengdong/infrastructure/auth/JwtTokenProvider.java deleted file mode 100644 index df9ec6a81..000000000 --- a/server/src/main/java/server/haengdong/infrastructure/auth/JwtTokenProvider.java +++ /dev/null @@ -1,54 +0,0 @@ -package server.haengdong.infrastructure.auth; - -import io.jsonwebtoken.Claims; -import io.jsonwebtoken.Jws; -import io.jsonwebtoken.JwtException; -import io.jsonwebtoken.Jwts; -import io.jsonwebtoken.SignatureAlgorithm; -import java.util.Date; -import java.util.HashMap; -import java.util.Map; -import server.haengdong.domain.TokenProvider; - -public class JwtTokenProvider implements TokenProvider { - - private final TokenProperties tokenProperties; - - public JwtTokenProvider(TokenProperties tokenProperties) { - this.tokenProperties = tokenProperties; - } - - @Override - public String createToken(Map<String, Object> payload) { - Claims claims = Jwts.claims(new HashMap<>(payload)); - Date now = new Date(); - Date validity = new Date(now.getTime() + tokenProperties.expireLength()); - - return Jwts.builder() - .setClaims(claims) - .setIssuedAt(now) - .setExpiration(validity) - .signWith(SignatureAlgorithm.HS256, tokenProperties.secretKey()) - .compact(); - } - - @Override - public Map<String, Object> getPayload(String token) { - return Jwts.parser() - .setSigningKey(tokenProperties.secretKey()) - .parseClaimsJws(token) - .getBody(); - } - - @Override - public boolean validateToken(String token) { - try { - Jws<Claims> claims = Jwts.parser().setSigningKey(tokenProperties.secretKey()).parseClaimsJws(token); - - return !claims.getBody().getExpiration().before(new Date()); - } catch (JwtException | IllegalArgumentException e) { - return false; - } - } -} - diff --git a/server/src/main/java/server/haengdong/infrastructure/auth/TokenProperties.java b/server/src/main/java/server/haengdong/infrastructure/auth/TokenProperties.java deleted file mode 100644 index 11dedcdbf..000000000 --- a/server/src/main/java/server/haengdong/infrastructure/auth/TokenProperties.java +++ /dev/null @@ -1,7 +0,0 @@ -package server.haengdong.infrastructure.auth; - -import org.springframework.boot.context.properties.ConfigurationProperties; - -@ConfigurationProperties("security.jwt.token") -public record TokenProperties(String secretKey, Long expireLength) { -} diff --git a/server/src/main/java/server/haengdong/presentation/BillController.java b/server/src/main/java/server/haengdong/presentation/BillController.java deleted file mode 100644 index f1a4f74f4..000000000 --- a/server/src/main/java/server/haengdong/presentation/BillController.java +++ /dev/null @@ -1,35 +0,0 @@ -package server.haengdong.presentation; - -import lombok.RequiredArgsConstructor; -import org.springframework.http.ResponseEntity; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RestController; -import server.haengdong.application.BillService; -import server.haengdong.application.response.BillDetailsAppResponse; -import server.haengdong.presentation.response.BillDetailsResponse; -import server.haengdong.presentation.response.StepsResponse; - -@RequiredArgsConstructor -@RestController -public class BillController { - - private final BillService billService; - - @GetMapping("/api/events/{eventId}/bills") - public ResponseEntity<StepsResponse> findBills(@PathVariable("eventId") String token) { - StepsResponse stepsResponse = StepsResponse.of(billService.findSteps(token)); - - return ResponseEntity.ok(stepsResponse); - } - - @GetMapping("/api/events/{eventId}/bills/{billId}/details") - public ResponseEntity<BillDetailsResponse> findBillDetails( - @PathVariable("eventId") String token, - @PathVariable("billId") Long billId - ) { - BillDetailsAppResponse appResponse = billService.findBillDetails(token, billId); - - return ResponseEntity.ok(BillDetailsResponse.of(appResponse)); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/EventController.java b/server/src/main/java/server/haengdong/presentation/EventController.java deleted file mode 100644 index 47bdd4fce..000000000 --- a/server/src/main/java/server/haengdong/presentation/EventController.java +++ /dev/null @@ -1,96 +0,0 @@ -package server.haengdong.presentation; - -import jakarta.validation.Valid; -import java.util.List; -import lombok.RequiredArgsConstructor; -import lombok.extern.slf4j.Slf4j; -import org.springframework.boot.context.properties.EnableConfigurationProperties; -import org.springframework.http.HttpHeaders; -import org.springframework.http.ResponseCookie; -import org.springframework.http.ResponseEntity; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RestController; -import server.haengdong.application.AuthService; -import server.haengdong.application.response.EventImageAppResponse; -import server.haengdong.application.EventService; -import server.haengdong.application.response.MemberBillReportAppResponse; -import server.haengdong.infrastructure.auth.CookieProperties; -import server.haengdong.presentation.request.EventLoginRequest; -import server.haengdong.presentation.request.EventSaveRequest; -import server.haengdong.presentation.response.EventDetailResponse; -import server.haengdong.presentation.response.EventImagesResponse; -import server.haengdong.presentation.response.EventResponse; -import server.haengdong.presentation.response.MemberBillReportsResponse; - -@Slf4j -@RequiredArgsConstructor -@EnableConfigurationProperties(CookieProperties.class) -@RestController -public class EventController { - - private final EventService eventService; - private final AuthService authService; - private final CookieProperties cookieProperties; - - @GetMapping("/api/events/{eventId}") - public ResponseEntity<EventDetailResponse> findEvent(@PathVariable("eventId") String token) { - EventDetailResponse eventDetailResponse = EventDetailResponse.of(eventService.findEvent(token)); - - return ResponseEntity.ok(eventDetailResponse); - } - - @GetMapping("/api/events/{eventId}/reports") - public ResponseEntity<MemberBillReportsResponse> getMemberBillReports(@PathVariable("eventId") String token) { - List<MemberBillReportAppResponse> memberBillReports = eventService.getMemberBillReports(token); - - return ResponseEntity.ok() - .body(MemberBillReportsResponse.of(memberBillReports)); - } - - @PostMapping("/api/events") - public ResponseEntity<EventResponse> saveEvent(@Valid @RequestBody EventSaveRequest request) { - EventResponse eventResponse = EventResponse.of(eventService.saveEvent(request.toAppRequest())); - - String jwtToken = authService.createToken(eventResponse.eventId()); - - ResponseCookie responseCookie = createResponseCookie(jwtToken); - return ResponseEntity.ok() - .header(HttpHeaders.SET_COOKIE, responseCookie.toString()) - .body(eventResponse); - } - - @PostMapping("/api/events/{eventId}/login") - public ResponseEntity<Void> loginEvent( - @PathVariable("eventId") String token, - @Valid @RequestBody EventLoginRequest request - ) { - eventService.validatePassword(request.toAppRequest(token)); - String jwtToken = authService.createToken(token); - - ResponseCookie responseCookie = createResponseCookie(jwtToken); - return ResponseEntity.ok() - .header(HttpHeaders.SET_COOKIE, responseCookie.toString()) - .build(); - } - - private ResponseCookie createResponseCookie(String token) { - return ResponseCookie.from(authService.getTokenName(), token) - .httpOnly(cookieProperties.httpOnly()) - .secure(cookieProperties.secure()) - .domain(cookieProperties.domain()) - .path(cookieProperties.path()) - .sameSite(cookieProperties.sameSite()) - .maxAge(cookieProperties.maxAge()) - .build(); - } - - @GetMapping("/api/events/{eventId}/images") - public ResponseEntity<EventImagesResponse> findAllImages(@PathVariable("eventId") String token) { - List<EventImageAppResponse> images = eventService.findImages(token); - - return ResponseEntity.ok(EventImagesResponse.of(images)); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/MemberController.java b/server/src/main/java/server/haengdong/presentation/MemberController.java deleted file mode 100644 index f5662f9b2..000000000 --- a/server/src/main/java/server/haengdong/presentation/MemberController.java +++ /dev/null @@ -1,36 +0,0 @@ -package server.haengdong.presentation; - -import java.util.List; -import lombok.RequiredArgsConstructor; -import lombok.extern.slf4j.Slf4j; -import org.springframework.http.ResponseEntity; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RestController; -import server.haengdong.application.MemberService; -import server.haengdong.application.response.MemberAppResponse; -import server.haengdong.presentation.response.CurrentMembersResponse; -import server.haengdong.presentation.response.MembersResponse; - -@Slf4j -@RequiredArgsConstructor -@RestController -public class MemberController { - - private final MemberService memberService; - - @GetMapping("/api/events/{eventId}/members") - public ResponseEntity<MembersResponse> findAllMembers(@PathVariable("eventId") String token) { - MembersResponse response = MembersResponse.of(memberService.findAllMembers(token)); - - return ResponseEntity.ok(response); - } - - @GetMapping("/api/events/{eventId}/members/current") - public ResponseEntity<CurrentMembersResponse> getCurrentMembers(@PathVariable("eventId") String token) { - List<MemberAppResponse> currentMembers = memberService.getCurrentMembers(token); - - return ResponseEntity.ok() - .body(CurrentMembersResponse.of(currentMembers)); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/admin/AdminBillController.java b/server/src/main/java/server/haengdong/presentation/admin/AdminBillController.java deleted file mode 100644 index 5e65c04f9..000000000 --- a/server/src/main/java/server/haengdong/presentation/admin/AdminBillController.java +++ /dev/null @@ -1,64 +0,0 @@ -package server.haengdong.presentation.admin; - -import jakarta.validation.Valid; -import lombok.RequiredArgsConstructor; -import org.springframework.http.ResponseEntity; -import org.springframework.web.bind.annotation.DeleteMapping; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.PutMapping; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RestController; -import server.haengdong.application.BillService; -import server.haengdong.presentation.request.BillDetailsUpdateRequest; -import server.haengdong.presentation.request.BillSaveRequest; -import server.haengdong.presentation.request.BillUpdateRequest; - -@RequiredArgsConstructor -@RestController -public class AdminBillController { - - private final BillService billService; - - @PostMapping("/api/admin/events/{eventId}/bills") - public ResponseEntity<Void> saveAllBill( - @PathVariable("eventId") String token, - @Valid @RequestBody BillSaveRequest request - ) { - billService.saveBill(token, request.toAppRequest()); - - return ResponseEntity.ok().build(); - } - - @DeleteMapping("/api/admin/events/{eventId}/bills/{billId}") - public ResponseEntity<Void> deleteBill( - @PathVariable("eventId") String token, - @PathVariable("billId") Long billId - ) { - billService.deleteBill(token, billId); - - return ResponseEntity.ok().build(); - } - - @PutMapping("/api/admin/events/{eventId}/bills/{billId}") - public ResponseEntity<Void> updateBill( - @PathVariable("eventId") String token, - @PathVariable("billId") Long billId, - @Valid @RequestBody BillUpdateRequest request - ) { - billService.updateBill(token, billId, request.toAppResponse()); - - return ResponseEntity.ok().build(); - } - - @PutMapping("/api/admin/events/{eventId}/bills/{billId}/details") - public ResponseEntity<Void> updateBillDetails( - @PathVariable("eventId") String token, - @PathVariable("billId") Long billId, - @Valid @RequestBody BillDetailsUpdateRequest request - ) { - billService.updateBillDetails(token, billId, request.toAppRequest()); - - return ResponseEntity.ok().build(); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/admin/AdminEventController.java b/server/src/main/java/server/haengdong/presentation/admin/AdminEventController.java deleted file mode 100644 index 8fd913dae..000000000 --- a/server/src/main/java/server/haengdong/presentation/admin/AdminEventController.java +++ /dev/null @@ -1,65 +0,0 @@ -package server.haengdong.presentation.admin; - -import jakarta.validation.Valid; -import java.util.List; -import lombok.RequiredArgsConstructor; -import lombok.extern.slf4j.Slf4j; -import org.springframework.http.ResponseEntity; -import org.springframework.web.bind.annotation.DeleteMapping; -import org.springframework.web.bind.annotation.PatchMapping; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestPart; -import org.springframework.web.bind.annotation.RestController; -import org.springframework.web.multipart.MultipartFile; -import server.haengdong.application.EventService; -import server.haengdong.application.ImageService; -import server.haengdong.application.response.ImageNameAppResponse; -import server.haengdong.presentation.request.EventUpdateRequest; - -@Slf4j -@RequiredArgsConstructor -@RestController -public class AdminEventController { - - private final EventService eventService; - private final ImageService imageUploadService; - - @PostMapping("/api/admin/events/{eventId}/auth") - public ResponseEntity<Void> authenticate() { - return ResponseEntity.ok().build(); - } - - @PatchMapping("/api/admin/events/{eventId}") - public ResponseEntity<Void> updateEvent( - @PathVariable("eventId") String token, - @Valid @RequestBody EventUpdateRequest request - ) { - eventService.updateEvent(token, request.toAppRequest()); - - return ResponseEntity.ok().build(); - } - - @PostMapping("/api/admin/events/{eventId}/images") - public ResponseEntity<Void> uploadImages( - @PathVariable("eventId") String token, - @RequestPart("images") List<MultipartFile> images - ) { - List<String> imageNames = imageUploadService.uploadImages(images); - eventService.saveImages(token, imageNames); - - return ResponseEntity.ok().build(); - } - - @DeleteMapping("/api/admin/events/{eventId}/images/{imageId}") - public ResponseEntity<Void> deleteImage( - @PathVariable("eventId") String token, - @PathVariable("imageId") Long imageId - ) { - String imageName = eventService.deleteImage(token, imageId); - imageUploadService.deleteImage(imageName); - - return ResponseEntity.ok().build(); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/admin/AdminMemberController.java b/server/src/main/java/server/haengdong/presentation/admin/AdminMemberController.java deleted file mode 100644 index 22cb0190a..000000000 --- a/server/src/main/java/server/haengdong/presentation/admin/AdminMemberController.java +++ /dev/null @@ -1,55 +0,0 @@ -package server.haengdong.presentation.admin; - -import jakarta.validation.Valid; -import lombok.RequiredArgsConstructor; -import lombok.extern.slf4j.Slf4j; -import org.springframework.http.ResponseEntity; -import org.springframework.web.bind.annotation.DeleteMapping; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.PutMapping; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RestController; -import server.haengdong.application.MemberService; -import server.haengdong.application.response.MembersSaveAppResponse; -import server.haengdong.presentation.request.MembersSaveRequest; -import server.haengdong.presentation.request.MembersUpdateRequest; -import server.haengdong.presentation.response.MembersSaveResponse; - -@Slf4j -@RequiredArgsConstructor -@RestController -public class AdminMemberController { - - private final MemberService memberService; - - @PostMapping("/api/admin/events/{eventId}/members") - public ResponseEntity<MembersSaveResponse> saveMembers( - @PathVariable("eventId") String token, - @Valid @RequestBody MembersSaveRequest request - ) { - MembersSaveAppResponse response = memberService.saveMembers(token, request.toAppRequest()); - - return ResponseEntity.ok(MembersSaveResponse.of(response)); - } - - @PutMapping("/api/admin/events/{eventId}/members") - public ResponseEntity<Void> updateMembers( - @PathVariable("eventId") String token, - @Valid @RequestBody MembersUpdateRequest request - ) { - memberService.updateMembers(token, request.toAppRequest()); - - return ResponseEntity.ok().build(); - } - - @DeleteMapping("/api/admin/events/{eventId}/members/{memberId}") - public ResponseEntity<Void> deleteMember( - @PathVariable("eventId") String token, - @PathVariable("memberId") Long memberId - ) { - memberService.deleteMember(token, memberId); - - return ResponseEntity.ok().build(); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/request/BillDetailUpdateRequest.java b/server/src/main/java/server/haengdong/presentation/request/BillDetailUpdateRequest.java deleted file mode 100644 index d0f69b148..000000000 --- a/server/src/main/java/server/haengdong/presentation/request/BillDetailUpdateRequest.java +++ /dev/null @@ -1,20 +0,0 @@ -package server.haengdong.presentation.request; - -import jakarta.validation.constraints.NotNull; -import server.haengdong.application.request.BillDetailUpdateAppRequest; - -public record BillDetailUpdateRequest( - - @NotNull(message = "지출 상세 ID는 공백일 수 없습니다.") - Long id, - - @NotNull(message = "지출 금액은 공백일 수 없습니다.") - Long price, - - boolean isFixed -) { - - public BillDetailUpdateAppRequest toAppRequest() { - return new BillDetailUpdateAppRequest(this.id, this.price, this.isFixed); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/request/BillDetailsUpdateRequest.java b/server/src/main/java/server/haengdong/presentation/request/BillDetailsUpdateRequest.java deleted file mode 100644 index 091db5967..000000000 --- a/server/src/main/java/server/haengdong/presentation/request/BillDetailsUpdateRequest.java +++ /dev/null @@ -1,20 +0,0 @@ -package server.haengdong.presentation.request; - -import jakarta.validation.Valid; -import jakarta.validation.constraints.NotEmpty; -import java.util.List; -import server.haengdong.application.request.BillDetailsUpdateAppRequest; - -public record BillDetailsUpdateRequest( - - @Valid - @NotEmpty - List<BillDetailUpdateRequest> billDetails -) { - - public BillDetailsUpdateAppRequest toAppRequest() { - return new BillDetailsUpdateAppRequest(billDetails.stream() - .map(BillDetailUpdateRequest::toAppRequest) - .toList()); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/request/BillSaveRequest.java b/server/src/main/java/server/haengdong/presentation/request/BillSaveRequest.java deleted file mode 100644 index 1a7365a6e..000000000 --- a/server/src/main/java/server/haengdong/presentation/request/BillSaveRequest.java +++ /dev/null @@ -1,24 +0,0 @@ -package server.haengdong.presentation.request; - -import jakarta.validation.constraints.NotBlank; -import jakarta.validation.constraints.NotEmpty; -import jakarta.validation.constraints.NotNull; -import java.util.List; -import server.haengdong.application.request.BillAppRequest; - -public record BillSaveRequest( - - @NotBlank(message = "지출 내역 제목은 공백일 수 없습니다.") - String title, - - @NotNull(message = "지출 금액은 공백일 수 없습니다.") - Long price, - - @NotEmpty - List<Long> memberIds -) { - - public BillAppRequest toAppRequest() { - return new BillAppRequest(title, price, memberIds); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/request/BillUpdateRequest.java b/server/src/main/java/server/haengdong/presentation/request/BillUpdateRequest.java deleted file mode 100644 index d5ea67474..000000000 --- a/server/src/main/java/server/haengdong/presentation/request/BillUpdateRequest.java +++ /dev/null @@ -1,19 +0,0 @@ -package server.haengdong.presentation.request; - -import jakarta.validation.constraints.NotBlank; -import jakarta.validation.constraints.NotNull; -import server.haengdong.application.request.BillUpdateAppRequest; - -public record BillUpdateRequest( - - @NotBlank(message = "지출 내역 제목은 공백일 수 없습니다.") - String title, - - @NotNull(message = "지출 금액은 공백일 수 없습니다.") - Long price -) { - - public BillUpdateAppRequest toAppResponse() { - return new BillUpdateAppRequest(title, price); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/request/EventLoginRequest.java b/server/src/main/java/server/haengdong/presentation/request/EventLoginRequest.java deleted file mode 100644 index d49a0e510..000000000 --- a/server/src/main/java/server/haengdong/presentation/request/EventLoginRequest.java +++ /dev/null @@ -1,15 +0,0 @@ -package server.haengdong.presentation.request; - -import jakarta.validation.constraints.NotBlank; -import server.haengdong.application.request.EventLoginAppRequest; - -public record EventLoginRequest( - - @NotBlank(message = "비밀번호는 공백일 수 없습니다.") - String password -) { - - public EventLoginAppRequest toAppRequest(String token) { - return new EventLoginAppRequest(token, password); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/request/EventSaveRequest.java b/server/src/main/java/server/haengdong/presentation/request/EventSaveRequest.java deleted file mode 100644 index 6bd7cd006..000000000 --- a/server/src/main/java/server/haengdong/presentation/request/EventSaveRequest.java +++ /dev/null @@ -1,18 +0,0 @@ -package server.haengdong.presentation.request; - -import jakarta.validation.constraints.NotBlank; -import server.haengdong.application.request.EventAppRequest; - -public record EventSaveRequest( - - @NotBlank(message = "행사 이름은 공백일 수 없습니다.") - String eventName, - - @NotBlank(message = "비밀번호는 공백일 수 없습니다.") - String password -) { - - public EventAppRequest toAppRequest() { - return new EventAppRequest(eventName, password); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/request/EventUpdateRequest.java b/server/src/main/java/server/haengdong/presentation/request/EventUpdateRequest.java deleted file mode 100644 index cafd12ea6..000000000 --- a/server/src/main/java/server/haengdong/presentation/request/EventUpdateRequest.java +++ /dev/null @@ -1,14 +0,0 @@ -package server.haengdong.presentation.request; - -import server.haengdong.application.request.EventUpdateAppRequest; - -public record EventUpdateRequest( - String eventName, - String bankName, - String accountNumber -) { - - public EventUpdateAppRequest toAppRequest() { - return new EventUpdateAppRequest(eventName, bankName, accountNumber); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/request/MemberSaveRequest.java b/server/src/main/java/server/haengdong/presentation/request/MemberSaveRequest.java deleted file mode 100644 index 8b763be09..000000000 --- a/server/src/main/java/server/haengdong/presentation/request/MemberSaveRequest.java +++ /dev/null @@ -1,10 +0,0 @@ -package server.haengdong.presentation.request; - -import jakarta.validation.constraints.NotBlank; - -public record MemberSaveRequest( - - @NotBlank(message = "참여자 이름은 공백일 수 없습니다.") - String name -) { -} diff --git a/server/src/main/java/server/haengdong/presentation/request/MemberUpdateRequest.java b/server/src/main/java/server/haengdong/presentation/request/MemberUpdateRequest.java deleted file mode 100644 index 1f3bfe95a..000000000 --- a/server/src/main/java/server/haengdong/presentation/request/MemberUpdateRequest.java +++ /dev/null @@ -1,22 +0,0 @@ -package server.haengdong.presentation.request; - -import jakarta.validation.constraints.NotBlank; -import jakarta.validation.constraints.NotNull; -import server.haengdong.application.request.MemberUpdateAppRequest; - -public record MemberUpdateRequest( - - @NotNull(message = "멤버 ID는 공백일 수 없습니다.") - Long id, - - @NotBlank(message = "멤버 이름은 공백일 수 없습니다.") - String name, - - @NotNull(message = "입금 여부는 공백일 수 없습니다.") - boolean isDeposited -) { - - public MemberUpdateAppRequest toAppRequest() { - return new MemberUpdateAppRequest(id, name, isDeposited); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/request/MembersSaveRequest.java b/server/src/main/java/server/haengdong/presentation/request/MembersSaveRequest.java deleted file mode 100644 index cc611742a..000000000 --- a/server/src/main/java/server/haengdong/presentation/request/MembersSaveRequest.java +++ /dev/null @@ -1,17 +0,0 @@ -package server.haengdong.presentation.request; - -import java.util.List; -import server.haengdong.application.request.MemberSaveAppRequest; -import server.haengdong.application.request.MembersSaveAppRequest; - -public record MembersSaveRequest( - List<MemberSaveRequest> members -) { - - public MembersSaveAppRequest toAppRequest() { - return new MembersSaveAppRequest(members.stream() - .map(member -> new MemberSaveAppRequest(member.name())) - .toList()); - - } -} diff --git a/server/src/main/java/server/haengdong/presentation/request/MembersUpdateRequest.java b/server/src/main/java/server/haengdong/presentation/request/MembersUpdateRequest.java deleted file mode 100644 index db3715130..000000000 --- a/server/src/main/java/server/haengdong/presentation/request/MembersUpdateRequest.java +++ /dev/null @@ -1,20 +0,0 @@ -package server.haengdong.presentation.request; - -import jakarta.validation.Valid; -import jakarta.validation.constraints.NotNull; -import java.util.List; -import server.haengdong.application.request.MembersUpdateAppRequest; - -public record MembersUpdateRequest( - - @Valid - @NotNull - List<MemberUpdateRequest> members -) { - - public MembersUpdateAppRequest toAppRequest() { - return new MembersUpdateAppRequest(members.stream() - .map(MemberUpdateRequest::toAppRequest) - .toList()); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/response/BillDetailResponse.java b/server/src/main/java/server/haengdong/presentation/response/BillDetailResponse.java deleted file mode 100644 index 9ff993b8a..000000000 --- a/server/src/main/java/server/haengdong/presentation/response/BillDetailResponse.java +++ /dev/null @@ -1,20 +0,0 @@ -package server.haengdong.presentation.response; - -import server.haengdong.application.response.BillDetailAppResponse; - -public record BillDetailResponse( - Long id, - String memberName, - Long price, - boolean isFixed -) { - - public static BillDetailResponse of(BillDetailAppResponse billDetailAppResponse) { - return new BillDetailResponse( - billDetailAppResponse.id(), - billDetailAppResponse.memberName(), - billDetailAppResponse.price(), - billDetailAppResponse.isFixed() - ); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/response/BillDetailsResponse.java b/server/src/main/java/server/haengdong/presentation/response/BillDetailsResponse.java deleted file mode 100644 index 888b0160d..000000000 --- a/server/src/main/java/server/haengdong/presentation/response/BillDetailsResponse.java +++ /dev/null @@ -1,16 +0,0 @@ -package server.haengdong.presentation.response; - -import java.util.List; -import java.util.stream.Collectors; -import server.haengdong.application.response.BillDetailsAppResponse; - -public record BillDetailsResponse( - List<BillDetailResponse> members -) { - - public static BillDetailsResponse of(BillDetailsAppResponse billDetailsAppResponse) { - return billDetailsAppResponse.billDetails().stream() - .map(BillDetailResponse::of) - .collect(Collectors.collectingAndThen(Collectors.toList(), BillDetailsResponse::new)); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/response/BillResponse.java b/server/src/main/java/server/haengdong/presentation/response/BillResponse.java deleted file mode 100644 index 0f3aaeaa0..000000000 --- a/server/src/main/java/server/haengdong/presentation/response/BillResponse.java +++ /dev/null @@ -1,15 +0,0 @@ -package server.haengdong.presentation.response; - -import server.haengdong.application.response.BillAppResponse; - -public record BillResponse( - Long id, - String title, - Long price, - boolean isFixed -) { - - public static BillResponse of(BillAppResponse response) { - return new BillResponse(response.id(), response.title(), response.price(), response.isFixed()); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/response/CurrentMembersResponse.java b/server/src/main/java/server/haengdong/presentation/response/CurrentMembersResponse.java deleted file mode 100644 index b1fe5720b..000000000 --- a/server/src/main/java/server/haengdong/presentation/response/CurrentMembersResponse.java +++ /dev/null @@ -1,16 +0,0 @@ -package server.haengdong.presentation.response; - -import java.util.List; -import server.haengdong.application.response.LastBillMemberAppResponse; -import server.haengdong.application.response.MemberAppResponse; - -public record CurrentMembersResponse(List<MemberResponse> members) { - - public static CurrentMembersResponse of(List<MemberAppResponse> currentMembers) { - List<MemberResponse> responses = currentMembers.stream() - .map(MemberResponse::of) - .toList(); - - return new CurrentMembersResponse(responses); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/response/EventDetailResponse.java b/server/src/main/java/server/haengdong/presentation/response/EventDetailResponse.java deleted file mode 100644 index e5421940c..000000000 --- a/server/src/main/java/server/haengdong/presentation/response/EventDetailResponse.java +++ /dev/null @@ -1,14 +0,0 @@ -package server.haengdong.presentation.response; - -import server.haengdong.application.response.EventDetailAppResponse; - -public record EventDetailResponse( - String eventName, - String bankName, - String accountNumber -) { - - public static EventDetailResponse of(EventDetailAppResponse response) { - return new EventDetailResponse(response.eventName(), response.bankName(), response.accountNumber()); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/response/EventImageResponse.java b/server/src/main/java/server/haengdong/presentation/response/EventImageResponse.java deleted file mode 100644 index da807655f..000000000 --- a/server/src/main/java/server/haengdong/presentation/response/EventImageResponse.java +++ /dev/null @@ -1,13 +0,0 @@ -package server.haengdong.presentation.response; - -import server.haengdong.application.response.EventImageAppResponse; - -public record EventImageResponse( - Long id, - String url -) { - - public static EventImageResponse of(EventImageAppResponse response) { - return new EventImageResponse(response.id(), response.url()); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/response/EventImagesResponse.java b/server/src/main/java/server/haengdong/presentation/response/EventImagesResponse.java deleted file mode 100644 index d5c2b0ab8..000000000 --- a/server/src/main/java/server/haengdong/presentation/response/EventImagesResponse.java +++ /dev/null @@ -1,15 +0,0 @@ -package server.haengdong.presentation.response; - -import java.util.List; -import server.haengdong.application.response.EventImageAppResponse; - -public record EventImagesResponse(List<EventImageResponse> images) { - - public static EventImagesResponse of(List<EventImageAppResponse> responses) { - List<EventImageResponse> images = responses.stream() - .map(EventImageResponse::of) - .toList(); - - return new EventImagesResponse(images); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/response/EventResponse.java b/server/src/main/java/server/haengdong/presentation/response/EventResponse.java deleted file mode 100644 index 506f5e814..000000000 --- a/server/src/main/java/server/haengdong/presentation/response/EventResponse.java +++ /dev/null @@ -1,10 +0,0 @@ -package server.haengdong.presentation.response; - -import server.haengdong.application.response.EventAppResponse; - -public record EventResponse(String eventId) { - - public static EventResponse of(EventAppResponse eventAppResponse) { - return new EventResponse(eventAppResponse.token()); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/response/MemberBillReportResponse.java b/server/src/main/java/server/haengdong/presentation/response/MemberBillReportResponse.java deleted file mode 100644 index 1ab22b83e..000000000 --- a/server/src/main/java/server/haengdong/presentation/response/MemberBillReportResponse.java +++ /dev/null @@ -1,20 +0,0 @@ -package server.haengdong.presentation.response; - -import server.haengdong.application.response.MemberBillReportAppResponse; - -public record MemberBillReportResponse( - Long memberId, - String memberName, - boolean isDeposited, - Long price -) { - - public static MemberBillReportResponse of(MemberBillReportAppResponse memberBillReportAppResponse) { - return new MemberBillReportResponse( - memberBillReportAppResponse.memberId(), - memberBillReportAppResponse.name(), - memberBillReportAppResponse.isDeposited(), - memberBillReportAppResponse.price() - ); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/response/MemberBillReportsResponse.java b/server/src/main/java/server/haengdong/presentation/response/MemberBillReportsResponse.java deleted file mode 100644 index d350c4009..000000000 --- a/server/src/main/java/server/haengdong/presentation/response/MemberBillReportsResponse.java +++ /dev/null @@ -1,15 +0,0 @@ -package server.haengdong.presentation.response; - -import java.util.List; -import server.haengdong.application.response.MemberBillReportAppResponse; - -public record MemberBillReportsResponse(List<MemberBillReportResponse> reports) { - - public static MemberBillReportsResponse of(List<MemberBillReportAppResponse> memberBillReports) { - List<MemberBillReportResponse> reports = memberBillReports.stream() - .map(MemberBillReportResponse::of) - .toList(); - - return new MemberBillReportsResponse(reports); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/response/MemberDepositResponse.java b/server/src/main/java/server/haengdong/presentation/response/MemberDepositResponse.java deleted file mode 100644 index 26699bc72..000000000 --- a/server/src/main/java/server/haengdong/presentation/response/MemberDepositResponse.java +++ /dev/null @@ -1,14 +0,0 @@ -package server.haengdong.presentation.response; - -import server.haengdong.application.response.MemberDepositAppResponse; - -public record MemberDepositResponse( - Long id, - String name, - boolean isDeposited -) { - - public static MemberDepositResponse of(MemberDepositAppResponse response) { - return new MemberDepositResponse(response.id(), response.name(), response.isDeposited()); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/response/MemberResponse.java b/server/src/main/java/server/haengdong/presentation/response/MemberResponse.java deleted file mode 100644 index 6b43d72ee..000000000 --- a/server/src/main/java/server/haengdong/presentation/response/MemberResponse.java +++ /dev/null @@ -1,18 +0,0 @@ -package server.haengdong.presentation.response; - -import server.haengdong.application.response.LastBillMemberAppResponse; -import server.haengdong.application.response.MemberAppResponse; - -public record MemberResponse( - Long id, - String name -) { - - public static MemberResponse of(MemberAppResponse response) { - return new MemberResponse(response.id(), response.name()); - } - - public static MemberResponse of(LastBillMemberAppResponse response) { - return new MemberResponse(response.id(), response.name()); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/response/MemberSaveResponse.java b/server/src/main/java/server/haengdong/presentation/response/MemberSaveResponse.java deleted file mode 100644 index 21a7e7969..000000000 --- a/server/src/main/java/server/haengdong/presentation/response/MemberSaveResponse.java +++ /dev/null @@ -1,13 +0,0 @@ -package server.haengdong.presentation.response; - -import server.haengdong.application.response.MemberSaveAppResponse; - -public record MemberSaveResponse( - Long id, - String name -) { - - public static MemberSaveResponse of(MemberSaveAppResponse response) { - return new MemberSaveResponse(response.id(), response.name()); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/response/MembersResponse.java b/server/src/main/java/server/haengdong/presentation/response/MembersResponse.java deleted file mode 100644 index 333428761..000000000 --- a/server/src/main/java/server/haengdong/presentation/response/MembersResponse.java +++ /dev/null @@ -1,16 +0,0 @@ -package server.haengdong.presentation.response; - -import java.util.List; -import server.haengdong.application.response.MemberDepositAppResponse; -import server.haengdong.application.response.MembersDepositAppResponse; - -public record MembersResponse( - List<MemberDepositResponse> members -) { - - public static MembersResponse of(MembersDepositAppResponse response) { - return new MembersResponse(response.members().stream() - .map(MemberDepositResponse::of) - .toList()); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/response/MembersSaveResponse.java b/server/src/main/java/server/haengdong/presentation/response/MembersSaveResponse.java deleted file mode 100644 index d4b7ad456..000000000 --- a/server/src/main/java/server/haengdong/presentation/response/MembersSaveResponse.java +++ /dev/null @@ -1,17 +0,0 @@ -package server.haengdong.presentation.response; - -import java.util.List; -import server.haengdong.application.response.MembersSaveAppResponse; - -public record MembersSaveResponse( - List<MemberSaveResponse> members -) { - - public static MembersSaveResponse of(MembersSaveAppResponse response) { - return new MembersSaveResponse( - response.members().stream() - .map(MemberSaveResponse::of) - .toList() - ); - } -} diff --git a/server/src/main/java/server/haengdong/presentation/response/StepResponse.java b/server/src/main/java/server/haengdong/presentation/response/StepResponse.java deleted file mode 100644 index a164e71f5..000000000 --- a/server/src/main/java/server/haengdong/presentation/response/StepResponse.java +++ /dev/null @@ -1,22 +0,0 @@ -package server.haengdong.presentation.response; - -import java.util.List; -import server.haengdong.application.response.StepAppResponse; - -public record StepResponse( - List<BillResponse> bills, - List<MemberResponse> members -) { - - public static StepResponse of(StepAppResponse response) { - List<BillResponse> bills = response.bills().stream() - .map(BillResponse::of) - .toList(); - - List<MemberResponse> members = response.members().stream() - .map(MemberResponse::of) - .toList(); - return new StepResponse(bills, members); - } -} - diff --git a/server/src/main/java/server/haengdong/presentation/response/StepsResponse.java b/server/src/main/java/server/haengdong/presentation/response/StepsResponse.java deleted file mode 100644 index 8a66df1c6..000000000 --- a/server/src/main/java/server/haengdong/presentation/response/StepsResponse.java +++ /dev/null @@ -1,15 +0,0 @@ -package server.haengdong.presentation.response; - -import java.util.List; -import server.haengdong.application.response.StepAppResponse; - -public record StepsResponse( - List<StepResponse> steps -) { - - public static StepsResponse of(List<StepAppResponse> steps) { - return new StepsResponse(steps.stream() - .map(StepResponse::of) - .toList()); - } -} diff --git a/server/src/main/resources/application.yml b/server/src/main/resources/application.yml deleted file mode 100644 index 69472a880..000000000 --- a/server/src/main/resources/application.yml +++ /dev/null @@ -1,76 +0,0 @@ -spring: - datasource: - driver-class-name: org.h2.Driver - url: jdbc:h2:mem:database - username: sa - password: - servlet: - multipart: - max-file-size: 50MB - max-request-size: 300MB - - h2: - console: - enabled: true - path: /h2-console - - jpa: - hibernate: - ddl-auto: create - properties: - hibernate: - default_batch_fetch_size: 30 - format_sql: true - jdbc.time_zone: Asia/Seoul - show-sql: true - -cors: - max-age: 3600 - allowed-origins: http://localhost:3000, https://haengdong.pro, https://dev.haengdong.pro, https://app.haengdong.pro - -security: - jwt: - token: - secret-key: skdmeejEKJdkDjklDlkj123DKLJ3kDkeDkDKQMEOD1D90D8dE - expire-length: 604800000 # 1주일 - -cookie: - http-only: false - secure: false - path: / - same-site: none - max-age: 7D - -image: - bucket: techcourse-project-2024 - directory: haeng-dong/s3-upload-test/ - base-url: https://d2unln22cedgp9.cloudfront.net/ - -management: - endpoints: - web: - exposure: - include: health, metrics, logfile - -server: - servlet: - encoding: - charset: UTF-8 - enabled: true - force: true - ---- - -spring: - config: - import: classpath:config/application-prod.yml - activate: - on-profile: prod - ---- - -spring: - config: - import: classpath:config/application-dev.yml - activate: - on-profile: dev diff --git a/server/src/main/resources/config b/server/src/main/resources/config deleted file mode 160000 index a57fb2fff..000000000 --- a/server/src/main/resources/config +++ /dev/null @@ -1 +0,0 @@ -Subproject commit a57fb2fffd85ad12af1ee98e6b1998dadb3b9d0a diff --git a/server/src/main/resources/logback-spring.xml b/server/src/main/resources/logback-spring.xml deleted file mode 100644 index 283b966a3..000000000 --- a/server/src/main/resources/logback-spring.xml +++ /dev/null @@ -1,97 +0,0 @@ -<configuration> - <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> - <encoder> - <!-- 콘솔에 로그 출력 형식 --> - <pattern>%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n</pattern> - </encoder> - </appender> - - <appender name="ERROR-ROLLING" class="ch.qos.logback.core.rolling.RollingFileAppender"> - <filter class="ch.qos.logback.classic.filter.LevelFilter"> - <level>ERROR</level> - <onMatch>ACCEPT</onMatch> - <onMismatch>DENY</onMismatch> - </filter> - <file>logs/spring-boot-application-error.log</file> - <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> - <fileNamePattern>logs/spring-boot-application-error.%d{yyyy-MM-dd}.log</fileNamePattern> - <maxHistory>30</maxHistory> - </rollingPolicy> - <encoder> - <!-- 날짜, 시간, 로그 레벨, 스레드 이름, 로거 이름, 메시지 형식 --> - <pattern>%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n</pattern> - </encoder> - </appender> - - <appender name="WARN-ROLLING" class="ch.qos.logback.core.rolling.RollingFileAppender"> - <filter class="ch.qos.logback.classic.filter.LevelFilter"> - <level>WARN</level> - <onMatch>ACCEPT</onMatch> - <onMismatch>DENY</onMismatch> - </filter> - <file>logs/spring-boot-application-warn.log</file> - <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> - <fileNamePattern>logs/spring-boot-application-warn.%d{yyyy-MM-dd}.log</fileNamePattern> - <maxHistory>30</maxHistory> - </rollingPolicy> - <encoder> - <!-- 날짜, 시간, 로그 레벨, 스레드 이름, 로거 이름, 메시지 형식 --> - <pattern>%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n</pattern> - </encoder> - </appender> - - <appender name="INFO-ROLLING" class="ch.qos.logback.core.rolling.RollingFileAppender"> - <filter class="ch.qos.logback.classic.filter.LevelFilter"> - <level>INFO</level> - <onMatch>ACCEPT</onMatch> - <onMismatch>DENY</onMismatch> - </filter> - <file>logs/spring-boot-application-info.log</file> - <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> - <fileNamePattern>logs/spring-boot-application-info.%d{yyyy-MM-dd}.log</fileNamePattern> - <maxHistory>30</maxHistory> - </rollingPolicy> - <encoder> - <!-- 날짜, 시간, 로그 레벨, 스레드 이름, 로거 이름, 메시지 형식 --> - <pattern>%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n</pattern> - </encoder> - </appender> - - <appender name="DEBUG-ROLLING" class="ch.qos.logback.core.rolling.RollingFileAppender"> - <filter class="ch.qos.logback.classic.filter.LevelFilter"> - <level>DEBUG</level> - <onMatch>ACCEPT</onMatch> - <onMismatch>DENY</onMismatch> - </filter> - <file>logs/spring-boot-application-debug.log</file> - <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> - <fileNamePattern>logs/spring-boot-application-debug.%d{yyyy-MM-dd}.log</fileNamePattern> - <maxHistory>30</maxHistory> - </rollingPolicy> - <encoder> - <!-- 날짜, 시간, 로그 레벨, 스레드 이름, 로거 이름, 메시지 형식 --> - <pattern>%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n</pattern> - </encoder> - </appender> - - <springProfile name="default"> - <root level="INFO"> - <appender-ref ref="CONSOLE"/> - </root> - </springProfile> - - <springProfile name="dev"> - <root level="INFO"> - <appender-ref ref="ERROR-ROLLING"/> - <appender-ref ref="WARN-ROLLING"/> - <appender-ref ref="INFO-ROLLING"/> - <appender-ref ref="DEBUG-ROLLING"/> - </root> - </springProfile> - - <springProfile name="prod"> - <root level="ERROR"> - <appender-ref ref="ERROR-ROLLING"/> - </root> - </springProfile> -</configuration> diff --git a/server/src/main/resources/static/docs/billAction.html b/server/src/main/resources/static/docs/billAction.html deleted file mode 100644 index 717884320..000000000 --- a/server/src/main/resources/static/docs/billAction.html +++ /dev/null @@ -1,876 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> -<head> -<meta charset="UTF-8"> -<meta http-equiv="X-UA-Compatible" content="IE=edge"> -<meta name="viewport" content="width=device-width, initial-scale=1.0"> -<meta name="generator" content="Asciidoctor 2.0.18"> -<title>지출 액션 - - - - - -
-
-

지출 액션

-
-
-

지출 액션 생성

-
-

Path parameters

- - ---- - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/bill-actions
ParameterDescription

eventId

행사 ID

-
-
-

HTTP request

-
-
-
POST /api/events/%EC%BF%A0%ED%82%A4%ED%86%A0%ED%81%B0/bill-actions HTTP/1.1
-Content-Type: application/json
-Content-Length: 128
-Host: localhost:8080
-Cookie: eventToken=토큰토큰
-
-{
-  "actions" : [ {
-    "title" : "뽕족",
-    "price" : 10000
-  }, {
-    "title" : "인생맥주",
-    "price" : 10000
-  } ]
-}
-
-
-
-
-

Request body

-
-
-
{
-  "actions" : [ {
-    "title" : "뽕족",
-    "price" : 10000
-  }, {
-    "title" : "인생맥주",
-    "price" : 10000
-  } ]
-}
-
-
-
-
-

Request fields

- ----- - - - - - - - - - - - - - - - - - - - - - - - - -
PathTypeDescription

actions

Array

생성할 지출 액션 목록

actions[0].title

String

생성할 지출 액션의 제목

actions[0].price

Number

생성할 지출 액션의 금액

-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-
-
-
-
-

Request cookies

- ---- - - - - - - - - - - - - -
NameDescription

eventToken

행사 관리자 토큰

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"REQUEST_EMPTY",
-      "message":"지출 금액은 비어 있으면 안됩니다."
-   },
-   {
-      "code":"REQUEST_EMPTY",
-      "message":"지출 내역은 비어 있으면 안됩니다."
-   },
-   {
-      "code":"BILL_ACTION_TITLE_INVALID",
-      "message":"앞뒤 공백을 제거한 지출 내역 제목은 %d ~ %d자여야 합니다."
-   },
-   {
-      "code":"BILL_ACTION_PRICE_INVALID",
-      "message":"지출 금액은 10,000,000 이하의 자연수여야 합니다."
-   },
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   },
-   {
-      "code":"TOKEN_NOT_FOUND",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_EXPIRED",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_INVALID",
-      "message":"유효하지 않은 토큰입니다."
-   }
-]
-
-
-
-
-
-

지출 액션 수정

-
-

Path parameters

- - ---- - - - - - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/bill-actions/{actionId}
ParameterDescription

eventId

행사 ID

actionId

지출 액션 ID

-
-
-

HTTP request

-
-
-
PUT /api/events/%EC%9B%A8%EB%94%94%ED%86%A0%ED%81%B0/bill-actions/1 HTTP/1.1
-Content-Type: application/json
-Content-Length: 43
-Host: localhost:8080
-Cookie: eventToken=토큰토큰
-
-{
-  "title" : "뽕족",
-  "price" : 10000
-}
-
-
-
-
-

Request body

-
-
-
{
-  "title" : "뽕족",
-  "price" : 10000
-}
-
-
-
-
-

Request fields

- ----- - - - - - - - - - - - - - - - - - - - -
PathTypeDescription

title

String

수정할 지출 액션의 제목

price

Number

수정할 지출 액션의 금액

-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-
-
-
-
-

Request cookies

- ---- - - - - - - - - - - - - -
NameDescription

eventToken

행사 관리자 토큰

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"REQUEST_EMPTY",
-      "message":"지출 내역 제목은 공백일 수 없습니다."
-   },
-   {
-      "code":"REQUEST_EMPTY",
-      "message":"지출 금액은 공백일 수 없습니다."
-   },
-   {
-      "code":"BILL_ACTION_TITLE_INVALID",
-      "message":"앞뒤 공백을 제거한 지출 내역 제목은 %d ~ %d자여야 합니다."
-   },
-   {
-      "code":"BILL_ACTION_PRICE_INVALID",
-      "message":"지출 금액은 %,d 이하의 자연수여야 합니다."
-   },
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   },
-   {
-      "code":"BILL_ACTION_NOT_FOUND",
-      "message":"존재하지 않는 지출 액션입니다."
-   },
-   {
-      "code":"TOKEN_NOT_FOUND",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_EXPIRED",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_INVALID",
-      "message":"유효하지 않은 토큰입니다."
-   }
-]
-
-
-
-
-
-

지출 액션 삭제

-
-

Path parameters

- - ---- - - - - - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/bill-actions/{actionId}
ParameterDescription

eventId

행사 ID

actionId

지출 액션 ID

-
-
-

HTTP request

-
-
-
DELETE /api/events/%ED%86%A0%EB%8B%A4%EB%A6%AC%ED%86%A0%ED%81%B0/bill-actions/1 HTTP/1.1
-Host: localhost:8080
-Cookie: eventToken=토큰토큰
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-
-
-
-
-

Request cookies

- ---- - - - - - - - - - - - - -
NameDescription

eventToken

행사 관리자 토큰

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   },
-   {
-      "code":"TOKEN_NOT_FOUND",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_EXPIRED",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_INVALID",
-      "message":"유효하지 않은 토큰입니다."
-   }
-]
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/server/src/main/resources/static/docs/event.html b/server/src/main/resources/static/docs/event.html deleted file mode 100644 index 77f87a9da..000000000 --- a/server/src/main/resources/static/docs/event.html +++ /dev/null @@ -1,1428 +0,0 @@ - - - - - - - -행사 - - - - - -
-
-

행사

-
-
-

행사 생성

-
-

HTTP request

-
-
-
POST /api/events HTTP/1.1
-Content-Type: application/json
-Content-Length: 54
-Host: localhost:8080
-
-{
-  "eventName" : "토다리",
-  "password" : "0987"
-}
-
-
-
-
-

Request body

-
-
-
{
-  "eventName" : "토다리",
-  "password" : "0987"
-}
-
-
-
-
-

Request fields

- ----- - - - - - - - - - - - - - - - - - - - -
PathTypeDescription

eventName

String

행사 이름

password

String

행사 비밀 번호

-
-
-

Response body

-
-
-
{
-  "eventId" : "쿠키 토큰"
-}
-
-
-
-
-

Response fields

- ----- - - - - - - - - - - - - - - -
PathTypeDescription

eventId

String

행사 ID

-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Set-Cookie: eventToken=jwtToken; Path=path; Domain=domain; Max-Age=604800; Expires=Thu, 15 Aug 2024 11:50:10 GMT; Secure; HttpOnly; SameSite=none
-Content-Type: application/json
-Content-Length: 33
-
-{
-  "eventId" : "쿠키 토큰"
-}
-
-
-
-
-

Response cookies

- ---- - - - - - - - - - - - - -
NameDescription

eventToken

행사 관리자용 토큰

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"REQUEST_EMPTY",
-      "message":"행사 이름은 공백일 수 없습니다."
-   },
-   {
-      "code":"EVENT_NAME_LENGTH_INVALID",
-      "message":"행사 이름은 2자 이상 30자 이하만 입력 가능합니다. 입력한 이름 길이 : 21"
-   },
-   {
-      "code":"EVENT_NAME_MULTIPLE_BLANK",
-      "message":"행사 이름에는 공백 문자가 연속될 수 없습니다. 입력한 이름 : 공백  문자"
-   },
-  {
-      "code":"EVENT_PASSWORD_INVALID",
-      "message":"비밀번호는 4자리 숫자만 가능합니다."
-   }
-]
-
-
-
-
-
-

행사 관리자 로그인

-
-

Path parameters

- - ---- - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/login
ParameterDescription

eventId

행사 ID

-
-
-

HTTP request

-
-
-
POST /api/events/TOKEN/login HTTP/1.1
-Content-Type: application/json
-Content-Length: 25
-Host: localhost:8080
-
-{
-  "password" : "1234"
-}
-
-
-
-
-

Request body

-
-
-
{
-  "password" : "1234"
-}
-
-
-
-
-

Request fields

- ----- - - - - - - - - - - - - - - -
PathTypeDescription

password

String

행사 비밀 번호

-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Set-Cookie: eventToken=jwtToken; Path=path; Domain=domain; Max-Age=604800; Expires=Thu, 15 Aug 2024 11:50:10 GMT; Secure; HttpOnly; SameSite=none
-
-
-
-
-

Response cookies

- ---- - - - - - - - - - - - - -
NameDescription

eventToken

행사 관리자용 토큰

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   },
-   {
-      "code":"REQUEST_EMPTY",
-      "message":"비밀번호는 공백일 수 없습니다."
-   },
-   {
-      "code":"PASSWORD_INVALID",
-      "message":"비밀번호가 일치하지 않습니다."
-   }
-]
-
-
-
-
-
-

행사 정보 조회

-
-

Path parameters

- - ---- - - - - - - - - - - - - -
Table 1. /api/events/{eventId}
ParameterDescription

eventId

행사 ID

-
-
-

HTTP request

-
-
-
GET /api/events/%EB%A7%9D%EC%B5%B8%ED%86%A0%ED%81%B0 HTTP/1.1
-Host: localhost:8080
-
-
-
-
-

Response body

-
-
-
{
-  "eventName" : "행동대장 회식"
-}
-
-
-
-
-

Response fields

- ----- - - - - - - - - - - - - - - -
PathTypeDescription

eventName

String

행사 이름

-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json
-Content-Length: 41
-
-{
-  "eventName" : "행동대장 회식"
-}
-
-
-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   }
-]
-
-
-
-
-
-

행사 전체 참여자 목록 조회

-
-

Path parameters

- - ---- - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/updatedMembers
ParameterDescription

eventId

행사 ID

-
-
-

HTTP request

-
-
-
GET /api/events/TOKEN/updatedMembers HTTP/1.1
-Host: localhost:8080
-
-
-
-
-

Response body

-
-
-
{
-  "memberNames" : [ "토다리", "쿠키" ]
-}
-
-
-
-
-

Response fields

- ----- - - - - - - - - - - - - - - -
PathTypeDescription

memberNames

Array

행사 참여자 목록

-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json
-Content-Length: 47
-
-{
-  "memberNames" : [ "토다리", "쿠키" ]
-}
-
-
-
-
-

Response fields

- ----- - - - - - - - - - - - - - - -
PathTypeDescription

memberNames

Array

행사 참여자 목록

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   }
-]
-
-
-
-
-
-

행사 전체 액션 이력 조회

-
-

Path parameters

- - ---- - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/actions
ParameterDescription

eventId

행사 ID

-
-
-

HTTP request

-
-
-
GET /api/events/TOKEN/actions HTTP/1.1
-Accept: application/json
-Host: localhost:8080
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json
-Content-Length: 638
-
-{
-  "steps" : [ {
-    "type" : "IN",
-    "updatedMembers" : [ "망쵸" ],
-    "actions" : [ {
-      "actionId" : 1,
-      "name" : "망쵸",
-      "price" : null,
-      "sequence" : 1
-    } ]
-  }, {
-    "type" : "BILL",
-    "updatedMembers" : [ "망쵸" ],
-    "actions" : [ {
-      "actionId" : 2,
-      "name" : "족발",
-      "price" : 100,
-      "sequence" : 2
-    }, {
-      "actionId" : 3,
-      "name" : "인생네컷",
-      "price" : 1000,
-      "sequence" : 3
-    } ]
-  }, {
-    "type" : "OUT",
-    "updatedMembers" : [ ],
-    "actions" : [ {
-      "actionId" : 4,
-      "name" : "망쵸",
-      "price" : null,
-      "sequence" : 4
-    } ]
-  } ]
-}
-
-
-
-
-

Response fields

- ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
PathTypeDescription

steps[].type

String

액션 유형 [BILL, IN, OUT]

steps[].updatedMembers

Array

해당 step에 참여한 참여자 목록

steps[].actions[].actionId

Number

액션 ID

steps[].actions[].name

String

참여자 액션일 경우 참여자 이름, 지출 액션일 경우 지출 내역 이름

steps[].actions[].price

Number

참여자 액션일 경우 null, 지출 액션일 경우 지출 금액

steps[].actions[].sequence

Number

액션 순서

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   }
-]
-
-
-
-
-
-

행사 참여자 이름 변경

-
-

Path parameters

- - ---- - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/updatedMembers/nameChange
ParameterDescription

eventId

행사 ID

-
-
-

HTTP request

-
-
-
PUT /api/events/TOKEN/updatedMembers/nameChange HTTP/1.1
-Content-Type: application/json
-Content-Length: 139
-Host: localhost:8080
-Cookie: eventToken=토큰토큰
-
-{
-  "updatedMembers" : [ {
-    "before" : "토다링",
-    "after" : "토쟁이"
-  }, {
-    "before" : "감자",
-    "after" : "고구마"
-  } ]
-}
-
-
-
-
-

Request body

-
-
-
{
-  "updatedMembers" : [ {
-    "before" : "토다링",
-    "after" : "토쟁이"
-  }, {
-    "before" : "감자",
-    "after" : "고구마"
-  } ]
-}
-
-
-
-
-

Request fields

- ----- - - - - - - - - - - - - - - - - - - - - - - - - -
PathTypeDescription

updatedMembers

Array

수정할 참여자 목록

updatedMembers[].before

String

수정 전 참여자 이름

updatedMembers[].after

String

수정 후 참여자 이름

-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-
-
-
-
-

Request cookies

- ---- - - - - - - - - - - - - -
NameDescription

eventToken

행사 관리자 토큰

-
-
-

Exceptions

-
-
-
[
-
-   {
-      "code":"MEMBER_NAME_CHANGE_DUPLICATE",
-      "message":"중복된 참여 인원 이름 변경 요청이 존재합니다."
-   },
-   {
-      "code":"MEMBER_NOT_EXIST",
-      "message":"현재 참여하고 있지 않는 인원이 존재합니다."
-   },
-   {
-      "code":"REQUEST_EMPTY",
-      "message":"멤버 이름은 공백일 수 없습니다."
-   },
-   {
-      "code":"MEMBER_NAME_LENGTH_INVALID",
-      "message":"멤버 이름은 1자 이상 4자 이하만 입력 가능합니다."
-   },
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   },
-   {
-      "code":"MEMBER_NAME_DUPLICATE",
-      "message":"중복된 행사 참여 인원 이름이 존재합니다."
-   },
-   {
-      "code":"TOKEN_NOT_FOUND",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_EXPIRED",
-      "message":"만료된 토큰입니다."
-   },
-   {
-      "code":"TOKEN_INVALID",
-      "message":"유효하지 않은 토큰입니다."
-   }
-]
-
-
-
-
-
-

행사 참여자 삭제 (특정 참여자의 모든 참여자 액션 삭제)

-
-

Path parameters

- - ---- - - - - - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/updatedMembers/{memberName}
ParameterDescription

eventId

행사 ID

memberName

행사 참여자 이름

-
-
-

HTTP request

-
-
-
DELETE /api/events/%EB%A7%9D%EC%B5%B8%ED%86%A0%ED%81%B0/updatedMembers/%ED%96%89%EB%8F%99%EB%8C%80%EC%9E%A5 HTTP/1.1
-Host: localhost:8080
-Cookie: eventToken=토큰토큰
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-
-
-
-
-

Request cookies

- ---- - - - - - - - - - - - - -
NameDescription

eventToken

행사 관리자용 토큰

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   },
-   {
-      "code":"TOKEN_NOT_FOUND",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_EXPIRED",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_INVALID",
-      "message":"유효하지 않은 토큰입니다."
-   }
-]
-
-
-
-
-
-

행사 어드민 권한 확인

-
-

HTTP request

-
-
-
GET /api/events/TOKEN/auth HTTP/1.1
-Host: localhost:8080
-Cookie: eventToken=토큰토큰
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-
-
-
-
-

Request cookies

- ---- - - - - - - - - - - - - -
NameDescription

eventToken

행사 관리자 토큰

-
-
-

Exceptions

-
-
-
[
-   {
-      "code": "EVENT_NOT_FOUND",
-      "message": "존재하지 않는 행사입니다."
-   },
-   {
-      "code": "TOKEN_NOT_FOUND",
-      "message": "토큰이 존재하지 않습니다."
-   },
-   {
-      "code": "TOKEN_EXPIRED",
-      "message": "만료된 토큰입니다."
-   },
-   {
-      "code": "TOKEN_INVALID",
-      "message": "유효하지 않은 토큰입니다."
-   },
-   {
-      "code": "FORBIDDEN",
-      "message": "접근할 수 없는 행사입니다."
-   }
-]
-
-
-
-
-
-
-
- - - diff --git a/server/src/main/resources/static/docs/index.html b/server/src/main/resources/static/docs/index.html deleted file mode 100644 index 641a70971..000000000 --- a/server/src/main/resources/static/docs/index.html +++ /dev/null @@ -1,2392 +0,0 @@ - - - - - - - -행동대장 - - - - - - - -
-
-

1. 행사

-
-
-

1.1. 행사 생성

-
-

HTTP request

-
-
-
POST /api/events HTTP/1.1
-Content-Type: application/json
-Content-Length: 54
-Host: localhost:8080
-
-{
-  "eventName" : "토다리",
-  "password" : "0987"
-}
-
-
-
-
-

Request body

-
-
-
{
-  "eventName" : "토다리",
-  "password" : "0987"
-}
-
-
-
-
-

Request fields

- ----- - - - - - - - - - - - - - - - - - - - -
PathTypeDescription

eventName

String

행사 이름

password

String

행사 비밀 번호

-
-
-

Response body

-
-
-
{
-  "eventId" : "쿠키 토큰"
-}
-
-
-
-
-

Response fields

- ----- - - - - - - - - - - - - - - -
PathTypeDescription

eventId

String

행사 ID

-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Set-Cookie: eventToken=jwtToken; Path=path; Domain=domain; Max-Age=604800; Expires=Thu, 15 Aug 2024 11:50:10 GMT; Secure; HttpOnly; SameSite=none
-Content-Type: application/json
-Content-Length: 33
-
-{
-  "eventId" : "쿠키 토큰"
-}
-
-
-
-
-

Response cookies

- ---- - - - - - - - - - - - - -
NameDescription

eventToken

행사 관리자용 토큰

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"REQUEST_EMPTY",
-      "message":"행사 이름은 공백일 수 없습니다."
-   },
-   {
-      "code":"EVENT_NAME_LENGTH_INVALID",
-      "message":"행사 이름은 2자 이상 30자 이하만 입력 가능합니다. 입력한 이름 길이 : 21"
-   },
-   {
-      "code":"EVENT_NAME_MULTIPLE_BLANK",
-      "message":"행사 이름에는 공백 문자가 연속될 수 없습니다. 입력한 이름 : 공백  문자"
-   },
-  {
-      "code":"EVENT_PASSWORD_INVALID",
-      "message":"비밀번호는 4자리 숫자만 가능합니다."
-   }
-]
-
-
-
-
-
-

1.2. 행사 관리자 로그인

-
-

Path parameters

- - ---- - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/login
ParameterDescription

eventId

행사 ID

-
-
-

HTTP request

-
-
-
POST /api/events/TOKEN/login HTTP/1.1
-Content-Type: application/json
-Content-Length: 25
-Host: localhost:8080
-
-{
-  "password" : "1234"
-}
-
-
-
-
-

Request body

-
-
-
{
-  "password" : "1234"
-}
-
-
-
-
-

Request fields

- ----- - - - - - - - - - - - - - - -
PathTypeDescription

password

String

행사 비밀 번호

-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Set-Cookie: eventToken=jwtToken; Path=path; Domain=domain; Max-Age=604800; Expires=Thu, 15 Aug 2024 11:50:10 GMT; Secure; HttpOnly; SameSite=none
-
-
-
-
-

Response cookies

- ---- - - - - - - - - - - - - -
NameDescription

eventToken

행사 관리자용 토큰

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   },
-   {
-      "code":"REQUEST_EMPTY",
-      "message":"비밀번호는 공백일 수 없습니다."
-   },
-   {
-      "code":"PASSWORD_INVALID",
-      "message":"비밀번호가 일치하지 않습니다."
-   }
-]
-
-
-
-
-
-

1.3. 행사 정보 조회

-
-

Path parameters

- - ---- - - - - - - - - - - - - -
Table 1. /api/events/{eventId}
ParameterDescription

eventId

행사 ID

-
-
-

HTTP request

-
-
-
GET /api/events/%EB%A7%9D%EC%B5%B8%ED%86%A0%ED%81%B0 HTTP/1.1
-Host: localhost:8080
-
-
-
-
-

Response body

-
-
-
{
-  "eventName" : "행동대장 회식"
-}
-
-
-
-
-

Response fields

- ----- - - - - - - - - - - - - - - -
PathTypeDescription

eventName

String

행사 이름

-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json
-Content-Length: 41
-
-{
-  "eventName" : "행동대장 회식"
-}
-
-
-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   }
-]
-
-
-
-
-
-

1.4. 행사 전체 참여자 목록 조회

-
-

Path parameters

- - ---- - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/updatedMembers
ParameterDescription

eventId

행사 ID

-
-
-

HTTP request

-
-
-
GET /api/events/TOKEN/updatedMembers HTTP/1.1
-Host: localhost:8080
-
-
-
-
-

Response body

-
-
-
{
-  "memberNames" : [ "토다리", "쿠키" ]
-}
-
-
-
-
-

Response fields

- ----- - - - - - - - - - - - - - - -
PathTypeDescription

memberNames

Array

행사 참여자 목록

-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json
-Content-Length: 47
-
-{
-  "memberNames" : [ "토다리", "쿠키" ]
-}
-
-
-
-
-

Response fields

- ----- - - - - - - - - - - - - - - -
PathTypeDescription

memberNames

Array

행사 참여자 목록

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   }
-]
-
-
-
-
-
-

1.5. 행사 전체 액션 이력 조회

-
-

Path parameters

- - ---- - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/actions
ParameterDescription

eventId

행사 ID

-
-
-

HTTP request

-
-
-
GET /api/events/TOKEN/actions HTTP/1.1
-Accept: application/json
-Host: localhost:8080
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json
-Content-Length: 638
-
-{
-  "steps" : [ {
-    "type" : "IN",
-    "updatedMembers" : [ "망쵸" ],
-    "actions" : [ {
-      "actionId" : 1,
-      "name" : "망쵸",
-      "price" : null,
-      "sequence" : 1
-    } ]
-  }, {
-    "type" : "BILL",
-    "updatedMembers" : [ "망쵸" ],
-    "actions" : [ {
-      "actionId" : 2,
-      "name" : "족발",
-      "price" : 100,
-      "sequence" : 2
-    }, {
-      "actionId" : 3,
-      "name" : "인생네컷",
-      "price" : 1000,
-      "sequence" : 3
-    } ]
-  }, {
-    "type" : "OUT",
-    "updatedMembers" : [ ],
-    "actions" : [ {
-      "actionId" : 4,
-      "name" : "망쵸",
-      "price" : null,
-      "sequence" : 4
-    } ]
-  } ]
-}
-
-
-
-
-

Response fields

- ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
PathTypeDescription

steps[].type

String

액션 유형 [BILL, IN, OUT]

steps[].updatedMembers

Array

해당 step에 참여한 참여자 목록

steps[].actions[].actionId

Number

액션 ID

steps[].actions[].name

String

참여자 액션일 경우 참여자 이름, 지출 액션일 경우 지출 내역 이름

steps[].actions[].price

Number

참여자 액션일 경우 null, 지출 액션일 경우 지출 금액

steps[].actions[].sequence

Number

액션 순서

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   }
-]
-
-
-
-
-
-

1.6. 행사 참여자 이름 변경

-
-

Path parameters

- - ---- - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/updatedMembers/nameChange
ParameterDescription

eventId

행사 ID

-
-
-

HTTP request

-
-
-
PUT /api/events/TOKEN/updatedMembers/nameChange HTTP/1.1
-Content-Type: application/json
-Content-Length: 139
-Host: localhost:8080
-Cookie: eventToken=토큰토큰
-
-{
-  "updatedMembers" : [ {
-    "before" : "토다링",
-    "after" : "토쟁이"
-  }, {
-    "before" : "감자",
-    "after" : "고구마"
-  } ]
-}
-
-
-
-
-

Request body

-
-
-
{
-  "updatedMembers" : [ {
-    "before" : "토다링",
-    "after" : "토쟁이"
-  }, {
-    "before" : "감자",
-    "after" : "고구마"
-  } ]
-}
-
-
-
-
-

Request fields

- ----- - - - - - - - - - - - - - - - - - - - - - - - - -
PathTypeDescription

updatedMembers

Array

수정할 참여자 목록

updatedMembers[].before

String

수정 전 참여자 이름

updatedMembers[].after

String

수정 후 참여자 이름

-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-
-
-
-
-

Request cookies

- ---- - - - - - - - - - - - - -
NameDescription

eventToken

행사 관리자 토큰

-
-
-

Exceptions

-
-
-
[
-
-   {
-      "code":"MEMBER_NAME_CHANGE_DUPLICATE",
-      "message":"중복된 참여 인원 이름 변경 요청이 존재합니다."
-   },
-   {
-      "code":"MEMBER_NOT_EXIST",
-      "message":"현재 참여하고 있지 않는 인원이 존재합니다."
-   },
-   {
-      "code":"REQUEST_EMPTY",
-      "message":"멤버 이름은 공백일 수 없습니다."
-   },
-   {
-      "code":"MEMBER_NAME_LENGTH_INVALID",
-      "message":"멤버 이름은 1자 이상 4자 이하만 입력 가능합니다."
-   },
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   },
-   {
-      "code":"MEMBER_NAME_DUPLICATE",
-      "message":"중복된 행사 참여 인원 이름이 존재합니다."
-   },
-   {
-      "code":"TOKEN_NOT_FOUND",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_EXPIRED",
-      "message":"만료된 토큰입니다."
-   },
-   {
-      "code":"TOKEN_INVALID",
-      "message":"유효하지 않은 토큰입니다."
-   }
-]
-
-
-
-
-
-

1.7. 행사 참여자 삭제 (특정 참여자의 모든 참여자 액션 삭제)

-
-

Path parameters

- - ---- - - - - - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/updatedMembers/{memberName}
ParameterDescription

eventId

행사 ID

memberName

행사 참여자 이름

-
-
-

HTTP request

-
-
-
DELETE /api/events/%EB%A7%9D%EC%B5%B8%ED%86%A0%ED%81%B0/updatedMembers/%ED%96%89%EB%8F%99%EB%8C%80%EC%9E%A5 HTTP/1.1
-Host: localhost:8080
-Cookie: eventToken=토큰토큰
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-
-
-
-
-

Request cookies

- ---- - - - - - - - - - - - - -
NameDescription

eventToken

행사 관리자용 토큰

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   },
-   {
-      "code":"TOKEN_NOT_FOUND",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_EXPIRED",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_INVALID",
-      "message":"유효하지 않은 토큰입니다."
-   }
-]
-
-
-
-
-
-

1.8. 행사 어드민 권한 확인

-
-

HTTP request

-
-
-
GET /api/events/TOKEN/auth HTTP/1.1
-Host: localhost:8080
-Cookie: eventToken=토큰토큰
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-
-
-
-
-

Request cookies

- ---- - - - - - - - - - - - - -
NameDescription

eventToken

행사 관리자 토큰

-
-
-

Exceptions

-
-
-
[
-   {
-      "code": "EVENT_NOT_FOUND",
-      "message": "존재하지 않는 행사입니다."
-   },
-   {
-      "code": "TOKEN_NOT_FOUND",
-      "message": "토큰이 존재하지 않습니다."
-   },
-   {
-      "code": "TOKEN_EXPIRED",
-      "message": "만료된 토큰입니다."
-   },
-   {
-      "code": "TOKEN_INVALID",
-      "message": "유효하지 않은 토큰입니다."
-   },
-   {
-      "code": "FORBIDDEN",
-      "message": "접근할 수 없는 행사입니다."
-   }
-]
-
-
-
-
-
-
-
-

2. 정산

-
-
-

2.1. 참여자별 정산 결과 조회

-
-

Path parameters

- - ---- - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/actions/reports
ParameterDescription

eventId

행사 ID

-
-
-

HTTP request

-
-
-
GET /api/events/%EB%A7%9D%EC%B5%B8%ED%86%A0%ED%81%B0/actions/reports HTTP/1.1
-Accept: application/json
-Host: localhost:8080
-
-
-
-
-

Response body

-
-
-
{
-  "reports" : [ {
-    "name" : "소하",
-    "price" : 20000
-  }, {
-    "name" : "토다리",
-    "price" : 200000
-  } ]
-}
-
-
-
-
-

Response fields

- ----- - - - - - - - - - - - - - - - - - - - - - - - - -
PathTypeDescription

reports

Array

전체 정산 현황 목록

reports[0].name

String

참여자 이름

reports[0].price

Number

참여자 정산 금액

-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json
-Content-Length: 124
-
-{
-  "reports" : [ {
-    "name" : "소하",
-    "price" : 20000
-  }, {
-    "name" : "토다리",
-    "price" : 200000
-  } ]
-}
-
-
-
-
-

HTTP request

-
-
-
GET /api/events/%EB%A7%9D%EC%B5%B8%ED%86%A0%ED%81%B0/actions/reports HTTP/1.1
-Accept: application/json
-Host: localhost:8080
-
-
-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   }
-]
-
-
-
-
-
-
-
-

3. 참여자 액션

-
-
-

3.1. 참여자 액션 생성

-
-

Path parameters

- - ---- - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/member-actions
ParameterDescription

eventId

행사 ID

-
-
-

HTTP request

-
-
-
POST /api/events/%EB%A7%9D%EC%B5%B8%ED%86%A0%ED%81%B0/member-actions HTTP/1.1
-Content-Type: application/json
-Content-Length: 82
-Host: localhost:8080
-Cookie: eventToken=토큰토큰
-
-{
-  "updatedMembers" : [ "웨디", "소하", "토다리", "쿠키" ],
-  "status" : "IN"
-}
-
-
-
-
-

Request body

-
-
-
{
-  "updatedMembers" : [ "웨디", "소하", "토다리", "쿠키" ],
-  "status" : "IN"
-}
-
-
-
-
-

Request fields

- ----- - - - - - - - - - - - - - - - - - - - -
PathTypeDescription

updatedMembers

Array

액션 대상 참여자 목록

status

String

참여자 액션 상태 [IN(늦참), OUT(탈주)]

-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-
-
-
-
-

Request cookies

- ---- - - - - - - - - - - - - -
NameDescription

eventToken

토큰 토큰

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"REQUEST_EMPTY",
-      "message":"멤버 액션은 공백일 수 없습니다."
-   },
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   },
-   {
-      "code":"MEMBER_ACTION_STATUS_INVALID",
-      "message":"멤버 액션은 IN, OUT만 가능합니다. 입력한 멤버 액션: I_N"
-   },
-   {
-      "code":"MEMBER_ALREADY_EXIST",
-      "message":"현재 참여하고 있는 인원이 존재합니다."
-   },
-   {
-      "code":"MEMBER_NOT_EXIST",
-      "message":"현재 참여하고 있지 않는 인원이 존재합니다."
-   },
-   {
-      "code":"MEMBER_NAME_DUPLICATE",
-      "message":"중복된 이름이 존재합니다. 입력된 이름: 이상, 이상, 감자, 백호"
-   },
-   {
-      "code":"TOKEN_NOT_FOUND",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_EXPIRED",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_INVALID",
-      "message":"유효하지 않은 토큰입니다."
-   }
-]
-
-
-
-
-
-

3.2. 현재 행사에 참여 중인 (탈주 가능한) 참여자 목록 조회

-
-

Path parameters

- - ---- - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/updatedMembers/current
ParameterDescription

eventId

행사 ID

-
-
-

HTTP request

-
-
-
GET /api/events/%EB%A7%9D%EC%B5%B8%ED%86%A0%ED%81%B0/updatedMembers/current HTTP/1.1
-Accept: application/json
-Host: localhost:8080
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json
-Content-Length: 81
-
-{
-  "updatedMembers" : [ {
-    "name" : "소하"
-  }, {
-    "name" : "토다리"
-  } ]
-}
-
-
-
-
-

Response fields

- ----- - - - - - - - - - - - - - - - - - - - -
PathTypeDescription

updatedMembers

Array

액션 대상 참여자 목록

updatedMembers[0].name

String

참여자 이름

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   }
-]
-
-
-
-
-
-

3.3. 참여자 액션 삭제

-
-

Path parameters

- - ---- - - - - - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/member-actions/{actionId}
ParameterDescription

eventId

행사 ID

actionId

액션 ID

-
-
-

HTTP request

-
-
-
DELETE /api/events/%EB%A7%9D%EC%B5%B8%ED%86%A0%ED%81%B0/member-actions/2 HTTP/1.1
-Host: localhost:8080
-Cookie: eventToken=토큰토큰
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-
-
-
-
-

Request cookies

- ---- - - - - - - - - - - - - -
NameDescription

eventToken

행사 관리자용 토큰

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   },
-   {
-      "code":"ACTION_NOT_FOUND",
-      "message":"존재하지 않는 액션입니다."
-   },
-   {
-      "code":"MEMBER_ACTION_NOT_FOUND",
-      "message":"존재하지 않는 멤버 액션입니다."
-   },
-   {
-      "code":"TOKEN_NOT_FOUND",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_EXPIRED",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_INVALID",
-      "message":"유효하지 않은 토큰입니다."
-   }
-]
-
-
-
-
-
-
-
-

4. 지출 액션

-
-
-

4.1. 지출 액션 생성

-
-

Path parameters

- - ---- - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/bill-actions
ParameterDescription

eventId

행사 ID

-
-
-

HTTP request

-
-
-
POST /api/events/%EC%BF%A0%ED%82%A4%ED%86%A0%ED%81%B0/bill-actions HTTP/1.1
-Content-Type: application/json
-Content-Length: 128
-Host: localhost:8080
-Cookie: eventToken=토큰토큰
-
-{
-  "actions" : [ {
-    "title" : "뽕족",
-    "price" : 10000
-  }, {
-    "title" : "인생맥주",
-    "price" : 10000
-  } ]
-}
-
-
-
-
-

Request body

-
-
-
{
-  "actions" : [ {
-    "title" : "뽕족",
-    "price" : 10000
-  }, {
-    "title" : "인생맥주",
-    "price" : 10000
-  } ]
-}
-
-
-
-
-

Request fields

- ----- - - - - - - - - - - - - - - - - - - - - - - - - -
PathTypeDescription

actions

Array

생성할 지출 액션 목록

actions[0].title

String

생성할 지출 액션의 제목

actions[0].price

Number

생성할 지출 액션의 금액

-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-
-
-
-
-

Request cookies

- ---- - - - - - - - - - - - - -
NameDescription

eventToken

행사 관리자 토큰

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"REQUEST_EMPTY",
-      "message":"지출 금액은 비어 있으면 안됩니다."
-   },
-   {
-      "code":"REQUEST_EMPTY",
-      "message":"지출 내역은 비어 있으면 안됩니다."
-   },
-   {
-      "code":"BILL_ACTION_TITLE_INVALID",
-      "message":"앞뒤 공백을 제거한 지출 내역 제목은 %d ~ %d자여야 합니다."
-   },
-   {
-      "code":"BILL_ACTION_PRICE_INVALID",
-      "message":"지출 금액은 10,000,000 이하의 자연수여야 합니다."
-   },
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   },
-   {
-      "code":"TOKEN_NOT_FOUND",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_EXPIRED",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_INVALID",
-      "message":"유효하지 않은 토큰입니다."
-   }
-]
-
-
-
-
-
-

4.2. 지출 액션 수정

-
-

Path parameters

- - ---- - - - - - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/bill-actions/{actionId}
ParameterDescription

eventId

행사 ID

actionId

지출 액션 ID

-
-
-

HTTP request

-
-
-
PUT /api/events/%EC%9B%A8%EB%94%94%ED%86%A0%ED%81%B0/bill-actions/1 HTTP/1.1
-Content-Type: application/json
-Content-Length: 43
-Host: localhost:8080
-Cookie: eventToken=토큰토큰
-
-{
-  "title" : "뽕족",
-  "price" : 10000
-}
-
-
-
-
-

Request body

-
-
-
{
-  "title" : "뽕족",
-  "price" : 10000
-}
-
-
-
-
-

Request fields

- ----- - - - - - - - - - - - - - - - - - - - -
PathTypeDescription

title

String

수정할 지출 액션의 제목

price

Number

수정할 지출 액션의 금액

-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-
-
-
-
-

Request cookies

- ---- - - - - - - - - - - - - -
NameDescription

eventToken

행사 관리자 토큰

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"REQUEST_EMPTY",
-      "message":"지출 내역 제목은 공백일 수 없습니다."
-   },
-   {
-      "code":"REQUEST_EMPTY",
-      "message":"지출 금액은 공백일 수 없습니다."
-   },
-   {
-      "code":"BILL_ACTION_TITLE_INVALID",
-      "message":"앞뒤 공백을 제거한 지출 내역 제목은 %d ~ %d자여야 합니다."
-   },
-   {
-      "code":"BILL_ACTION_PRICE_INVALID",
-      "message":"지출 금액은 %,d 이하의 자연수여야 합니다."
-   },
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   },
-   {
-      "code":"BILL_ACTION_NOT_FOUND",
-      "message":"존재하지 않는 지출 액션입니다."
-   },
-   {
-      "code":"TOKEN_NOT_FOUND",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_EXPIRED",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_INVALID",
-      "message":"유효하지 않은 토큰입니다."
-   }
-]
-
-
-
-
-
-

4.3. 지출 액션 삭제

-
-

Path parameters

- - ---- - - - - - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/bill-actions/{actionId}
ParameterDescription

eventId

행사 ID

actionId

지출 액션 ID

-
-
-

HTTP request

-
-
-
DELETE /api/events/%ED%86%A0%EB%8B%A4%EB%A6%AC%ED%86%A0%ED%81%B0/bill-actions/1 HTTP/1.1
-Host: localhost:8080
-Cookie: eventToken=토큰토큰
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-
-
-
-
-

Request cookies

- ---- - - - - - - - - - - - - -
NameDescription

eventToken

행사 관리자 토큰

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   },
-   {
-      "code":"TOKEN_NOT_FOUND",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_EXPIRED",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_INVALID",
-      "message":"유효하지 않은 토큰입니다."
-   }
-]
-
-
-
-
-
-
-
- - - - - diff --git a/server/src/main/resources/static/docs/memberAction.html b/server/src/main/resources/static/docs/memberAction.html deleted file mode 100644 index 963b88c38..000000000 --- a/server/src/main/resources/static/docs/memberAction.html +++ /dev/null @@ -1,808 +0,0 @@ - - - - - - - -참여자 액션 - - - - - -
-
-

참여자 액션

-
-
-

참여자 액션 생성

-
-

Path parameters

- - ---- - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/member-actions
ParameterDescription

eventId

행사 ID

-
-
-

HTTP request

-
-
-
POST /api/events/%EB%A7%9D%EC%B5%B8%ED%86%A0%ED%81%B0/member-actions HTTP/1.1
-Content-Type: application/json
-Content-Length: 82
-Host: localhost:8080
-Cookie: eventToken=토큰토큰
-
-{
-  "updatedMembers" : [ "웨디", "소하", "토다리", "쿠키" ],
-  "status" : "IN"
-}
-
-
-
-
-

Request body

-
-
-
{
-  "updatedMembers" : [ "웨디", "소하", "토다리", "쿠키" ],
-  "status" : "IN"
-}
-
-
-
-
-

Request fields

- ----- - - - - - - - - - - - - - - - - - - - -
PathTypeDescription

updatedMembers

Array

액션 대상 참여자 목록

status

String

참여자 액션 상태 [IN(늦참), OUT(탈주)]

-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-
-
-
-
-

Request cookies

- ---- - - - - - - - - - - - - -
NameDescription

eventToken

토큰 토큰

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"REQUEST_EMPTY",
-      "message":"멤버 액션은 공백일 수 없습니다."
-   },
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   },
-   {
-      "code":"MEMBER_ACTION_STATUS_INVALID",
-      "message":"멤버 액션은 IN, OUT만 가능합니다. 입력한 멤버 액션: I_N"
-   },
-   {
-      "code":"MEMBER_ALREADY_EXIST",
-      "message":"현재 참여하고 있는 인원이 존재합니다."
-   },
-   {
-      "code":"MEMBER_NOT_EXIST",
-      "message":"현재 참여하고 있지 않는 인원이 존재합니다."
-   },
-   {
-      "code":"MEMBER_NAME_DUPLICATE",
-      "message":"중복된 이름이 존재합니다. 입력된 이름: 이상, 이상, 감자, 백호"
-   },
-   {
-      "code":"TOKEN_NOT_FOUND",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_EXPIRED",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_INVALID",
-      "message":"유효하지 않은 토큰입니다."
-   }
-]
-
-
-
-
-
-

현재 행사에 참여 중인 (탈주 가능한) 참여자 목록 조회

-
-

Path parameters

- - ---- - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/updatedMembers/current
ParameterDescription

eventId

행사 ID

-
-
-

HTTP request

-
-
-
GET /api/events/%EB%A7%9D%EC%B5%B8%ED%86%A0%ED%81%B0/updatedMembers/current HTTP/1.1
-Accept: application/json
-Host: localhost:8080
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json
-Content-Length: 81
-
-{
-  "updatedMembers" : [ {
-    "name" : "소하"
-  }, {
-    "name" : "토다리"
-  } ]
-}
-
-
-
-
-

Response fields

- ----- - - - - - - - - - - - - - - - - - - - -
PathTypeDescription

updatedMembers

Array

액션 대상 참여자 목록

updatedMembers[0].name

String

참여자 이름

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   }
-]
-
-
-
-
-
-

참여자 액션 삭제

-
-

Path parameters

- - ---- - - - - - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/member-actions/{actionId}
ParameterDescription

eventId

행사 ID

actionId

액션 ID

-
-
-

HTTP request

-
-
-
DELETE /api/events/%EB%A7%9D%EC%B5%B8%ED%86%A0%ED%81%B0/member-actions/2 HTTP/1.1
-Host: localhost:8080
-Cookie: eventToken=토큰토큰
-
-
-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-
-
-
-
-

Request cookies

- ---- - - - - - - - - - - - - -
NameDescription

eventToken

행사 관리자용 토큰

-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   },
-   {
-      "code":"ACTION_NOT_FOUND",
-      "message":"존재하지 않는 액션입니다."
-   },
-   {
-      "code":"MEMBER_ACTION_NOT_FOUND",
-      "message":"존재하지 않는 멤버 액션입니다."
-   },
-   {
-      "code":"TOKEN_NOT_FOUND",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_EXPIRED",
-      "message":"토큰이 존재하지 않습니다."
-   },
-   {
-      "code":"TOKEN_INVALID",
-      "message":"유효하지 않은 토큰입니다."
-   }
-]
-
-
-
-
-
-
-
- - - diff --git a/server/src/main/resources/static/docs/memberBillReport.html b/server/src/main/resources/static/docs/memberBillReport.html deleted file mode 100644 index 8bacd204c..000000000 --- a/server/src/main/resources/static/docs/memberBillReport.html +++ /dev/null @@ -1,584 +0,0 @@ - - - - - - - -정산 - - - - - -
-
-

정산

-
-
-

참여자별 정산 결과 조회

-
-

Path parameters

- - ---- - - - - - - - - - - - - -
Table 1. /api/events/{eventId}/actions/reports
ParameterDescription

eventId

행사 ID

-
-
-

HTTP request

-
-
-
GET /api/events/%EB%A7%9D%EC%B5%B8%ED%86%A0%ED%81%B0/actions/reports HTTP/1.1
-Accept: application/json
-Host: localhost:8080
-
-
-
-
-

Response body

-
-
-
{
-  "reports" : [ {
-    "name" : "소하",
-    "price" : 20000
-  }, {
-    "name" : "토다리",
-    "price" : 200000
-  } ]
-}
-
-
-
-
-

Response fields

- ----- - - - - - - - - - - - - - - - - - - - - - - - - -
PathTypeDescription

reports

Array

전체 정산 현황 목록

reports[0].name

String

참여자 이름

reports[0].price

Number

참여자 정산 금액

-
-
-

HTTP response

-
-
-
HTTP/1.1 200 OK
-Content-Type: application/json
-Content-Length: 124
-
-{
-  "reports" : [ {
-    "name" : "소하",
-    "price" : 20000
-  }, {
-    "name" : "토다리",
-    "price" : 200000
-  } ]
-}
-
-
-
-
-

HTTP request

-
-
-
GET /api/events/%EB%A7%9D%EC%B5%B8%ED%86%A0%ED%81%B0/actions/reports HTTP/1.1
-Accept: application/json
-Host: localhost:8080
-
-
-
-
-

Exceptions

-
-
-
[
-   {
-      "code":"EVENT_NOT_FOUND",
-      "message":"존재하지 않는 행사입니다."
-   }
-]
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/server/src/test/java/server/haengdong/application/BillServiceTest.java b/server/src/test/java/server/haengdong/application/BillServiceTest.java deleted file mode 100644 index 6d2b7aa8d..000000000 --- a/server/src/test/java/server/haengdong/application/BillServiceTest.java +++ /dev/null @@ -1,349 +0,0 @@ -package server.haengdong.application; - -import static org.assertj.core.api.Assertions.assertThat; -import static org.assertj.core.api.Assertions.assertThatThrownBy; -import static org.assertj.core.api.Assertions.tuple; -import static org.junit.jupiter.api.Assertions.assertAll; - -import java.util.List; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import org.springframework.beans.factory.annotation.Autowired; -import server.haengdong.application.request.BillAppRequest; -import server.haengdong.application.request.BillDetailUpdateAppRequest; -import server.haengdong.application.request.BillDetailsUpdateAppRequest; -import server.haengdong.application.request.BillUpdateAppRequest; -import server.haengdong.application.response.BillAppResponse; -import server.haengdong.application.response.BillDetailAppResponse; -import server.haengdong.application.response.BillDetailsAppResponse; -import server.haengdong.application.response.MemberAppResponse; -import server.haengdong.application.response.StepAppResponse; -import server.haengdong.domain.bill.Bill; -import server.haengdong.domain.bill.BillDetail; -import server.haengdong.domain.bill.BillRepository; -import server.haengdong.domain.event.Event; -import server.haengdong.domain.event.EventRepository; -import server.haengdong.domain.member.Member; -import server.haengdong.domain.member.MemberRepository; -import server.haengdong.exception.HaengdongException; -import server.haengdong.support.fixture.Fixture; - -class BillServiceTest extends ServiceTestSupport { - - @Autowired - private BillService billService; - - @Autowired - private EventRepository eventRepository; - - @Autowired - private BillRepository billRepository; - - @Autowired - private MemberRepository memberRepository; - - @DisplayName("전체 지출 내역을 조회한다.") - @Test - void findSteps() { - Event event = Fixture.EVENT1; - eventRepository.save(event); - Member member1 = new Member(event, "토다리"); - Member member2 = new Member(event, "쿠키"); - Member member3 = new Member(event, "소하"); - Member member4 = new Member(event, "웨디"); - memberRepository.saveAll(List.of(member1, member2, member3, member4)); - Bill bill1 = Bill.create(event, "행동대장 회식1", 100000L, List.of(member1, member2, member3)); - Bill bill2 = Bill.create(event, "행동대장 회식2", 200000L, List.of(member1, member2, member3, member4)); - Bill bill3 = Bill.create(event, "행동대장 회식3", 300000L, List.of(member1, member2, member3, member4)); - Bill bill4 = Bill.create(event, "행동대장 회식4", 400000L, List.of(member2, member3, member4)); - billRepository.saveAll(List.of(bill1, bill2, bill3, bill4)); - - List steps = billService.findSteps(event.getToken()); - - assertThat(steps).hasSize(3); - - assertThat(steps.get(0).bills()).hasSize(1) - .extracting(BillAppResponse::id, BillAppResponse::title, BillAppResponse::price, - BillAppResponse::isFixed) - .containsExactlyInAnyOrder( - tuple(bill1.getId(), bill1.getTitle(), bill1.getPrice(), bill1.isFixed()) - ); - - assertThat(steps.get(0).members()).hasSize(3) - .extracting(MemberAppResponse::id, MemberAppResponse::name) - .containsExactlyInAnyOrder( - tuple(member1.getId(), member1.getName()), - tuple(member2.getId(), member2.getName()), - tuple(member3.getId(), member3.getName()) - ); - - assertThat(steps.get(1).bills()).hasSize(2) - .extracting(BillAppResponse::id, BillAppResponse::title, BillAppResponse::price, - BillAppResponse::isFixed) - .containsExactlyInAnyOrder( - tuple(bill2.getId(), bill2.getTitle(), bill2.getPrice(), bill2.isFixed()), - tuple(bill3.getId(), bill3.getTitle(), bill3.getPrice(), bill3.isFixed()) - ); - - assertThat(steps.get(1).members()).hasSize(4) - .extracting(MemberAppResponse::id, MemberAppResponse::name) - .containsExactlyInAnyOrder( - tuple(member1.getId(), member1.getName()), - tuple(member2.getId(), member2.getName()), - tuple(member3.getId(), member3.getName()), - tuple(member4.getId(), member4.getName()) - ); - - assertThat(steps.get(2).bills()).hasSize(1) - .extracting(BillAppResponse::id, BillAppResponse::title, BillAppResponse::price, - BillAppResponse::isFixed) - .containsExactlyInAnyOrder( - tuple(bill4.getId(), bill4.getTitle(), bill4.getPrice(), bill4.isFixed()) - ); - - assertThat(steps.get(2).members()).hasSize(3) - .extracting(MemberAppResponse::id, MemberAppResponse::name) - .containsExactlyInAnyOrder( - tuple(member2.getId(), member2.getName()), - tuple(member3.getId(), member3.getName()), - tuple(member4.getId(), member4.getName()) - ); - } - - @DisplayName("지출 내역을 생성한다.") - @Test - void saveBill() { - Event event = Fixture.EVENT1; - Event savedEvent = eventRepository.save(event); - - Member member1 = Fixture.MEMBER1; - Member member2 = Fixture.MEMBER2; - memberRepository.saveAll(List.of(member1, member2)); - List memberIds = List.of(member1.getId(), member2.getId()); - BillAppRequest billAppRequest = new BillAppRequest("뽕족", 10_000L, memberIds); - - billService.saveBill(event.getToken(), billAppRequest); - - List bills = billRepository.findAllByEvent(savedEvent); - - assertThat(bills).extracting(Bill::getTitle, Bill::getPrice) - .containsExactlyInAnyOrder( - tuple("뽕족", 10_000L) - ); - } - - @DisplayName("지출 내역을 생성하면 지출 상세 내역이 생성된다.") - @Test - void saveBillTest1() { - Event event = Fixture.EVENT1; - eventRepository.save(event); - - Member member1 = Fixture.MEMBER1; - Member member2 = Fixture.MEMBER2; - List members = List.of(member1, member2); - memberRepository.saveAll(members); - - BillAppRequest request = new BillAppRequest("뽕족", 10_000L, List.of(member1.getId(), member2.getId())); - - billService.saveBill(event.getToken(), request); - - List bills = billRepository.findAllByEvent(event); - - List billDetails = bills.get(0).getBillDetails(); - - assertThat(billDetails) - .hasSize(2) - .extracting("member", "price") - .containsExactlyInAnyOrder( - tuple(member1, 5_000L), - tuple(member2, 5_000L) - ); - } - - @DisplayName("토큰에 해당하는 이벤트가 존재하지 않으면 지출 내역을 생성할 수 없다.") - @Test - void saveBill1() { - Event event = Fixture.EVENT1; - eventRepository.save(event); - - Member member1 = Fixture.MEMBER1; - Member member2 = Fixture.MEMBER2; - List members = List.of(member1, member2); - memberRepository.saveAll(members); - - BillAppRequest request = new BillAppRequest("뽕족", 10_000L, List.of(member1.getId(), member2.getId())); - - assertThatThrownBy(() -> billService.saveBill("wrongToken", request)) - .isInstanceOf(HaengdongException.class); - } - - @DisplayName("지출을 수정한다.") - @Test - void updateBill() { - Event event = Fixture.EVENT1; - eventRepository.save(event); - - Bill bill = new Bill(event, "뽕족", 10_000L); - Bill savedBill = billRepository.save(bill); - - Long billId = savedBill.getId(); - BillUpdateAppRequest request = new BillUpdateAppRequest("인생맥주", 20_000L); - - billService.updateBill(event.getToken(), billId, request); - - Bill updatedBill = billRepository.findById(savedBill.getId()).get(); - - assertAll( - () -> assertThat(updatedBill.getTitle()).isEqualTo("인생맥주"), - () -> assertThat(updatedBill.getPrice()).isEqualTo(20_000L) - ); - } - - @DisplayName("행사에 속하지 않은 지출은 수정할 수 없다.") - @Test - void updateBill1() { - Event event1 = Fixture.EVENT1; - Event event2 = Fixture.EVENT2; - eventRepository.saveAll(List.of(event1, event2)); - Bill bill1 = new Bill(event1, "뽕족", 10_000L); - Bill bill2 = new Bill(event2, "뽕족", 10_000L); - Bill savedBill1 = billRepository.save(bill1); - billRepository.save(bill2); - - Long bill1Id = savedBill1.getId(); - BillUpdateAppRequest request = new BillUpdateAppRequest("인생맥주", 20_000L); - - assertThatThrownBy(() -> billService.updateBill(event2.getToken(), bill1Id, request)) - .isInstanceOf(HaengdongException.class); - } - - @DisplayName("지출 내역 금액을 변경하면 지출 디테일이 초기화 된다.") - @Test - void updateBill2() { - Event event = Fixture.EVENT1; - eventRepository.save(event); - Member member1 = new Member(event, "감자"); - Member member2 = new Member(event, "고구마"); - Member member3 = new Member(event, "당근"); - Member member4 = new Member(event, "양파"); - List members = List.of(member1, member2, member3, member4); - memberRepository.saveAll(members); - Bill bill = Bill.create(event, "뽕족", 10_000L, members); - bill.getBillDetails().forEach(billDetail -> billDetail.updateIsFixed(true)); - billRepository.save(bill); - BillUpdateAppRequest request = new BillUpdateAppRequest("인생맥주", 20_000L); - - billService.updateBill(event.getToken(), bill.getId(), request); - - Bill updatedBill = billRepository.findAllByEvent(event).get(0); - List billDetails = updatedBill.getBillDetails(); - - assertThat(billDetails).hasSize(4) - .extracting(BillDetail::getPrice) - .containsExactly(5000L, 5000L, 5000L, 5000L); - } - - @DisplayName("지출 내역을 삭제한다.") - @Test - void deleteBill() { - Event event = Fixture.EVENT1; - eventRepository.save(event); - Member member1 = new Member(event, "토다리"); - Member member2 = new Member(event, "쿠키"); - memberRepository.saveAll(List.of(member1, member2)); - - Bill bill = Bill.create(event, "뽕족", 10000L, List.of(member1, member2)); - billRepository.save(bill); - Long billId = bill.getId(); - - billService.deleteBill(event.getToken(), billId); - - assertThat(billRepository.findById(billId)).isEmpty(); - } - - @DisplayName("지출 내역 삭제 시 행사가 존재하지 않으면 예외가 발생한다.") - @Test - void deleteBill1() { - assertThatThrownBy(() -> billService.deleteBill("소하망쵸", 1L)) - .isInstanceOf(HaengdongException.class); - } - - @DisplayName("지출 금액 수정 요청의 총합이 지출 금액과 일치하지 않으면 예외가 발생한다.") - @Test - void updateBillDetailsTest1() { - Event event1 = Fixture.EVENT1; - eventRepository.save(event1); - Member member1 = new Member(event1, "토다리"); - Member member2 = new Member(event1, "쿠키"); - memberRepository.saveAll(List.of(member1, member2)); - - Bill bill = Bill.create(event1, "뽕족", 10000L, List.of(member1, member2)); - billRepository.save(bill); - List billDetails = bill.getBillDetails(); - - BillDetailsUpdateAppRequest request = new BillDetailsUpdateAppRequest(List.of( - new BillDetailUpdateAppRequest(billDetails.get(0).getId(), 3000L, true), - new BillDetailUpdateAppRequest(billDetails.get(1).getId(), 4000L, true) - )); - - assertThatThrownBy( - () -> billService.updateBillDetails(event1.getToken(), bill.getId(), request)) - .isInstanceOf(HaengdongException.class) - .hasMessage("지출 총액이 일치하지 않습니다."); - } - - @DisplayName("지출 고정 금액을 수정한다.") - @Test - void updateBillDetailsTest2() { - Event event1 = Fixture.EVENT1; - eventRepository.save(event1); - Member member1 = new Member(event1, "토다리"); - Member member2 = new Member(event1, "쿠키"); - memberRepository.saveAll(List.of(member1, member2)); - - Bill bill = Bill.create(event1, "뽕족", 10000L, List.of(member1, member2)); - billRepository.save(bill); - List billDetails = bill.getBillDetails(); - - BillDetailsUpdateAppRequest request = new BillDetailsUpdateAppRequest(List.of( - new BillDetailUpdateAppRequest(billDetails.get(0).getId(), 3000L, true), - new BillDetailUpdateAppRequest(billDetails.get(1).getId(), 7000L, true) - )); - - billService.updateBillDetails(event1.getToken(), bill.getId(), request); - - Bill foundBill = billRepository.findAllByEvent(event1).get(0); - List foundBillDetails = foundBill.getBillDetails(); - - assertThat(foundBillDetails).hasSize(2) - .extracting(BillDetail::getId, BillDetail::getPrice) - .containsExactly( - tuple(billDetails.get(0).getId(), 3000L), - tuple(billDetails.get(1).getId(), 7000L) - ); - } - - @DisplayName("참여자별 지출 금액을 조회한다.") - @Test - void findBillDetailsTest() { - Event event1 = Fixture.EVENT1; - eventRepository.save(event1); - - Member member1 = Fixture.MEMBER1; - Member member2 = Fixture.MEMBER2; - List members = List.of(member1, member2); - memberRepository.saveAll(members); - - Bill bill = Bill.create(event1, "뽕족", 10000L, members); - billRepository.save(bill); - - BillDetailsAppResponse response = billService.findBillDetails(event1.getToken(), bill.getId()); - - assertThat(response.billDetails()).hasSize(2) - .extracting(BillDetailAppResponse::memberName, BillDetailAppResponse::price) - .containsExactly( - tuple("토다리", 5000L), - tuple("쿠키", 5000L) - ); - } -} diff --git a/server/src/test/java/server/haengdong/application/EventServiceTest.java b/server/src/test/java/server/haengdong/application/EventServiceTest.java deleted file mode 100644 index bcfc0a3e4..000000000 --- a/server/src/test/java/server/haengdong/application/EventServiceTest.java +++ /dev/null @@ -1,231 +0,0 @@ -package server.haengdong.application; - - -import static org.assertj.core.api.Assertions.assertThat; -import static org.assertj.core.api.AssertionsForClassTypes.tuple; -import static org.junit.jupiter.api.Assertions.assertAll; -import static org.mockito.BDDMockito.given; - -import java.util.List; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.boot.test.mock.mockito.MockBean; -import server.haengdong.application.request.EventAppRequest; -import server.haengdong.application.request.EventUpdateAppRequest; -import server.haengdong.application.response.EventAppResponse; -import server.haengdong.application.response.EventDetailAppResponse; -import server.haengdong.application.response.EventImageAppResponse; -import server.haengdong.application.response.ImageNameAppResponse; -import server.haengdong.application.response.MemberBillReportAppResponse; -import server.haengdong.domain.bill.Bill; -import server.haengdong.domain.bill.BillRepository; -import server.haengdong.domain.event.EventImage; -import server.haengdong.domain.event.EventImageRepository; -import server.haengdong.domain.member.Member; -import server.haengdong.domain.member.MemberRepository; -import server.haengdong.domain.event.Event; -import server.haengdong.domain.event.EventRepository; -import server.haengdong.domain.event.EventTokenProvider; -import server.haengdong.support.fixture.Fixture; - -class EventServiceTest extends ServiceTestSupport { - - @Autowired - private EventService eventService; - - @Autowired - private EventRepository eventRepository; - - @Autowired - private BillRepository billRepository; - - @Autowired - private MemberRepository memberRepository; - - @Autowired - private EventImageRepository eventImageRepository; - - @MockBean - private EventTokenProvider eventTokenProvider; - - @Value("${image.base-url}") - private String baseUrl; - - @DisplayName("행사를 생성한다") - @Test - void saveEventTest() { - EventAppRequest request = new EventAppRequest("test", "1234"); - given(eventTokenProvider.createToken()).willReturn("TOKEN"); - - EventAppResponse response = eventService.saveEvent(request); - - assertThat(response.token()).isEqualTo("TOKEN"); - } - - @DisplayName("토큰으로 행사를 조회한다.") - @Test - void findEventTest() { - Event event = Fixture.EVENT1; - eventRepository.save(event); - - EventDetailAppResponse eventDetailAppResponse = eventService.findEvent(event.getToken()); - - assertThat(eventDetailAppResponse.eventName()).isEqualTo(event.getName()); - } - - @DisplayName("행사 정보를 수정한다.") - @Test - void updateEventTest() { - Event event = new Event("행동대장 비대위", "1234", "token"); - eventRepository.save(event); - - EventUpdateAppRequest eventUpdateAppRequest = new EventUpdateAppRequest("새로운 행사 이름", "토스뱅크", "12345678"); - eventService.updateEvent(event.getToken(), eventUpdateAppRequest); - - Event updateEvent = eventRepository.findByToken(event.getToken()).get(); - assertAll( - () -> assertThat(updateEvent.getName()).isEqualTo("새로운 행사 이름"), - () -> assertThat(updateEvent.getBankName()).isEqualTo("토스뱅크"), - () -> assertThat(updateEvent.getAccountNumber()).isEqualTo("12345678") - ); - } - - @DisplayName("행사의 은행 정보만 수정한다.") - @Test - void updateEventTest1() { - Event event = new Event("행동대장 비대위", "1234", "token"); - eventRepository.save(event); - - EventUpdateAppRequest eventUpdateAppRequest = new EventUpdateAppRequest(null, "토스뱅크", "12345678"); - eventService.updateEvent(event.getToken(), eventUpdateAppRequest); - - Event updateEvent = eventRepository.findByToken(event.getToken()).get(); - assertAll( - () -> assertThat(updateEvent.getName()).isEqualTo("행동대장 비대위"), - () -> assertThat(updateEvent.getBankName()).isEqualTo("토스뱅크"), - () -> assertThat(updateEvent.getAccountNumber()).isEqualTo("12345678") - ); - } - - @DisplayName("행사의 이름만 수정한다.") - @Test - void updateEventTest2() { - Event event = new Event("행동대장 비대위", "1234", "token"); - eventRepository.save(event); - - EventUpdateAppRequest eventUpdateAppRequest = new EventUpdateAppRequest("행동대장 정상 영업", null, null); - eventService.updateEvent(event.getToken(), eventUpdateAppRequest); - - Event updateEvent = eventRepository.findByToken(event.getToken()).get(); - assertAll( - () -> assertThat(updateEvent.getName()).isEqualTo("행동대장 정상 영업"), - () -> assertThat(updateEvent.getBankName()).isEqualTo(""), - () -> assertThat(updateEvent.getAccountNumber()).isEqualTo("") - ); - } - - @DisplayName("행사의 계좌 정보 일부가 누락되면 변경하지 않는다.") - @Test - void updateEventTest3() { - Event event = new Event("행동대장 비대위", "1234", "token"); - eventRepository.save(event); - - EventUpdateAppRequest eventUpdateAppRequest = new EventUpdateAppRequest(null, "망쵸뱅크", null); - eventService.updateEvent(event.getToken(), eventUpdateAppRequest); - - Event updateEvent = eventRepository.findByToken(event.getToken()).get(); - assertAll( - () -> assertThat(updateEvent.getName()).isEqualTo("행동대장 비대위"), - () -> assertThat(updateEvent.getBankName()).isEqualTo(""), - () -> assertThat(updateEvent.getAccountNumber()).isEqualTo("") - ); - } - - @DisplayName("참여자별 정산 현황을 조회한다.") - @Test - void getMemberBillReports() { - Event event = Fixture.EVENT1; - Event savedEvent = eventRepository.save(event); - List members = List.of( - new Member(savedEvent, "소하"), - new Member(savedEvent, "감자"), - new Member(savedEvent, "쿠키"), - new Member(savedEvent, "고구마") - ); - memberRepository.saveAll(members); - List bills = List.of( - Bill.create(savedEvent, "뽕족", 60_000L, members), - Bill.create(savedEvent, "인생네컷", 20_000L, members) - ); - billRepository.saveAll(bills); - - List responses = eventService.getMemberBillReports(event.getToken()); - - assertThat(responses) - .hasSize(4) - .extracting(MemberBillReportAppResponse::name, MemberBillReportAppResponse::price) - .containsExactlyInAnyOrder( - tuple("감자", 20_000L), - tuple("쿠키", 20_000L), - tuple("소하", 20_000L), - tuple("고구마", 20_000L) - ); - } - - @DisplayName("행사 이미지를 조회한다.") - @Test - void findAllImages() { - Event event = Fixture.EVENT1; - List eventImages = List.of( - new EventImage(event, "image1.jpg"), - new EventImage(event, "image2.jpg") - ); - eventRepository.save(event); - eventImageRepository.saveAll(eventImages); - - List responses = eventService.findImages(event.getToken()); - - assertThat(responses) - .hasSize(2) - .extracting(EventImageAppResponse::url) - .containsExactlyInAnyOrder( - baseUrl + "image1.jpg", - baseUrl + "image2.jpg" - ); - } - - @DisplayName("행사 이미지를 저장한다.") - @Test - void saveImages() { - Event event = Fixture.EVENT1; - eventRepository.save(event); - List imageNames = List.of("image1.jpg", "image2.jpg"); - - eventService.saveImages(event.getToken(), imageNames); - - List savedEventImages = eventImageRepository.findAllByEvent(event); - assertThat(savedEventImages) - .hasSize(2) - .extracting(EventImage::getName) - .containsExactlyInAnyOrder( - "image1.jpg", - "image2.jpg" - ); - } - - @DisplayName("행사 이미지를 삭제한다.") - @Test - void deleteImage() { - Event event = Fixture.EVENT1; - eventRepository.save(event); - EventImage eventImage = new EventImage(event, "image1.jpg"); - eventImageRepository.save(eventImage); - - eventService.deleteImage(event.getToken(), eventImage.getId()); - - assertThat(eventImageRepository.findById(eventImage.getId())) - .isEmpty(); - } -} diff --git a/server/src/test/java/server/haengdong/application/MemberServiceTest.java b/server/src/test/java/server/haengdong/application/MemberServiceTest.java deleted file mode 100644 index 662156a33..000000000 --- a/server/src/test/java/server/haengdong/application/MemberServiceTest.java +++ /dev/null @@ -1,388 +0,0 @@ -package server.haengdong.application; - -import static org.assertj.core.api.Assertions.assertThat; -import static org.assertj.core.api.Assertions.assertThatThrownBy; -import static org.assertj.core.api.Assertions.tuple; -import static org.junit.jupiter.api.Assertions.assertAll; -import static org.junit.jupiter.api.Assertions.assertFalse; -import static org.junit.jupiter.api.Assertions.assertTrue; -import static server.haengdong.support.fixture.Fixture.BILL1; -import static server.haengdong.support.fixture.Fixture.EVENT1; -import static server.haengdong.support.fixture.Fixture.EVENT2; -import static server.haengdong.support.fixture.Fixture.MEMBER1; -import static server.haengdong.support.fixture.Fixture.MEMBER2; -import static server.haengdong.support.fixture.Fixture.MEMBER3; - -import java.util.List; -import org.assertj.core.groups.Tuple; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import org.springframework.beans.factory.annotation.Autowired; -import server.haengdong.application.request.MemberSaveAppRequest; -import server.haengdong.application.request.MemberUpdateAppRequest; -import server.haengdong.application.request.MembersSaveAppRequest; -import server.haengdong.application.request.MembersUpdateAppRequest; -import server.haengdong.application.response.MemberAppResponse; -import server.haengdong.application.response.MemberDepositAppResponse; -import server.haengdong.application.response.MemberSaveAppResponse; -import server.haengdong.application.response.MembersDepositAppResponse; -import server.haengdong.application.response.MembersSaveAppResponse; -import server.haengdong.domain.bill.Bill; -import server.haengdong.domain.bill.BillDetail; -import server.haengdong.domain.bill.BillRepository; -import server.haengdong.domain.event.Event; -import server.haengdong.domain.event.EventRepository; -import server.haengdong.domain.member.Member; -import server.haengdong.domain.member.MemberRepository; -import server.haengdong.exception.HaengdongException; - -class MemberServiceTest extends ServiceTestSupport { - - @Autowired - private MemberService memberService; - - @Autowired - private MemberRepository memberRepository; - - @Autowired - private EventRepository eventRepository; - - @Autowired - private BillRepository billRepository; - - @DisplayName("행사에 참여자를 추가한다.") - @Test - void saveMembersTest() { - Event event = EVENT1; - String memberName1 = "웨디"; - String memberName2 = "쿠키"; - Member member1 = new Member(event, memberName1); - Member member2 = new Member(event, memberName2); - eventRepository.save(event); - MembersSaveAppRequest request = new MembersSaveAppRequest( - List.of( - new MemberSaveAppRequest(member1.getName()), - new MemberSaveAppRequest(member2.getName()) - ) - ); - - MembersSaveAppResponse response = memberService.saveMembers(event.getToken(), request); - - List savedMembers = memberRepository.findAll(); - assertAll( - () -> assertThat(savedMembers) - .extracting(Member::getName) - .containsExactlyInAnyOrder(memberName1, memberName2), - () -> assertThat(response.members()) - .extracting(MemberSaveAppResponse::id, MemberSaveAppResponse::name) - .containsExactlyInAnyOrder( - Tuple.tuple(response.members().get(0).id(), memberName1), - Tuple.tuple(response.members().get(1).id(), memberName2) - ) - ); - } - - @DisplayName("행사에 존재하는 참여자를 추가하는 경우 예외가 발생한다.") - @Test - void saveMembersTest1() { - Event event = EVENT1; - Member member1 = MEMBER1; - Member member2 = MEMBER2; - eventRepository.save(event); - memberRepository.save(member1); - MembersSaveAppRequest request = new MembersSaveAppRequest( - List.of( - new MemberSaveAppRequest(member1.getName()), - new MemberSaveAppRequest(member2.getName()) - ) - ); - - assertThatThrownBy(() -> memberService.saveMembers(event.getToken(), request)) - .isInstanceOf(HaengdongException.class) - .hasMessage("현재 참여하고 있는 인원이 존재합니다."); - } - - @DisplayName("중복된 이름이 존재하는 경우 예외가 발생한다.") - @Test - void saveMembersTest2() { - Event event = EVENT1; - eventRepository.save(event); - MembersSaveAppRequest request = new MembersSaveAppRequest( - List.of( - new MemberSaveAppRequest("토다리"), - new MemberSaveAppRequest("토다리") - ) - ); - - assertThatThrownBy(() -> memberService.saveMembers(event.getToken(), request)) - .isInstanceOf(HaengdongException.class) - .hasMessageContaining("행사에 중복된 참여자 이름이 존재합니다."); - } - - @DisplayName("행사 참여 인원을 삭제한다.") - @Test - void deleteMemberTest() { - Event event = EVENT1; - Member member = MEMBER1; - eventRepository.save(event); - memberRepository.save(member); - - memberService.deleteMember(event.getToken(), member.getId()); - - assertThat(memberRepository.findById(member.getId())).isEmpty(); - } - - @DisplayName("다른 이벤트의 참여 인원을 삭제하는 경우 예외가 발생한다.") - @Test - void deleteMemberTest1() { - Event event1 = EVENT1; - Event event2 = EVENT2; - Member member = new Member(EVENT2, "감자"); - eventRepository.saveAll(List.of(event1, event2)); - memberRepository.save(member); - - assertThatThrownBy(() -> memberService.deleteMember(event1.getToken(), member.getId())) - .isInstanceOf(HaengdongException.class); - - assertThat(memberRepository.findById(member.getId())).isNotEmpty(); - } - - @DisplayName("행사 참여 인원을 삭제하는 경우 해당 참여자가 포함된 Bill이 초기화된다.") - @Test - void deleteMemberTest2() { - Event event1 = EVENT1; - Member member1 = MEMBER1; - Member member2 = MEMBER2; - List members = List.of(member1, member2); - Bill bill = Bill.create(event1, "title", 10000L, members); - eventRepository.save(event1); - memberRepository.saveAll(members); - - BillDetail billDetail1 = getDetailByMember(bill, member1); - BillDetail billDetail2 = getDetailByMember(bill, member2); - billDetail1.updatePrice(8000L); - billDetail1.updateIsFixed(false); - billDetail2.updatePrice(2000L); - billDetail2.updateIsFixed(true); - billRepository.save(bill); - - memberService.deleteMember(event1.getToken(), member1.getId()); - Bill bill1 = billRepository.findAllByEvent(event1).get(0); - List bill1Details = bill1.getBillDetails(); - - assertAll( - () -> assertThat(memberRepository.findById(member1.getId())).isEmpty(), - () -> assertThat(bill1Details).doesNotContain(billDetail1), - () -> { - BillDetail foundDetail = bill1Details.stream() - .filter(billDetail -> billDetail.isSameId(billDetail2.getId())).findFirst().get(); - assertThat(foundDetail.getPrice()).isEqualTo(10000L); - assertThat(foundDetail.isFixed()).isEqualTo(false); - } - ); - } - - private BillDetail getDetailByMember(Bill bill, Member member) { - return bill.getBillDetails() - .stream() - .filter(billDetail -> billDetail.isMember(member)) - .findFirst() - .orElseThrow(); - } - - @DisplayName("멤버 이름 정보를 수정한다.") - @Test - void updateMembersNameTest() { - Event event = EVENT1; - Member member = MEMBER1; - eventRepository.save(event); - memberRepository.save(member); - MembersUpdateAppRequest membersUpdateAppRequest = new MembersUpdateAppRequest( - List.of( - new MemberUpdateAppRequest(member.getId(), "수정된이름", true) - ) - ); - - memberService.updateMembers(event.getToken(), membersUpdateAppRequest); - - Member updatedMember = memberRepository.findById(member.getId()).orElseThrow(); - assertAll( - () -> assertThat(updatedMember.getName()).isEqualTo("수정된이름"), - () -> assertTrue(updatedMember.isDeposited()) - ); - } - - @DisplayName("멤버 정보를 수정한다.") - @Test - void updateMembersIsDepositedTest() { - Event event = EVENT1; - Member member = MEMBER1; - eventRepository.save(event); - memberRepository.save(member); - MembersUpdateAppRequest membersUpdateAppRequest = new MembersUpdateAppRequest( - List.of( - new MemberUpdateAppRequest(member.getId(), member.getName(), false) - ) - ); - - memberService.updateMembers(event.getToken(), membersUpdateAppRequest); - - Member updatedMember = memberRepository.findById(member.getId()).orElseThrow(); - assertAll( - () -> assertThat(updatedMember.getName()).isEqualTo(member.getName()), - () -> assertFalse(updatedMember.isDeposited()) - ); - } - - @DisplayName("수정할 멤버 id가 중복된 경우 예외가 발생한다.") - @Test - void updateMembersTest2() { - Event event = EVENT1; - Member member = MEMBER1; - eventRepository.save(event); - memberRepository.save(member); - MembersUpdateAppRequest membersUpdateAppRequest = new MembersUpdateAppRequest( - List.of( - new MemberUpdateAppRequest(member.getId(), "수정", true), - new MemberUpdateAppRequest(member.getId(), "수정수정", false) - ) - ); - - assertThatThrownBy(() -> memberService.updateMembers(event.getToken(), membersUpdateAppRequest)) - .isInstanceOf(HaengdongException.class) - .hasMessage("중복된 참여 인원 이름 변경 요청이 존재합니다."); - } - - @DisplayName("수정할 멤버 이름이 중복된 경우 예외가 발생한다.") - @Test - void updateMembersTest3() { - Event event = EVENT1; - Member member1 = MEMBER1; - Member member2 = MEMBER2; - eventRepository.save(event); - memberRepository.saveAll(List.of(member1, member2)); - MembersUpdateAppRequest membersUpdateAppRequest = new MembersUpdateAppRequest( - List.of( - new MemberUpdateAppRequest(member1.getId(), "수정", true), - new MemberUpdateAppRequest(member2.getId(), "수정", false) - ) - ); - - assertThatThrownBy(() -> memberService.updateMembers(event.getToken(), membersUpdateAppRequest)) - .isInstanceOf(HaengdongException.class) - .hasMessage("중복된 참여 인원 이름 변경 요청이 존재합니다."); - } - - @DisplayName("수정할 멤버가 행사에 존재하지 않는 경우 예외가 발생한다.") - @Test - void updateMembersTest4() { - Event event1 = EVENT1; - Event event2 = EVENT2; - Member member = new Member(event2, "이상"); - eventRepository.saveAll(List.of(event1, event2)); - memberRepository.save(member); - MembersUpdateAppRequest membersUpdateAppRequest = new MembersUpdateAppRequest( - List.of( - new MemberUpdateAppRequest(member.getId(), "수정", true) - ) - ); - - assertThatThrownBy(() -> memberService.updateMembers(event1.getToken(), membersUpdateAppRequest)) - .isInstanceOf(HaengdongException.class) - .hasMessage("업데이트 요청된 참여자 ID 목록과 기존 행사 참여자 ID 목록이 일치하지 않습니다."); - } - - @DisplayName("수정하려는 행사 참여 인원 이름이 이미 존재하는 경우 예외가 발생한다.") - @Test - void updateMembersTest5() { - Event event1 = EVENT1; - Member member1 = MEMBER1; - Member member2 = MEMBER2; - eventRepository.save(event1); - memberRepository.saveAll(List.of(member1, member2)); - MembersUpdateAppRequest membersUpdateAppRequest = new MembersUpdateAppRequest( - List.of( - new MemberUpdateAppRequest(member1.getId(), member2.getName(), true) - ) - ); - - assertThatThrownBy(() -> memberService.updateMembers(event1.getToken(), membersUpdateAppRequest)) - .isInstanceOf(HaengdongException.class) - .hasMessage("업데이트 요청된 참여자 ID 목록과 기존 행사 참여자 ID 목록이 일치하지 않습니다."); - } - - @DisplayName("참여자 간 서로의 이름으로 수정하려는 경우 예외가 발생한다.") - @Test - void updateMembersTest6() { - Event event = EVENT1; - Member member1 = MEMBER1; - Member member2 = MEMBER2; - eventRepository.save(event); - memberRepository.saveAll(List.of(member1, member2)); - MembersUpdateAppRequest membersUpdateAppRequest = new MembersUpdateAppRequest( - List.of( - new MemberUpdateAppRequest(member1.getId(), member2.getName(), true), - new MemberUpdateAppRequest(member2.getId(), member1.getName(), false) - ) - ); - - assertThatThrownBy(() -> memberService.updateMembers(event.getToken(), membersUpdateAppRequest)) - .isInstanceOf(HaengdongException.class) - .hasMessage("행사에 중복된 참여자 이름이 존재합니다."); - } - - @DisplayName("행사에 참여한 전체 인원을 조회한다.") - @Test - void findAllMembersTest() { - Event event = EVENT1; - Bill bill = BILL1; - Member member1 = MEMBER1; - Member member2 = MEMBER2; - Member member3 = MEMBER3; - eventRepository.save(event); - memberRepository.saveAll(List.of(member1, member2, member3)); - billRepository.save(bill); - - MembersDepositAppResponse membersDepositAppResponse = memberService.findAllMembers(event.getToken()); - - assertThat(membersDepositAppResponse.members()).hasSize(3) - .extracting(MemberDepositAppResponse::name, MemberDepositAppResponse::isDeposited) - .containsExactlyInAnyOrder( - tuple(member1.getName(), member1.isDeposited()), - tuple(member2.getName(), member2.isDeposited()), - tuple(member3.getName(), member3.isDeposited()) - ); - } - - @DisplayName("행사에 현재 참여 중인 인원을 조회한다.") - @Test - void getCurrentMembersTest() { - Event event = EVENT1; - Member member1 = MEMBER1; - Member member2 = MEMBER2; - Member member3 = MEMBER3; - Bill bill1 = Bill.create(event, "title1", 100000L, List.of(member1)); - Bill bill2 = Bill.create(event, "title2", 200000L, List.of(member1, member2, member3)); - Bill bill3 = Bill.create(event, "title2", 200000L, List.of(member1, member2, member3)); - eventRepository.save(event); - memberRepository.saveAll(List.of(member1, member2, member3)); - billRepository.saveAll(List.of(bill1, bill2, bill3)); - - List currentMembers = memberService.getCurrentMembers(event.getToken()); - - assertThat(currentMembers).hasSize(3) - .extracting(MemberAppResponse::id, MemberAppResponse::name) - .containsExactlyInAnyOrder( - tuple(member1.getId(), member1.getName()), - tuple(member2.getId(), member2.getName()), - tuple(member3.getId(), member3.getName()) - ); - } - - @DisplayName("행사가 없으면 현재 참여 인원을 조회할 수 없다.") - @Test - void getCurrentMembersTest1() { - assertThatThrownBy(() -> memberService.getCurrentMembers("token")) - .isInstanceOf(HaengdongException.class); - } -} diff --git a/server/src/test/java/server/haengdong/application/ServiceTestSupport.java b/server/src/test/java/server/haengdong/application/ServiceTestSupport.java deleted file mode 100644 index 008ba1035..000000000 --- a/server/src/test/java/server/haengdong/application/ServiceTestSupport.java +++ /dev/null @@ -1,11 +0,0 @@ -package server.haengdong.application; - -import org.junit.jupiter.api.extension.ExtendWith; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.boot.test.context.SpringBootTest.WebEnvironment; -import server.haengdong.support.extension.DatabaseCleanerExtension; - -@ExtendWith(DatabaseCleanerExtension.class) -@SpringBootTest(webEnvironment = WebEnvironment.NONE) -abstract class ServiceTestSupport { -} diff --git a/server/src/test/java/server/haengdong/config/AdminInterceptorTest.java b/server/src/test/java/server/haengdong/config/AdminInterceptorTest.java deleted file mode 100644 index f66da7fd1..000000000 --- a/server/src/test/java/server/haengdong/config/AdminInterceptorTest.java +++ /dev/null @@ -1,56 +0,0 @@ -package server.haengdong.config; - -import static org.assertj.core.api.Assertions.assertThat; -import static org.assertj.core.api.Assertions.assertThatThrownBy; -import static org.mockito.ArgumentMatchers.any; -import static org.mockito.Mockito.mock; -import static org.mockito.Mockito.when; - -import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.params.ParameterizedTest; -import org.junit.jupiter.params.provider.ValueSource; -import org.springframework.mock.web.MockHttpServletRequest; -import org.springframework.mock.web.MockHttpServletResponse; -import server.haengdong.application.AuthService; -import server.haengdong.exception.AuthenticationException; -import server.haengdong.infrastructure.auth.AuthenticationExtractor; - -class AdminInterceptorTest { - - private AuthService authService; - private AuthenticationExtractor authenticationExtractor; - private AdminInterceptor adminInterceptor; - - @BeforeEach - public void setUp() { - authService = mock(AuthService.class); - authenticationExtractor = mock(AuthenticationExtractor.class); - adminInterceptor = new AdminInterceptor(authService, authenticationExtractor); - } - - @DisplayName("쿠키의 JWT 에서 eventToken 과 uri 의 eventToken 이 일치하면 관리자이다.") - @ParameterizedTest - @ValueSource(strings = {"/api/admin/events/12345", "/api/admin/events/12345/bills"}) - void validateToken1(String uri) { - MockHttpServletRequest request = new MockHttpServletRequest("GET", uri); - MockHttpServletResponse response = new MockHttpServletResponse(); - when(authService.findEventIdByToken(any())).thenReturn("12345"); - - boolean preHandle = adminInterceptor.preHandle(request, response, new Object()); - - assertThat(preHandle).isTrue(); - } - - @DisplayName("쿠키의 JWT 에서 eventToken 과 uri 의 eventToken 이 일치하지 않으면 거절당한다.") - @ParameterizedTest - @ValueSource(strings = {"/api/admin/events/12345", "/api/admin/events/12345/bills"}) - void validateToken2(String uri) { - MockHttpServletRequest request = new MockHttpServletRequest("GET", uri); - MockHttpServletResponse response = new MockHttpServletResponse(); - when(authService.findEventIdByToken(any())).thenReturn("125"); - - assertThatThrownBy(() -> adminInterceptor.preHandle(request, response, new Object())) - .isInstanceOf(AuthenticationException.class); - } -} diff --git a/server/src/test/java/server/haengdong/docs/AdminBillControllerDocsTest.java b/server/src/test/java/server/haengdong/docs/AdminBillControllerDocsTest.java deleted file mode 100644 index 1c275801e..000000000 --- a/server/src/test/java/server/haengdong/docs/AdminBillControllerDocsTest.java +++ /dev/null @@ -1,171 +0,0 @@ -package server.haengdong.docs; - -import static org.mockito.Mockito.mock; -import static org.springframework.restdocs.cookies.CookieDocumentation.cookieWithName; -import static org.springframework.restdocs.cookies.CookieDocumentation.requestCookies; -import static org.springframework.restdocs.mockmvc.MockMvcRestDocumentation.document; -import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.delete; -import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.post; -import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.put; -import static org.springframework.restdocs.operation.preprocess.Preprocessors.preprocessRequest; -import static org.springframework.restdocs.operation.preprocess.Preprocessors.preprocessResponse; -import static org.springframework.restdocs.operation.preprocess.Preprocessors.prettyPrint; -import static org.springframework.restdocs.payload.PayloadDocumentation.fieldWithPath; -import static org.springframework.restdocs.payload.PayloadDocumentation.requestFields; -import static org.springframework.restdocs.request.RequestDocumentation.parameterWithName; -import static org.springframework.restdocs.request.RequestDocumentation.pathParameters; -import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; -import static server.haengdong.support.fixture.Fixture.EVENT_COOKIE; - -import java.util.List; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import org.springframework.http.MediaType; -import org.springframework.restdocs.payload.JsonFieldType; -import server.haengdong.application.BillService; -import server.haengdong.presentation.admin.AdminBillController; -import server.haengdong.presentation.request.BillDetailUpdateRequest; -import server.haengdong.presentation.request.BillDetailsUpdateRequest; -import server.haengdong.presentation.request.BillSaveRequest; -import server.haengdong.presentation.request.BillUpdateRequest; -import server.haengdong.support.fixture.Fixture; - -class AdminBillControllerDocsTest extends RestDocsSupport { - - private final BillService billService = mock(BillService.class); - - @Override - protected Object initController() { - return new AdminBillController(billService); - } - - @DisplayName("지출 내역을 생성한다.") - @Test - void saveAllBill() throws Exception { - List members = List.of(1L, 2L); - BillSaveRequest request = new BillSaveRequest("뽕족", 10_000L, members); - - String requestBody = objectMapper.writeValueAsString(request); - String eventId = "쿠키토큰"; - - mockMvc.perform(post("/api/admin/events/{eventId}/bills", eventId) - .contentType(MediaType.APPLICATION_JSON) - .content(requestBody) - .cookie(Fixture.EVENT_COOKIE)) - .andDo(print()) - .andExpect(status().isOk()) - .andDo(document("createBills", - preprocessRequest(prettyPrint()), - preprocessResponse(prettyPrint()), - pathParameters( - parameterWithName("eventId").description("행사 ID") - ), - requestCookies( - cookieWithName("eventToken").description("행사 관리자 토큰") - ), - requestFields( - fieldWithPath("title").description("생성할 지출 제목"), - fieldWithPath("price").description("생성할 지출 금액"), - fieldWithPath("memberIds").description("생성할 지출의 참여인원 ID 리스트") - ) - )); - } - - @DisplayName("지출을 수정한다.") - @Test - void updateBill() throws Exception { - BillUpdateRequest request = new BillUpdateRequest("뽕족", 10_000L); - - String requestBody = objectMapper.writeValueAsString(request); - String eventId = "웨디토큰"; - - mockMvc.perform(put("/api/admin/events/{eventId}/bills/{billId}", eventId, 1L) - .contentType(MediaType.APPLICATION_JSON) - .content(requestBody) - .cookie(EVENT_COOKIE)) - .andDo(print()) - .andExpect(status().isOk()) - .andDo(document("updateBill", - preprocessRequest(prettyPrint()), - preprocessResponse(prettyPrint()), - pathParameters( - parameterWithName("eventId").description("행사 ID"), - parameterWithName("billId").description("지출 ID") - ), - requestCookies( - cookieWithName("eventToken").description("행사 관리자 토큰") - ), - requestFields( - fieldWithPath("title").description("수정할 지출 제목"), - fieldWithPath("price").description("수정할 지출 금액") - ) - )); - } - - @DisplayName("참여자별 지출 금액을 수정한다.") - @Test - void updateBillDetailsTest() throws Exception { - List billDetailUpdateRequests = List.of( - new BillDetailUpdateRequest(1L, 10000L, true), - new BillDetailUpdateRequest(2L, 20000L, true) - ); - BillDetailsUpdateRequest request = new BillDetailsUpdateRequest( - billDetailUpdateRequests); - - String json = objectMapper.writeValueAsString(request); - - mockMvc.perform(put("/api/admin/events/{eventId}/bills/{billId}/details", "TOKEN", 1L) - .cookie(EVENT_COOKIE) - .contentType(MediaType.APPLICATION_JSON) - .content(json)) - .andDo(print()) - .andExpect(status().isOk()) - .andDo( - document("updateBillDetails", - preprocessRequest(prettyPrint()), - preprocessResponse(prettyPrint()), - pathParameters( - parameterWithName("eventId").description("행사 ID"), - parameterWithName("billId").description("지출 ID") - ), - requestCookies( - cookieWithName("eventToken").description("행사 관리자 토큰") - ), - requestFields( - fieldWithPath("billDetails").type(JsonFieldType.ARRAY) - .description("전체 정산 수정 요청 목록"), - fieldWithPath("billDetails[0].id").type(JsonFieldType.NUMBER) - .description("참여자 이름"), - fieldWithPath("billDetails[0].price").type(JsonFieldType.NUMBER) - .description("참여자 정산 금액"), - fieldWithPath("billDetails[0].isFixed").type(JsonFieldType.BOOLEAN) - .description("참여자 정산 금액 수정 여부") - ) - ) - ); - } - - @DisplayName("지출 내역을 삭제한다.") - @Test - void deleteBill() throws Exception { - String eventId = "토다리토큰"; - - mockMvc.perform(delete("/api/admin/events/{eventId}/bills/{billId}", eventId, 1) - .cookie(EVENT_COOKIE) - ) - .andDo(print()) - .andExpect(status().isOk()) - .andDo(document("deleteBill", - preprocessRequest(prettyPrint()), - preprocessResponse(prettyPrint()), - pathParameters( - parameterWithName("eventId").description("행사 ID"), - parameterWithName("billId").description("지출 ID") - ), - requestCookies( - cookieWithName("eventToken").description("행사 관리자 토큰") - ) - )); - } -} diff --git a/server/src/test/java/server/haengdong/docs/AdminEventControllerDocsTest.java b/server/src/test/java/server/haengdong/docs/AdminEventControllerDocsTest.java deleted file mode 100644 index 658c57512..000000000 --- a/server/src/test/java/server/haengdong/docs/AdminEventControllerDocsTest.java +++ /dev/null @@ -1,157 +0,0 @@ -package server.haengdong.docs; - -import static org.mockito.Mockito.mock; -import static org.springframework.restdocs.cookies.CookieDocumentation.cookieWithName; -import static org.springframework.restdocs.cookies.CookieDocumentation.requestCookies; -import static org.springframework.restdocs.mockmvc.MockMvcRestDocumentation.document; -import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.multipart; -import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.patch; -import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.post; -import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.delete; -import static org.springframework.restdocs.operation.preprocess.Preprocessors.preprocessRequest; -import static org.springframework.restdocs.operation.preprocess.Preprocessors.preprocessResponse; -import static org.springframework.restdocs.operation.preprocess.Preprocessors.prettyPrint; -import static org.springframework.restdocs.payload.PayloadDocumentation.fieldWithPath; -import static org.springframework.restdocs.payload.PayloadDocumentation.requestFields; -import static org.springframework.restdocs.request.RequestDocumentation.parameterWithName; -import static org.springframework.restdocs.request.RequestDocumentation.partWithName; -import static org.springframework.restdocs.request.RequestDocumentation.pathParameters; -import static org.springframework.restdocs.request.RequestDocumentation.requestParts; -import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; -import static server.haengdong.support.fixture.Fixture.EVENT_COOKIE; - -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import org.springframework.http.MediaType; -import org.springframework.mock.web.MockMultipartFile; -import org.springframework.restdocs.payload.JsonFieldType; -import server.haengdong.application.EventService; -import server.haengdong.application.ImageService; -import server.haengdong.presentation.admin.AdminEventController; -import server.haengdong.presentation.request.EventUpdateRequest; - -class AdminEventControllerDocsTest extends RestDocsSupport { - - private final EventService eventService = mock(EventService.class); - private final ImageService imageUploadService = mock(ImageService.class); - - @Override - protected Object initController() { - return new AdminEventController(eventService, imageUploadService); - } - - @DisplayName("행사 어드민 권한을 확인한다.") - @Test - void authenticateTest() throws Exception { - String token = "TOKEN"; - mockMvc.perform(post("/api/admin/events/{eventId}/auth", token) - .cookie(EVENT_COOKIE)) - .andDo(print()) - .andExpect(status().isOk()) - - .andDo( - document("authenticateEvent", - preprocessRequest(prettyPrint()), - preprocessResponse(prettyPrint()), - pathParameters( - parameterWithName("eventId").description("행사 ID") - ), - requestCookies( - cookieWithName("eventToken").description("행사 관리자 토큰").optional() - ) - ) - ); - } - - @DisplayName("행사 정보를 업데이트한다.") - @Test - void updateEventTest() throws Exception { - String token = "TOKEN"; - EventUpdateRequest eventUpdateRequest = new EventUpdateRequest("행동대장 비대위", "행대뱅크", "12345678"); - - String requestBody = objectMapper.writeValueAsString(eventUpdateRequest); - - mockMvc.perform(patch("/api/admin/events/{eventId}", token) - .cookie(EVENT_COOKIE) - .contentType(MediaType.APPLICATION_JSON) - .content(requestBody)) - .andDo(print()) - .andExpect(status().isOk()) - .andDo( - document("updateEvent", - preprocessRequest(prettyPrint()), - preprocessResponse(prettyPrint()), - pathParameters( - parameterWithName("eventId").description("행사 ID") - ), - requestCookies( - cookieWithName("eventToken").description("행사 관리자 토큰") - ), - requestFields( - fieldWithPath("eventName").type(JsonFieldType.STRING) - .description("수정할 이벤트 이름").optional(), - fieldWithPath("bankName").type(JsonFieldType.STRING) - .description("은행 이름").optional(), - fieldWithPath("accountNumber").type(JsonFieldType.STRING) - .description("계좌 번호").optional() - ) - ) - ); - } - - @DisplayName("행사에 이미지를 업로드한다.") - @Test - void uploadImages() throws Exception { - String token = "TOKEN"; - MockMultipartFile image1 = new MockMultipartFile("images", "image1.jpg", "image/jpeg", "이미지1".getBytes()); - MockMultipartFile image2 = new MockMultipartFile("images", "image2.jpg", "image/jpeg", "이미지2".getBytes()); - - mockMvc.perform(multipart("/api/admin/events/{eventId}/images", token) - .file(image1) - .file(image2) - .cookie(EVENT_COOKIE) - .contentType(MediaType.MULTIPART_FORM_DATA)) - .andDo(print()) - .andExpect(status().isOk()) - .andDo( - document("uploadImages", - preprocessRequest(prettyPrint()), - preprocessResponse(prettyPrint()), - pathParameters( - parameterWithName("eventId").description("행사 ID") - ), - requestCookies( - cookieWithName("eventToken").description("행사 관리자 토큰") - ), - requestParts( - partWithName("images").description("행사 이미지") - ) - ) - ); - } - - @DisplayName("행사 이미지를 삭제한다.") - @Test - void deleteImage() throws Exception { - String token = "TOKEN"; - - mockMvc.perform(delete("/api/admin/events/{eventId}/images/{imageId}", token, 1L) - .cookie(EVENT_COOKIE)) - .andDo(print()) - .andExpect(status().isOk()) - .andDo( - document("deleteImage", - preprocessRequest(prettyPrint()), - preprocessResponse(prettyPrint()), - pathParameters( - parameterWithName("eventId").description("행사 ID"), - parameterWithName("imageId").description("이미지 ID") - ), - requestCookies( - cookieWithName("eventToken").description("행사 관리자 토큰") - ) - ) - ); - } -} diff --git a/server/src/test/java/server/haengdong/docs/AdminMemberControllerDocsTest.java b/server/src/test/java/server/haengdong/docs/AdminMemberControllerDocsTest.java deleted file mode 100644 index 9d70673f9..000000000 --- a/server/src/test/java/server/haengdong/docs/AdminMemberControllerDocsTest.java +++ /dev/null @@ -1,173 +0,0 @@ -package server.haengdong.docs; - -import static org.hamcrest.Matchers.equalTo; -import static org.mockito.BDDMockito.given; -import static org.mockito.Mockito.mock; -import static org.springframework.restdocs.cookies.CookieDocumentation.cookieWithName; -import static org.springframework.restdocs.cookies.CookieDocumentation.requestCookies; -import static org.springframework.restdocs.mockmvc.MockMvcRestDocumentation.document; -import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.delete; -import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.post; -import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.put; -import static org.springframework.restdocs.operation.preprocess.Preprocessors.preprocessRequest; -import static org.springframework.restdocs.operation.preprocess.Preprocessors.preprocessResponse; -import static org.springframework.restdocs.operation.preprocess.Preprocessors.prettyPrint; -import static org.springframework.restdocs.payload.PayloadDocumentation.fieldWithPath; -import static org.springframework.restdocs.payload.PayloadDocumentation.requestFields; -import static org.springframework.restdocs.payload.PayloadDocumentation.responseFields; -import static org.springframework.restdocs.request.RequestDocumentation.parameterWithName; -import static org.springframework.restdocs.request.RequestDocumentation.pathParameters; -import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; -import static server.haengdong.support.fixture.Fixture.EVENT_COOKIE; - -import java.util.List; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import org.springframework.http.MediaType; -import org.springframework.restdocs.payload.JsonFieldType; -import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import server.haengdong.application.MemberService; -import server.haengdong.application.response.MemberSaveAppResponse; -import server.haengdong.application.response.MembersSaveAppResponse; -import server.haengdong.presentation.admin.AdminMemberController; -import server.haengdong.presentation.request.MemberSaveRequest; -import server.haengdong.presentation.request.MemberUpdateRequest; -import server.haengdong.presentation.request.MembersSaveRequest; -import server.haengdong.presentation.request.MembersUpdateRequest; - -class AdminMemberControllerDocsTest extends RestDocsSupport { - - private final MemberService memberService = mock(MemberService.class); - - @Override - protected Object initController() { - return new AdminMemberController(memberService); - } - - @DisplayName("행사 참여자를 추가한다.") - @Test - void saveMemberTest() throws Exception { - String eventToken = "망쵸토큰"; - MembersSaveRequest membersSaveRequest = new MembersSaveRequest( - List.of( - new MemberSaveRequest("웨디"), - new MemberSaveRequest("소하") - ) - ); - String requestBody = objectMapper.writeValueAsString(membersSaveRequest); - MembersSaveAppResponse appResponse = new MembersSaveAppResponse( - List.of( - new MemberSaveAppResponse(1L, "웨디"), - new MemberSaveAppResponse(2L, "소하") - ) - ); - given(memberService.saveMembers(eventToken, membersSaveRequest.toAppRequest())) - .willReturn(appResponse); - - mockMvc.perform(post("/api/admin/events/{eventId}/members", "망쵸토큰") - .contentType(MediaType.APPLICATION_JSON) - .content(requestBody) - .cookie(EVENT_COOKIE)) - .andDo(print()) - .andExpect(status().isOk()) - .andExpect(MockMvcResultMatchers.jsonPath("$.members[0].id").value(equalTo(1))) - .andExpect(MockMvcResultMatchers.jsonPath("$.members[0].name").value(equalTo("웨디"))) - .andExpect(MockMvcResultMatchers.jsonPath("$.members[1].id").value(equalTo(2))) - .andExpect(MockMvcResultMatchers.jsonPath("$.members[1].name").value(equalTo("소하"))) - .andDo( - document("saveMembers", - preprocessRequest(prettyPrint()), - preprocessResponse(prettyPrint()), - pathParameters( - parameterWithName("eventId").description("행사 ID") - ), - requestCookies( - cookieWithName("eventToken").description("토큰 토큰") - ), - requestFields( - fieldWithPath("members").type(JsonFieldType.ARRAY) - .description("행사에 추가할 참여자 목록"), - fieldWithPath("members[].name").type(JsonFieldType.STRING) - .description("참여자 이름") - ), - responseFields( - fieldWithPath("members").type(JsonFieldType.ARRAY) - .description("행사에 추가된 참여자 목록"), - fieldWithPath("members[].id").type(JsonFieldType.NUMBER) - .description("참여자 ID"), - fieldWithPath("members[].name").type(JsonFieldType.STRING) - .description("참여자 이름") - ) - ) - ); - } - - @DisplayName("행사 참여 인원을 삭제한다.") - @Test - void deleteMember() throws Exception { - String eventId = "망쵸토큰"; - Long memberId = 1L; - - mockMvc.perform(delete("/api/admin/events/{eventId}/members/{memberId}", eventId, memberId) - .cookie(EVENT_COOKIE)) - .andDo(print()) - .andExpect(status().isOk()) - .andDo( - document("deleteMember", - preprocessRequest(prettyPrint()), - preprocessResponse(prettyPrint()), - pathParameters( - parameterWithName("eventId").description("행사 ID"), - parameterWithName("memberId").description("삭제할 참여자 ID") - ), - requestCookies( - cookieWithName("eventToken").description("행사 토큰") - ) - ) - ); - } - - @DisplayName("행사 참여 인원 정보를 수정한다.") - @Test - void updateMembers() throws Exception { - String eventId = "망쵸토큰"; - MembersUpdateRequest membersUpdateRequest = new MembersUpdateRequest( - List.of( - new MemberUpdateRequest(1L, "토다리", true), - new MemberUpdateRequest(2L, "쿠키", false) - ) - ); - String requestBody = objectMapper.writeValueAsString(membersUpdateRequest); - - mockMvc.perform(put("/api/admin/events/{eventId}/members", eventId) - .contentType(MediaType.APPLICATION_JSON) - .content(requestBody) - .cookie(EVENT_COOKIE) - ) - .andDo(print()) - .andExpect(status().isOk()) - .andDo( - document("updateMembers", - preprocessRequest(prettyPrint()), - preprocessResponse(prettyPrint()), - pathParameters( - parameterWithName("eventId").description("행사 ID") - ), - requestCookies( - cookieWithName("eventToken").description("행사 토큰") - ), - requestFields( - fieldWithPath("members").type(JsonFieldType.ARRAY) - .description("수정할 참여자 목록"), - fieldWithPath("members[].id").type(JsonFieldType.NUMBER) - .description("참여자 ID"), - fieldWithPath("members[].name").type(JsonFieldType.STRING) - .description("참여자 이름"), - fieldWithPath("members[].isDeposited").type(JsonFieldType.BOOLEAN) - .description("참여자 입금 여부") - ) - ) - ); - } -} diff --git a/server/src/test/java/server/haengdong/docs/BillControllerDocsTest.java b/server/src/test/java/server/haengdong/docs/BillControllerDocsTest.java deleted file mode 100644 index 0716a2123..000000000 --- a/server/src/test/java/server/haengdong/docs/BillControllerDocsTest.java +++ /dev/null @@ -1,119 +0,0 @@ -package server.haengdong.docs; - -import static org.mockito.ArgumentMatchers.anyLong; -import static org.mockito.ArgumentMatchers.anyString; -import static org.mockito.BDDMockito.given; -import static org.mockito.Mockito.mock; -import static org.springframework.restdocs.mockmvc.MockMvcRestDocumentation.document; -import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.get; -import static org.springframework.restdocs.operation.preprocess.Preprocessors.preprocessRequest; -import static org.springframework.restdocs.operation.preprocess.Preprocessors.preprocessResponse; -import static org.springframework.restdocs.operation.preprocess.Preprocessors.prettyPrint; -import static org.springframework.restdocs.payload.PayloadDocumentation.fieldWithPath; -import static org.springframework.restdocs.payload.PayloadDocumentation.responseFields; -import static org.springframework.restdocs.request.RequestDocumentation.parameterWithName; -import static org.springframework.restdocs.request.RequestDocumentation.pathParameters; -import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; - -import java.util.List; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import server.haengdong.application.BillService; -import server.haengdong.application.response.BillAppResponse; -import server.haengdong.application.response.BillDetailAppResponse; -import server.haengdong.application.response.BillDetailsAppResponse; -import server.haengdong.application.response.MemberAppResponse; -import server.haengdong.application.response.StepAppResponse; -import server.haengdong.domain.bill.Bill; -import server.haengdong.domain.member.Member; -import server.haengdong.presentation.BillController; -import server.haengdong.support.fixture.Fixture; - -class BillControllerDocsTest extends RestDocsSupport { - - private final BillService billService = mock(BillService.class); - - @Override - protected Object initController() { - return new BillController(billService); - } - - @DisplayName("전체 지출 내역을 조회한다.") - @Test - void findBills() throws Exception { - Bill bill = Fixture.BILL1; - List bills = List.of(BillAppResponse.of(bill)); - - Member member = Fixture.MEMBER1; - List members = List.of(MemberAppResponse.of(member)); - - StepAppResponse stepAppResponse = new StepAppResponse(bills, members); - given(billService.findSteps(anyString())).willReturn(List.of(stepAppResponse)); - - mockMvc.perform(get("/api/events/{eventId}/bills", "token")) - .andDo(print()) - .andExpect(status().isOk()) - .andExpect(jsonPath("$.steps").isArray()) - .andExpect(jsonPath("$.steps[0].bills").isArray()) - .andExpect(jsonPath("$.steps[0].bills[0].id").value(bill.getId())) - .andExpect(jsonPath("$.steps[0].bills[0].title").value(bill.getTitle())) - .andExpect(jsonPath("$.steps[0].bills[0].price").value(bill.getPrice())) - .andExpect(jsonPath("$.steps[0].bills[0].isFixed").value(bill.isFixed())) - .andExpect(jsonPath("$.steps[0].members").isArray()) - .andExpect(jsonPath("$.steps[0].members[0].id").value(member.getId())) - .andExpect(jsonPath("$.steps[0].members[0].name").value(member.getName())) - .andDo(document("findBills", - preprocessRequest(prettyPrint()), - preprocessResponse(prettyPrint()), - pathParameters( - parameterWithName("eventId").description("행사 ID") - ), - responseFields( - fieldWithPath("steps").description("지출 차수 목록"), - fieldWithPath("steps[].bills").description("해당 차수의 지출 내역"), - fieldWithPath("steps[].bills[].id").description("지출 ID"), - fieldWithPath("steps[].bills[].title").description("지출 이름"), - fieldWithPath("steps[].bills[].price").description("지출 금액"), - fieldWithPath("steps[].bills[].isFixed").description("지출 수정 여부"), - fieldWithPath("steps[].members").description("해당 차수의 참여자 목록"), - fieldWithPath("steps[].members[].id").description("참여자 ID"), - fieldWithPath("steps[].members[].name").description("참여자 이름") - ) - ) - ); - } - - - @DisplayName("참여자별 지출 금액을 조회한다.") - @Test - void findBillDetails() throws Exception { - BillDetailsAppResponse appResponse = new BillDetailsAppResponse( - List.of(new BillDetailAppResponse(1L, "토다리", 1000L, false))); - given(billService.findBillDetails(anyString(), anyLong())).willReturn(appResponse); - - mockMvc.perform(get("/api/events/{eventId}/bills/{billId}/details", "TOKEN", 1L)) - .andExpect(status().isOk()) - .andExpect(jsonPath("$.members").isArray()) - .andExpect(jsonPath("$.members[0].id").value(1L)) - .andExpect(jsonPath("$.members[0].memberName").value("토다리")) - .andExpect(jsonPath("$.members[0].price").value(1000L)) - .andExpect(jsonPath("$.members[0].isFixed").value(false)) - .andDo(document("findBillDetails", - preprocessRequest(prettyPrint()), - preprocessResponse(prettyPrint()), - pathParameters( - parameterWithName("eventId").description("행사 ID"), - parameterWithName("billId").description("지출 ID") - ), responseFields( - fieldWithPath("members").description("참여자 목록"), - fieldWithPath("members[].id").description("참여자 ID"), - fieldWithPath("members[].memberName").description("참여자 이름"), - fieldWithPath("members[].price").description("참여자별 지출 금액"), - fieldWithPath("members[].isFixed").description("지출 수정 여부") - ) - ) - ); - } -} diff --git a/server/src/test/java/server/haengdong/docs/EventControllerDocsTest.java b/server/src/test/java/server/haengdong/docs/EventControllerDocsTest.java deleted file mode 100644 index 0918721fd..000000000 --- a/server/src/test/java/server/haengdong/docs/EventControllerDocsTest.java +++ /dev/null @@ -1,230 +0,0 @@ -package server.haengdong.docs; - -import static org.hamcrest.Matchers.equalTo; -import static org.mockito.ArgumentMatchers.any; -import static org.mockito.BDDMockito.given; -import static org.mockito.Mockito.mock; -import static org.springframework.restdocs.cookies.CookieDocumentation.cookieWithName; -import static org.springframework.restdocs.cookies.CookieDocumentation.responseCookies; -import static org.springframework.restdocs.mockmvc.MockMvcRestDocumentation.document; -import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.get; -import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.post; -import static org.springframework.restdocs.operation.preprocess.Preprocessors.preprocessRequest; -import static org.springframework.restdocs.operation.preprocess.Preprocessors.preprocessResponse; -import static org.springframework.restdocs.operation.preprocess.Preprocessors.prettyPrint; -import static org.springframework.restdocs.payload.PayloadDocumentation.fieldWithPath; -import static org.springframework.restdocs.payload.PayloadDocumentation.requestFields; -import static org.springframework.restdocs.payload.PayloadDocumentation.responseFields; -import static org.springframework.restdocs.request.RequestDocumentation.parameterWithName; -import static org.springframework.restdocs.request.RequestDocumentation.pathParameters; -import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.cookie; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; - -import java.time.Duration; -import java.util.List; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import org.springframework.http.MediaType; -import org.springframework.restdocs.payload.JsonFieldType; -import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import server.haengdong.application.AuthService; -import server.haengdong.application.EventService; -import server.haengdong.application.request.EventAppRequest; -import server.haengdong.application.response.EventAppResponse; -import server.haengdong.application.response.EventDetailAppResponse; -import server.haengdong.application.response.EventImageAppResponse; -import server.haengdong.application.response.MemberBillReportAppResponse; -import server.haengdong.infrastructure.auth.CookieProperties; -import server.haengdong.presentation.EventController; -import server.haengdong.presentation.request.EventLoginRequest; -import server.haengdong.presentation.request.EventSaveRequest; - -class EventControllerDocsTest extends RestDocsSupport { - - private final EventService eventService = mock(EventService.class); - private final AuthService authService = mock(AuthService.class); - private final CookieProperties cookieProperties = new CookieProperties( - true, true, "domain", "path", "none", Duration.ofDays(7) - ); - - @Override - protected Object initController() { - return new EventController(eventService, authService, cookieProperties); - } - - @DisplayName("토큰으로 행사를 조회한다.") - @Test - void findEventTest() throws Exception { - String eventId = "망쵸토큰"; - EventDetailAppResponse eventDetailAppResponse = new EventDetailAppResponse("행동대장 회식", "토스뱅크", "12312455"); - given(eventService.findEvent(eventId)).willReturn(eventDetailAppResponse); - - mockMvc.perform(get("/api/events/{eventId}", eventId)) - .andDo(print()) - .andExpect(status().isOk()) - .andExpect(jsonPath("$.eventName").value("행동대장 회식")) - .andDo( - document("getEvent", - preprocessRequest(prettyPrint()), - preprocessResponse(prettyPrint()), - pathParameters( - parameterWithName("eventId").description("행사 ID") - ), - responseFields( - fieldWithPath("eventName").type(JsonFieldType.STRING).description("행사 이름"), - fieldWithPath("bankName").type(JsonFieldType.STRING).description("토스뱅크"), - fieldWithPath("accountNumber").type(JsonFieldType.STRING).description("12312455") - ) - ) - ); - } - - @DisplayName("참여자별 정산 현황을 조회한다.") - @Test - void getMemberBillReports() throws Exception { - List memberBillReportAppResponses = List.of( - new MemberBillReportAppResponse(1L, "소하", false, 20_000L), - new MemberBillReportAppResponse(2L, "토다리", false, 200_000L) - ); - - given(eventService.getMemberBillReports(any())).willReturn(memberBillReportAppResponses); - - mockMvc.perform(get("/api/events/{eventId}/reports", "망쵸토큰") - .accept(MediaType.APPLICATION_JSON)) - .andDo(print()) - .andExpect(status().isOk()) - .andExpect(MockMvcResultMatchers.jsonPath("$.reports[0].memberId").value(equalTo(1))) - .andExpect(MockMvcResultMatchers.jsonPath("$.reports[0].memberName").value(equalTo("소하"))) - .andExpect(MockMvcResultMatchers.jsonPath("$.reports[0].isDeposited").value(equalTo(false))) - .andExpect(MockMvcResultMatchers.jsonPath("$.reports[0].price").value(equalTo(20_000))) - .andExpect(MockMvcResultMatchers.jsonPath("$.reports[1].memberId").value(equalTo(2))) - .andExpect(MockMvcResultMatchers.jsonPath("$.reports[1].memberName").value(equalTo("토다리"))) - .andExpect(MockMvcResultMatchers.jsonPath("$.reports[1].isDeposited").value(equalTo(false))) - .andExpect(MockMvcResultMatchers.jsonPath("$.reports[1].price").value(equalTo(200_000))) - .andDo( - document("getMemberBillReports", - preprocessRequest(prettyPrint()), - preprocessResponse(prettyPrint()), - pathParameters( - parameterWithName("eventId").description("행사 ID") - ), - responseFields( - fieldWithPath("reports").type(JsonFieldType.ARRAY).description("전체 정산 현황 목록"), - fieldWithPath("reports[0].memberId").type(JsonFieldType.NUMBER) - .description("참여자 ID"), - fieldWithPath("reports[0].memberName").type(JsonFieldType.STRING) - .description("참여자 이름"), - fieldWithPath("reports[0].isDeposited").type(JsonFieldType.BOOLEAN) - .description("참여자 이름"), - fieldWithPath("reports[0].price").type(JsonFieldType.NUMBER) - .description("참여자 정산 금액") - )) - ); - } - - @DisplayName("이벤트를 생성한다.") - @Test - void saveEvent() throws Exception { - EventSaveRequest eventSaveRequest = new EventSaveRequest("토다리", "0987"); - String requestBody = objectMapper.writeValueAsString(eventSaveRequest); - String eventId = "쿠키 토큰"; - EventAppResponse eventAppResponse = new EventAppResponse(eventId); - given(eventService.saveEvent(any(EventAppRequest.class))).willReturn(eventAppResponse); - given(authService.createToken(eventId)).willReturn("jwtToken"); - given(authService.getTokenName()).willReturn("eventToken"); - - mockMvc.perform(post("/api/events") - .contentType(MediaType.APPLICATION_JSON) - .content(requestBody)) - .andDo(print()) - .andExpect(status().isOk()) - .andExpect(cookie().value("eventToken", "jwtToken")) - .andExpect(jsonPath("$.eventId").value("쿠키 토큰")) - .andDo( - document("createEvent", - preprocessRequest(prettyPrint()), - preprocessResponse(prettyPrint()), - requestFields( - fieldWithPath("eventName").type(JsonFieldType.STRING).description("행사 이름"), - fieldWithPath("password").type(JsonFieldType.STRING).description("행사 비밀 번호") - ), - responseFields( - fieldWithPath("eventId").type(JsonFieldType.STRING) - .description("행사 ID") - ), - responseCookies( - cookieWithName("eventToken").description("행사 관리자용 토큰") - ) - ) - ); - } - - @DisplayName("행사 어드민이 로그인한다.") - @Test - void loginEvent() throws Exception { - String token = "TOKEN"; - EventLoginRequest eventLoginRequest = new EventLoginRequest("1234"); - String requestBody = objectMapper.writeValueAsString(eventLoginRequest); - given(authService.createToken(token)).willReturn("jwtToken"); - given(authService.getTokenName()).willReturn("eventToken"); - - mockMvc.perform(post("/api/events/{eventId}/login", token) - .contentType(MediaType.APPLICATION_JSON) - .content(requestBody)) - .andDo(print()) - .andExpect(cookie().value("eventToken", "jwtToken")) - .andExpect(status().isOk()) - .andDo( - document("eventLogin", - preprocessRequest(prettyPrint()), - preprocessResponse(prettyPrint()), - pathParameters( - parameterWithName("eventId").description("행사 ID") - ), - requestFields( - fieldWithPath("password").type(JsonFieldType.STRING) - .description("행사 비밀 번호") - ), - responseCookies( - cookieWithName("eventToken").description("행사 관리자용 토큰") - ) - ) - ); - } - - - @DisplayName("행사 이미지를 조회한다.") - @Test - void findAllImages() throws Exception { - String token = "TOKEN"; - List imageNameAppResponses = List.of( - new EventImageAppResponse(1L, "https://host.com/image1.jpg"), - new EventImageAppResponse(2L, "https://host.com/image2.jpg"), - new EventImageAppResponse(3L, "https://host.com/zeze.jpg") - ); - given(eventService.findImages(token)).willReturn(imageNameAppResponses); - - mockMvc.perform(get("/api/events/{eventId}/images", token)) - .andDo(print()) - .andExpect(status().isOk()) - .andDo( - document("findImages", - preprocessRequest(prettyPrint()), - preprocessResponse(prettyPrint()), - pathParameters( - parameterWithName("eventId").description("행사 ID") - ), - responseFields( - fieldWithPath("images").type(JsonFieldType.ARRAY) - .description("행사 이미지 목록"), - fieldWithPath("images[].id").type(JsonFieldType.NUMBER) - .description("이미지 id"), - fieldWithPath("images[].url").type(JsonFieldType.STRING) - .description("이미지 url") - ) - ) - ); - } -} diff --git a/server/src/test/java/server/haengdong/docs/MemberControllerDocsTest.java b/server/src/test/java/server/haengdong/docs/MemberControllerDocsTest.java deleted file mode 100644 index 2997ad4ee..000000000 --- a/server/src/test/java/server/haengdong/docs/MemberControllerDocsTest.java +++ /dev/null @@ -1,120 +0,0 @@ -package server.haengdong.docs; - -import static org.mockito.ArgumentMatchers.any; -import static org.mockito.ArgumentMatchers.anyString; -import static org.mockito.BDDMockito.given; -import static org.mockito.Mockito.mock; -import static org.springframework.restdocs.mockmvc.MockMvcRestDocumentation.document; -import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.get; -import static org.springframework.restdocs.operation.preprocess.Preprocessors.preprocessRequest; -import static org.springframework.restdocs.operation.preprocess.Preprocessors.preprocessResponse; -import static org.springframework.restdocs.operation.preprocess.Preprocessors.prettyPrint; -import static org.springframework.restdocs.payload.PayloadDocumentation.fieldWithPath; -import static org.springframework.restdocs.payload.PayloadDocumentation.responseFields; -import static org.springframework.restdocs.request.RequestDocumentation.parameterWithName; -import static org.springframework.restdocs.request.RequestDocumentation.pathParameters; -import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; - -import java.util.List; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import org.springframework.restdocs.payload.JsonFieldType; -import server.haengdong.application.MemberService; -import server.haengdong.application.response.MemberAppResponse; -import server.haengdong.application.response.MemberDepositAppResponse; -import server.haengdong.application.response.MembersDepositAppResponse; -import server.haengdong.presentation.MemberController; - -class MemberControllerDocsTest extends RestDocsSupport { - - private final MemberService memberService = mock(MemberService.class); - - @Override - protected Object initController() { - return new MemberController(memberService); - } - - @DisplayName("행사에 참여한 전체 인원을 조회한다.") - @Test - void findAllMembersTest() throws Exception { - List members = List.of( - new MemberDepositAppResponse(1L, "감자", false), - new MemberDepositAppResponse(2L, "백호", true), - new MemberDepositAppResponse(3L, "이상", true) - ); - - MembersDepositAppResponse memberAppResponse = new MembersDepositAppResponse(members); - given(memberService.findAllMembers(anyString())).willReturn(memberAppResponse); - - mockMvc.perform(get("/api/events/{eventId}/members", "TOKEN")) - .andDo(print()) - .andExpect(status().isOk()) - .andExpect(jsonPath("$.members").isArray()) - .andExpect(jsonPath("$.members[0].id").value(1L)) - .andExpect(jsonPath("$.members[0].name").value("감자")) - .andExpect(jsonPath("$.members[0].isDeposited").value(false)) - .andExpect(jsonPath("$.members[1].id").value(2L)) - .andExpect(jsonPath("$.members[1].name").value("백호")) - .andExpect(jsonPath("$.members[1].isDeposited").value(true)) - .andExpect(jsonPath("$.members[2].id").value(3L)) - .andExpect(jsonPath("$.members[2].name").value("이상")) - .andExpect(jsonPath("$.members[2].isDeposited").value(true)) - .andDo( - document("findAllMembers", - preprocessRequest(prettyPrint()), - preprocessResponse(prettyPrint()), - pathParameters( - parameterWithName("eventId").description("행사 ID") - ), - responseFields( - fieldWithPath("members").type(JsonFieldType.ARRAY) - .description("행사에 참여 중인 전체 멤버 목록"), - fieldWithPath("members[0].id").type(JsonFieldType.NUMBER) - .description("멤버 ID"), - fieldWithPath("members[0].name").type(JsonFieldType.STRING) - .description("멤버 이름"), - fieldWithPath("members[0].isDeposited").type(JsonFieldType.BOOLEAN) - .description("입금 여부") - ) - ) - ); - } - - @DisplayName("현재 참여 인원을 조회합니다.") - @Test - void getCurrentMembers() throws Exception { - List members = List.of( - new MemberAppResponse(1L, "감자"), - new MemberAppResponse(2L, "백호") - ); - - given(memberService.getCurrentMembers(any())).willReturn(members); - - mockMvc.perform(get("/api/events/{eventId}/members/current", "TOKEN")) - .andExpect(status().isOk()) - .andExpect(jsonPath("$.members").isArray()) - .andExpect(jsonPath("$.members[0].id").value(1L)) - .andExpect(jsonPath("$.members[0].name").value("감자")) - .andExpect(jsonPath("$.members[1].id").value(2L)) - .andExpect(jsonPath("$.members[1].name").value("백호")) - .andDo( - document("getCurrentMembers", - preprocessRequest(prettyPrint()), - preprocessResponse(prettyPrint()), - pathParameters( - parameterWithName("eventId").description("행사 ID") - ), - responseFields( - fieldWithPath("members").type(JsonFieldType.ARRAY) - .description("현재 행사에 참여 중인 멤버 목록"), - fieldWithPath("members[0].id").type(JsonFieldType.NUMBER) - .description("멤버 ID"), - fieldWithPath("members[0].name").type(JsonFieldType.STRING) - .description("멤버 이름") - ) - ) - ); - } -} diff --git a/server/src/test/java/server/haengdong/docs/RestDocsSupport.java b/server/src/test/java/server/haengdong/docs/RestDocsSupport.java deleted file mode 100644 index 3e6901ba8..000000000 --- a/server/src/test/java/server/haengdong/docs/RestDocsSupport.java +++ /dev/null @@ -1,28 +0,0 @@ -package server.haengdong.docs; - -import static org.springframework.restdocs.mockmvc.MockMvcRestDocumentation.documentationConfiguration; - -import com.fasterxml.jackson.databind.ObjectMapper; -import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.extension.ExtendWith; -import org.springframework.restdocs.RestDocumentationContextProvider; -import org.springframework.restdocs.RestDocumentationExtension; -import org.springframework.test.web.servlet.MockMvc; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; - -@ExtendWith({RestDocumentationExtension.class}) -abstract class RestDocsSupport { - - protected MockMvc mockMvc; - - protected ObjectMapper objectMapper = new ObjectMapper(); - - @BeforeEach - void setUp(RestDocumentationContextProvider restDocumentation) { - this.mockMvc = MockMvcBuilders.standaloneSetup(initController()) - .apply(documentationConfiguration(restDocumentation)) - .build(); - } - - protected abstract Object initController(); -} diff --git a/server/src/test/java/server/haengdong/domain/bill/BillTest.java b/server/src/test/java/server/haengdong/domain/bill/BillTest.java deleted file mode 100644 index d1c2e3d8c..000000000 --- a/server/src/test/java/server/haengdong/domain/bill/BillTest.java +++ /dev/null @@ -1,98 +0,0 @@ -package server.haengdong.domain.bill; - -import static org.assertj.core.api.Assertions.assertThat; -import static org.assertj.core.api.Assertions.assertThatThrownBy; -import static org.junit.jupiter.api.Assertions.assertAll; -import static server.haengdong.support.fixture.Fixture.EVENT1; - -import java.util.List; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import org.junit.jupiter.params.ParameterizedTest; -import org.junit.jupiter.params.provider.ValueSource; -import server.haengdong.domain.member.Member; -import server.haengdong.exception.HaengdongException; - -class BillTest { - - @DisplayName("지출 내역 제목의 앞뒤 공백을 제거한 길이가 1 ~ 30자가 아니면 지출을 생성할 수 없다.") - @ParameterizedTest - @ValueSource(strings = {"", " ", "1234567890123456789012345678901"}) - void validateTitle(String title) { - Long price = 100L; - - assertThatThrownBy(() -> new Bill(EVENT1, title, price)) - .isInstanceOf(HaengdongException.class) - .hasMessage("앞뒤 공백을 제거한 지출 내역 제목은 1 ~ 30자여야 합니다."); - } - - @DisplayName("금액이 10,000,000 이하의 자연수가 아니면 지출을 생성할 수 없다.") - @ParameterizedTest - @ValueSource(longs = {0, 10_000_001, 20_000_000}) - void validatePrice(long price) { - String title = "title"; - - assertThatThrownBy(() -> new Bill(EVENT1, title, price)) - .isInstanceOf(HaengdongException.class) - .hasMessage("지출 금액은 10,000,000 이하의 자연수여야 합니다."); - } - - @DisplayName("지출 내역을 올바르게 생성한다.") - @Test - void createBill() { - String title = "title"; - Long price = 1_000L; - - Bill bill = new Bill(EVENT1, title, price); - - assertAll( - () -> assertThat(bill.getTitle()).isEqualTo(title), - () -> assertThat(bill.getPrice()).isEqualTo(price) - ); - } - - @DisplayName("지출에 멤버별 고정 금액이 설정되어 있는지 확인한다.") - @Test - void isFixed1() { - List members = List.of(new Member(EVENT1, "감자"), new Member(EVENT1, "고구마")); - Bill fixedBill = Bill.create(EVENT1, "인생네컷", 2_000L, members); - - assertThat(fixedBill.isFixed()).isEqualTo(false); - } - - @DisplayName("같은 멤버 목록을 가지고 있는지 비교한다.") - @Test - void isSameMember1() { - Member member1 = new Member(1L, EVENT1, "감자", false); - Member member2 = new Member(2L, EVENT1, "고구마", false); - Member member3 = new Member(3L, EVENT1, "당근", false); - - List members1 = List.of(member1, member2, member3); - List members2 = List.of(member2, member3, member1); - - Bill bill1 = Bill.create(EVENT1, "뽕족", 20_000L, members1); - Bill bill2 = Bill.create(EVENT1, "인생네컷", 30_000L, members2); - - boolean isSameMembers = bill1.isSameMembers(bill2); - - assertThat(isSameMembers).isTrue(); - } - - @DisplayName("같은 멤버 목록을 가지고 있는지 비교한다.") - @Test - void isSameMember2() { - Member member1 = new Member(1L, EVENT1, "감자", false); - Member member2 = new Member(2L, EVENT1, "고구마", false); - Member member3 = new Member(3L, EVENT1, "당근", false); - - List members1 = List.of(member1, member2, member3); - List members2 = List.of(member2, member1); - - Bill bill1 = Bill.create(EVENT1, "뽕족", 20_000L, members1); - Bill bill2 = Bill.create(EVENT1, "인생네컷", 30_000L, members2); - - boolean isSameMembers = bill1.isSameMembers(bill2); - - assertThat(isSameMembers).isFalse(); - } -} diff --git a/server/src/test/java/server/haengdong/domain/event/EventTest.java b/server/src/test/java/server/haengdong/domain/event/EventTest.java deleted file mode 100644 index 67c5420b0..000000000 --- a/server/src/test/java/server/haengdong/domain/event/EventTest.java +++ /dev/null @@ -1,165 +0,0 @@ -package server.haengdong.domain.event; - -import static org.assertj.core.api.Assertions.assertThat; -import static org.assertj.core.api.Assertions.assertThatCode; -import static org.assertj.core.api.Assertions.assertThatThrownBy; -import static org.junit.jupiter.api.Assertions.assertAll; - -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import org.junit.jupiter.params.ParameterizedTest; -import org.junit.jupiter.params.provider.ValueSource; -import server.haengdong.exception.HaengdongException; - -class EventTest { - - @DisplayName("공백 문자가 연속되지 않고, 이름이 2자 이상 20자 이하인 행사를 생성하면 예외가 발생하지 않는다.") - @ParameterizedTest - @ValueSource(strings = {"12", "12345678901234567890", "공 백", " 공백", "공백 ", " 공 백 "}) - void createSuccessTest(String eventName) { - assertThatCode(() -> new Event(eventName, "1234", "TEST_TOKEN")) - .doesNotThrowAnyException(); - } - - @DisplayName("공백 문자가 연속되면 예외가 발생한다.") - @ParameterizedTest - @ValueSource(strings = {" 공백", "공백 ", "공백 연속", "공 백"}) - void createFailTest1(String eventName) { - assertThatCode(() -> new Event(eventName, "1234", "TEST_TOKEN")) - .isInstanceOf(HaengdongException.class) - .hasMessage("행사 이름에는 공백 문자가 연속될 수 없습니다."); - } - - @DisplayName("이름이 1자 미만이거나 20자 초과인 경우 예외가 발생한다.") - @ParameterizedTest - @ValueSource(strings = {"", " ", "123456789012345678901"}) - void createFilTest2(String eventName) { - assertThatCode(() -> new Event(eventName, "1234", "TEST_TOKEN")) - .isInstanceOf(HaengdongException.class) - .hasMessage("행사 이름은 1자 이상 20자 이하만 입력 가능합니다."); - } - - @DisplayName("비밀번호는 4자리 숫자 입니다.") - @ParameterizedTest - @ValueSource(strings = {"1", "12", "123", "12345", "adgd"}) - void validatePassword(String password) { - assertThatCode(() -> new Event("이름", password, "TEST_TOKEN")) - .isInstanceOf(HaengdongException.class); - } - - @DisplayName("비밀번호가 다른지 검증한다.") - @Test - void isNotSamePassword() { - String rawPassword = "1234"; - Event event = new Event("이름", rawPassword, "TEST_TOKEN"); - - assertThat(event.isPasswordMismatch(rawPassword)).isFalse(); - } - - @DisplayName("비밀번호가 다른지 검증한다.") - @Test - void isNotSamePassword1() { - String rawPassword = "1234"; - Event event = new Event("이름", "5678", "TEST_TOKEN"); - - assertThat(event.isPasswordMismatch(rawPassword)).isTrue(); - } - - @DisplayName("이름을 수정한다.") - @Test - void renameTest() { - Event event = new Event("이름", "1234", "TEST_TOKEN"); - - event.rename("새로운 이름"); - - assertThat(event.getName()).isEqualTo("새로운 이름"); - } - - @DisplayName("계좌 정보에 은행 이름과 계좌 번호가 모두 포함된다.") - @Test - void changeAccountTest() { - Event event = new Event("이름", "1234", "TEST_TOKEN"); - - event.changeAccount("토스뱅크", "12345678"); - - assertAll( - () -> assertThat(event.getBankName()).isEqualTo("토스뱅크"), - () -> assertThat(event.getAccountNumber()).isEqualTo("12345678") - ); - } - - @DisplayName("계좌 정보에 은행 이름과 계좌 번호가 모두 포함되지 않으면 예외가 발생한다.") - @Test - void changeAccountTest1() { - Event event = new Event("이름", "1234", "TEST_TOKEN"); - - assertThatThrownBy(() -> event.changeAccount("행대뱅크", "")) - .isInstanceOf(HaengdongException.class); - } - - @DisplayName("지원하는 은행이면 예외가 발생하지 않는다.") - @ParameterizedTest - @ValueSource(strings = {"토스뱅크", "KB국민은행"}) - void changeAccountTest2(String bankName) { - Event event = new Event("이름", "1234", "TEST_TOKEN"); - - assertThatCode(() -> event.changeAccount(bankName, "12345678")) - .doesNotThrowAnyException(); - } - - @DisplayName("지원하지 않는 은행이면 예외가 발생한다.") - @ParameterizedTest - @ValueSource(strings = {"행대뱅크", "토스 뱅크", "망쵸뱅크", "KB 국민은행"}) - void changeAccountTest3(String bankName) { - Event event = new Event("이름", "1234", "TEST_TOKEN"); - - assertThatThrownBy(() -> event.changeAccount(bankName, "12345678")) - .isInstanceOf(HaengdongException.class); - } - - @DisplayName("계좌 번호가 8자 이상 30자 이하면 예외가 발생하지 않는다.") - @ParameterizedTest - @ValueSource(strings = {"12345678", "123456789012345678901234567890"}) - void changeAccountTest4(String accountNumber) { - Event event = new Event("이름", "1234", "TEST_TOKEN"); - - assertThatCode(() -> event.changeAccount("토스뱅크", accountNumber)) - .doesNotThrowAnyException(); - } - - @DisplayName("계좌 번호가 8자 미만 30자 초과면 예외가 발생한다.") - @ParameterizedTest - @ValueSource(strings = {"", " ", "1234567", "1234567890123456789012345678901"}) - void changeAccountTest5(String accountNumber) { - Event event = new Event("이름", "1234", "TEST_TOKEN"); - - assertThatThrownBy(() -> event.changeAccount("토스뱅크", accountNumber)) - .isInstanceOf(HaengdongException.class); - } - - @DisplayName("계좌 정보를 조회한다.") - @Test - void getBankNameTest() { - Event event = new Event("이름", "1234", "TEST_TOKEN"); - - event.changeAccount("토스뱅크", "12345678"); - - assertAll( - () -> assertThat(event.getBankName()).isEqualTo("토스뱅크"), - () -> assertThat(event.getAccountNumber()).isEqualTo("12345678") - ); - } - - @DisplayName("계좌 번호에 공백이 있어도 계좌 정보를 정상적으로 조회한다.") - @Test - void getBankNameTest1() { - Event event = new Event("이름", "1234", "TEST_TOKEN"); - - event.changeAccount("토스뱅크", "1234 5678 9012"); - - assertAll( - () -> assertThat(event.getBankName()).isEqualTo("토스뱅크"), - () -> assertThat(event.getAccountNumber()).isEqualTo("1234 5678 9012") - ); - } -} diff --git a/server/src/test/java/server/haengdong/domain/event/PasswordTest.java b/server/src/test/java/server/haengdong/domain/event/PasswordTest.java deleted file mode 100644 index c504d3aa2..000000000 --- a/server/src/test/java/server/haengdong/domain/event/PasswordTest.java +++ /dev/null @@ -1,19 +0,0 @@ -package server.haengdong.domain.event; - -import static org.assertj.core.api.Assertions.assertThatCode; - -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.params.ParameterizedTest; -import org.junit.jupiter.params.provider.ValueSource; -import server.haengdong.exception.HaengdongException; - -class PasswordTest { - - @DisplayName("비밀번호는 4자리 숫자 입니다.") - @ParameterizedTest - @ValueSource(strings = {"1", "12", "123", "12345", "adgd"}) - void validatePassword(String rawPassword) { - assertThatCode(() -> new Password(rawPassword)) - .isInstanceOf(HaengdongException.class); - } -} diff --git a/server/src/test/java/server/haengdong/domain/member/MemberBillReportTest.java b/server/src/test/java/server/haengdong/domain/member/MemberBillReportTest.java deleted file mode 100644 index 187d117f7..000000000 --- a/server/src/test/java/server/haengdong/domain/member/MemberBillReportTest.java +++ /dev/null @@ -1,42 +0,0 @@ -package server.haengdong.domain.member; - -import static org.assertj.core.api.Assertions.assertThat; - -import java.util.List; -import java.util.Map; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import server.haengdong.domain.bill.Bill; -import server.haengdong.domain.event.Event; -import server.haengdong.domain.bill.MemberBillReport; -import server.haengdong.support.fixture.Fixture; - -class MemberBillReportTest { - - @DisplayName("지출 목록으로 참가자 정산 리포트를 생성한다.") - @Test - void createByBills() { - Event event = Fixture.EVENT1; - Member member1 = new Member(1L, event, "소하", false); - Member member2 = new Member(2L, event, "감자", false); - Member member3 = new Member(3L, event, "쿠키", false); - Member member4 = new Member(4L, event, "고구마", false); - List members = List.of(member1, member2, member3, member4); - List bills = List.of( - Bill.create(event, "뽕족", 60_000L, members), - Bill.create(event, "인생네컷", 20_000L, members) - ); - - MemberBillReport memberBillReport = MemberBillReport.createByBills(bills); - - assertThat(memberBillReport.getReports()) - .containsAllEntriesOf( - Map.of( - member1, 20_000L, - member2, 20_000L, - member3, 20_000L, - member4, 20_000L - ) - ); - } -} diff --git a/server/src/test/java/server/haengdong/domain/member/UpdatedMembersTest.java b/server/src/test/java/server/haengdong/domain/member/UpdatedMembersTest.java deleted file mode 100644 index 9f0338ffb..000000000 --- a/server/src/test/java/server/haengdong/domain/member/UpdatedMembersTest.java +++ /dev/null @@ -1,118 +0,0 @@ -package server.haengdong.domain.member; - -import static org.assertj.core.api.Assertions.assertThat; -import static org.assertj.core.api.Assertions.assertThatCode; -import static org.assertj.core.api.Assertions.assertThatThrownBy; - -import java.util.List; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import server.haengdong.domain.event.Event; -import server.haengdong.exception.HaengdongException; - -class UpdatedMembersTest { - - @DisplayName("이벤트 이름들은 중복될 수 없다.") - @Test - void validateNameUnique() { - Event event = new Event("행동대장 회식", "1234", "1231415jaksdf"); - List members = List.of( - new Member(1L, event, "고구마", false), - new Member(2L, event, "감자", false), - new Member(3L, event, "감자", false) - ); - - assertThatThrownBy(() -> new UpdatedMembers(members)) - .isInstanceOf(HaengdongException.class) - .hasMessage("중복된 참여 인원 이름 변경 요청이 존재합니다."); - } - - @DisplayName("이벤트 회원들은 중복될 수 없다.") - @Test - void validateMemberUnique() { - Event event = new Event("행동대장 회식", "1234", "1231415jaksdf"); - Member member1 = new Member(1L, event, "고구마", false); - Member member2 = new Member(2L, event, "감자", false); - List members = List.of(member1, member2, member2); - - - assertThatThrownBy(() -> new UpdatedMembers(members)) - .isInstanceOf(HaengdongException.class) - .hasMessage("중복된 참여 인원 이름 변경 요청이 존재합니다."); - } - - @DisplayName("이벤트 이름들로 이벤트 참여자들을 생성한다.") - @Test - void create() { - Event event = new Event("행동대장 회식", "1234", "1231415jaksdf"); - Member member1 = new Member(1L, event, "고구마", false); - Member member2 = new Member(2L, event, "감자", false); - Member member3 = new Member(3L, event, "당근", false); - List members = List.of(member1, member2, member3); - - UpdatedMembers eventUpdatedMembers = new UpdatedMembers(members); - assertThat(eventUpdatedMembers.getMembers()).hasSize(3) - .containsExactlyInAnyOrder(member1, member2, member3); - } - - @DisplayName("이벤트의 참여자들 전체가 존재하지 않으면 업데이트할 수 없다.") - @Test - void validateUpdatedMembersExist() { - Event event = new Event("행동대장 회식", "1234", "1231415jaksdf"); - Member member1 = new Member(1L, event, "고구마", false); - Member member2 = new Member(2L, event, "감자", false); - Member member3 = new Member(3L, event, "당근", false); - Member member4 = new Member(4L, event, "양파", false); - List members = List.of(member1, member2, member3, member4); - - Member updateMember1 = new Member(1L, event, "토다리", false); - Member updateMember2 = new Member(2L, event, "쿠키", false); - Member updateMember3 = new Member(3L, event, "백호", false); - UpdatedMembers updatedMembers = new UpdatedMembers(List.of(updateMember1, updateMember2, updateMember3)); - - assertThatThrownBy(() -> updatedMembers.validateUpdatable(members)) - .isInstanceOf(HaengdongException.class) - .hasMessage("업데이트 요청된 참여자 ID 목록과 기존 행사 참여자 ID 목록이 일치하지 않습니다."); - } - - @DisplayName("업데이트할 이름 중에 기존 이벤트의 참여자들의 이름과 중복되면 업데이트할 수 없다.") - @Test - void validateUpdatedNamesUnique() { - Event event = new Event("행동대장 회식", "1234", "1231415jaksdf"); - Member member1 = new Member(1L, event, "고구마", false); - Member member2 = new Member(2L, event, "감자", false); - Member member3 = new Member(3L, event, "당근", false); - Member member4 = new Member(4L, event, "양파", false); - List members = List.of(member1, member2, member3, member4); - - Member updateMember1 = new Member(1L, event, "토다리", false); - Member updateMember2 = new Member(2L, event, "쿠키", false); - Member updateMember3 = new Member(3L, event, "백호", false); - Member updateMember4 = new Member(4L, event, "감자", false); - UpdatedMembers updatedMembers = new UpdatedMembers(List.of(updateMember1, updateMember2, updateMember3, updateMember4)); - - assertThatThrownBy(() -> updatedMembers.validateUpdatable(members)) - .isInstanceOf(HaengdongException.class) - .hasMessage("행사에 중복된 참여자 이름이 존재합니다."); - } - - @DisplayName("이벤트의 참여자들 전체를 업데이트 검증한다.") - @Test - void validateUpdatable() { - Event event = new Event("행동대장 회식", "1234", "1231415jaksdf"); - Member member1 = new Member(1L, event, "고구마", false); - Member member2 = new Member(2L, event, "감자", false); - Member member3 = new Member(3L, event, "당근", false); - Member member4 = new Member(4L, event, "양파", false); - List members = List.of(member1, member2, member3, member4); - - Member updateMember1 = new Member(1L, event, "토다리", false); - Member updateMember2 = new Member(2L, event, "쿠키", false); - Member updateMember3 = new Member(3L, event, "백호", false); - Member updateMember4 = new Member(4L, event, "망쵸", false); - UpdatedMembers updatedMembers = new UpdatedMembers(List.of(updateMember1, updateMember2, updateMember3, updateMember4)); - - assertThatCode(() -> updatedMembers.validateUpdatable(members)) - .doesNotThrowAnyException(); - } -} diff --git a/server/src/test/java/server/haengdong/domain/step/StepTest.java b/server/src/test/java/server/haengdong/domain/step/StepTest.java deleted file mode 100644 index 5c5631840..000000000 --- a/server/src/test/java/server/haengdong/domain/step/StepTest.java +++ /dev/null @@ -1,50 +0,0 @@ -package server.haengdong.domain.step; - -import static org.assertj.core.api.Assertions.assertThat; -import static org.assertj.core.api.Assertions.assertThatThrownBy; -import static server.haengdong.support.fixture.Fixture.EVENT1; - -import java.util.List; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import server.haengdong.domain.bill.Bill; -import server.haengdong.domain.member.Member; -import server.haengdong.exception.HaengdongException; - -class StepTest { - - @DisplayName("회원 구성이 같은 지출은 Step에 추가될 수 있다.") - @Test - void add1() { - Member member1 = new Member(1L, EVENT1, "감자", false); - Member member2 = new Member(2L, EVENT1, "고구마", false); - Member member3 = new Member(3L, EVENT1, "당근", false); - Member member4 = new Member(4L, EVENT1, "양파", false); - Bill bill1 = Bill.create(EVENT1, "뽕족", 10_000L, List.of(member1, member2, member3, member4)); - Step step = Step.of(bill1); - - Bill bill2 = Bill.create(EVENT1, "인생네컷", 5_000L, List.of(member2, member3, member1, member4)); - - step.add(bill2); - - List bills = step.getBills(); - - assertThat(bills).hasSize(2); - } - - @DisplayName("회원 구성이 댜른 지출은 Step에 추가될 수 없다.") - @Test - void add2() { - Member member1 = new Member(1L, EVENT1, "감자", false); - Member member2 = new Member(2L, EVENT1, "고구마", false); - Member member3 = new Member(3L, EVENT1, "당근", false); - Member member4 = new Member(4L, EVENT1, "양파", false); - Bill bill1 = Bill.create(EVENT1, "뽕족", 10_000L, List.of(member1, member2, member3, member4)); - Step step = Step.of(bill1); - - Bill bill2 = Bill.create(EVENT1, "인생네컷", 5_000L, List.of(member2, member3, member1)); - - assertThatThrownBy(() -> step.add(bill2)) - .isInstanceOf(HaengdongException.class); - } -} diff --git a/server/src/test/java/server/haengdong/domain/step/StepsTest.java b/server/src/test/java/server/haengdong/domain/step/StepsTest.java deleted file mode 100644 index 799cb0d4c..000000000 --- a/server/src/test/java/server/haengdong/domain/step/StepsTest.java +++ /dev/null @@ -1,48 +0,0 @@ -package server.haengdong.domain.step; - -import static org.assertj.core.api.Assertions.assertThat; -import static org.junit.jupiter.api.Assertions.assertAll; -import static server.haengdong.support.fixture.Fixture.EVENT1; - -import java.util.List; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import server.haengdong.domain.bill.Bill; -import server.haengdong.domain.member.Member; - -class StepsTest { - - @DisplayName("지출 목록 순으로 같은 회원 구성인 경우 같은 Step으로 묶는다.") - @Test - void of() { - Member member1 = new Member(1L, EVENT1, "감자", false); - Member member2 = new Member(2L, EVENT1, "고구마", false); - Member member3 = new Member(3L, EVENT1, "당근", false); - Member member4 = new Member(4L, EVENT1, "양파", false); - Bill bill1 = Bill.create(EVENT1, "뽕족", 10_000L, List.of(member1, member2)); - Bill bill2 = Bill.create(EVENT1, "용용선생", 20_000L, List.of(member2, member1)); - Bill bill3 = Bill.create(EVENT1, "보승회관", 30_000L, List.of(member1, member2, member3)); - Bill bill4 = Bill.create(EVENT1, "감자", 40_000L, List.of(member1, member2, member3, member4)); - Bill bill5 = Bill.create(EVENT1, "인생네컷", 5_000L, List.of(member2, member3, member1, member4)); - List bills = List.of(bill1, bill2, bill3, bill4, bill5); - - Steps step = Steps.of(bills); - - List steps = step.getSteps(); - assertAll( - () -> assertThat(steps).hasSize(3), - () -> assertThat(steps.get(0).getBills()).hasSize(2) - .containsExactly(bill1, bill2), - () -> assertThat(steps.get(0).getMembers()).hasSize(2) - .containsExactly(member1, member2), - () -> assertThat(steps.get(1).getBills()).hasSize(1) - .containsExactly(bill3), - () -> assertThat(steps.get(1).getMembers()).hasSize(3) - .containsExactly(member1, member2, member3), - () -> assertThat(steps.get(2).getBills()).hasSize(2) - .containsExactly(bill4, bill5), - () -> assertThat(steps.get(2).getMembers()).hasSize(4) - .containsExactly(member1, member2, member3, member4) - ); - } -} diff --git a/server/src/test/java/server/haengdong/presentation/BillControllerTest.java b/server/src/test/java/server/haengdong/presentation/BillControllerTest.java deleted file mode 100644 index b6658d7b6..000000000 --- a/server/src/test/java/server/haengdong/presentation/BillControllerTest.java +++ /dev/null @@ -1,66 +0,0 @@ -package server.haengdong.presentation; - -import static org.mockito.ArgumentMatchers.anyLong; -import static org.mockito.ArgumentMatchers.anyString; -import static org.mockito.BDDMockito.given; -import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; -import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; - -import java.util.List; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import server.haengdong.application.response.BillAppResponse; -import server.haengdong.application.response.BillDetailAppResponse; -import server.haengdong.application.response.BillDetailsAppResponse; -import server.haengdong.application.response.MemberAppResponse; -import server.haengdong.application.response.StepAppResponse; -import server.haengdong.domain.bill.Bill; -import server.haengdong.domain.member.Member; -import server.haengdong.support.fixture.Fixture; - -class BillControllerTest extends ControllerTestSupport { - - @DisplayName("전체 지출 내역을 조회한다.") - @Test - void findBills() throws Exception { - Bill bill = Fixture.BILL1; - List bills = List.of(BillAppResponse.of(bill)); - - Member member = Fixture.MEMBER1; - List members = List.of(MemberAppResponse.of(member)); - - StepAppResponse stepAppResponse = new StepAppResponse(bills, members); - given(billService.findSteps(anyString())).willReturn(List.of(stepAppResponse)); - - mockMvc.perform(get("/api/events/{eventId}/bills", "token")) - .andDo(print()) - .andExpect(status().isOk()) - .andExpect(jsonPath("$.steps").isArray()) - .andExpect(jsonPath("$.steps[0].bills").isArray()) - .andExpect(jsonPath("$.steps[0].bills[0].id").value(bill.getId())) - .andExpect(jsonPath("$.steps[0].bills[0].title").value(bill.getTitle())) - .andExpect(jsonPath("$.steps[0].bills[0].price").value(bill.getPrice())) - .andExpect(jsonPath("$.steps[0].bills[0].isFixed").value(bill.isFixed())) - .andExpect(jsonPath("$.steps[0].members").isArray()) - .andExpect(jsonPath("$.steps[0].members[0].id").value(member.getId())) - .andExpect(jsonPath("$.steps[0].members[0].name").value(member.getName())); - } - - @DisplayName("참여자별 지출 금액을 조회한다.") - @Test - void findBillDetails() throws Exception { - BillDetailsAppResponse appResponse = new BillDetailsAppResponse( - List.of(new BillDetailAppResponse(1L, "토다리", 1000L, false))); - given(billService.findBillDetails(anyString(), anyLong())).willReturn(appResponse); - - mockMvc.perform(get("/api/events/{eventId}/bills/{billId}/details", "TOKEN", 1L)) - .andExpect(status().isOk()) - .andExpect(jsonPath("$.members").isArray()) - .andExpect(jsonPath("$.members[0].id").value(1L)) - .andExpect(jsonPath("$.members[0].memberName").value("토다리")) - .andExpect(jsonPath("$.members[0].price").value(1000L)) - .andExpect(jsonPath("$.members[0].isFixed").value(false)); - } -} diff --git a/server/src/test/java/server/haengdong/presentation/ControllerTestSupport.java b/server/src/test/java/server/haengdong/presentation/ControllerTestSupport.java deleted file mode 100644 index 738823c40..000000000 --- a/server/src/test/java/server/haengdong/presentation/ControllerTestSupport.java +++ /dev/null @@ -1,53 +0,0 @@ -package server.haengdong.presentation; - -import com.fasterxml.jackson.databind.ObjectMapper; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; -import org.springframework.boot.test.mock.mockito.MockBean; -import org.springframework.context.annotation.ComponentScan; -import org.springframework.context.annotation.FilterType; -import org.springframework.test.web.servlet.MockMvc; -import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; -import server.haengdong.application.AuthService; -import server.haengdong.application.BillService; -import server.haengdong.application.EventService; -import server.haengdong.application.ImageService; -import server.haengdong.application.MemberService; -import server.haengdong.presentation.admin.AdminBillController; -import server.haengdong.presentation.admin.AdminEventController; -import server.haengdong.presentation.admin.AdminMemberController; - -@WebMvcTest( - controllers = { - AdminEventController.class, - AdminBillController.class, - AdminMemberController.class, - EventController.class, - MemberController.class, - BillController.class - }, - excludeFilters = {@ComponentScan.Filter(type = FilterType.ASSIGNABLE_TYPE, classes = {WebMvcConfigurer.class})} -) -public abstract class ControllerTestSupport { - - @Autowired - protected MockMvc mockMvc; - - @Autowired - protected ObjectMapper objectMapper; - - @MockBean - protected EventService eventService; - - @MockBean - protected AuthService authService; - - @MockBean - protected MemberService memberService; - - @MockBean - protected BillService billService; - - @MockBean - protected ImageService imageUploadService; -} diff --git a/server/src/test/java/server/haengdong/presentation/EventControllerTest.java b/server/src/test/java/server/haengdong/presentation/EventControllerTest.java deleted file mode 100644 index 90e7fd618..000000000 --- a/server/src/test/java/server/haengdong/presentation/EventControllerTest.java +++ /dev/null @@ -1,119 +0,0 @@ -package server.haengdong.presentation; - -import static org.hamcrest.Matchers.equalTo; -import static org.mockito.ArgumentMatchers.any; -import static org.mockito.BDDMockito.given; -import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.post; -import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; -import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.cookie; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; - -import java.util.List; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import org.springframework.http.MediaType; -import org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders; -import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import server.haengdong.application.request.EventAppRequest; -import server.haengdong.application.response.EventAppResponse; -import server.haengdong.application.response.EventDetailAppResponse; -import server.haengdong.application.response.EventImageAppResponse; -import server.haengdong.application.response.MemberBillReportAppResponse; -import server.haengdong.presentation.request.EventLoginRequest; -import server.haengdong.presentation.request.EventSaveRequest; - - -class EventControllerTest extends ControllerTestSupport { - - @DisplayName("토큰으로 행사를 조회한다.") - @Test - void findEventTest() throws Exception { - String eventId = "망쵸토큰"; - EventDetailAppResponse eventDetailAppResponse = new EventDetailAppResponse("행동대장 회식", "토스뱅크", "1231245"); - given(eventService.findEvent(eventId)).willReturn(eventDetailAppResponse); - - mockMvc.perform(get("/api/events/{eventId}", eventId)) - .andDo(print()) - .andExpect(status().isOk()) - .andExpect(jsonPath("$.eventName").value("행동대장 회식")); - } - - @DisplayName("참여자별 정산 현황을 조회한다.") - @Test - void getMemberBillReports() throws Exception { - List memberBillReportAppResponses = List.of( - new MemberBillReportAppResponse(1L, "소하", false, 20_000L), - new MemberBillReportAppResponse(2L, "토다리", false, 200_000L) - ); - - given(eventService.getMemberBillReports(any())).willReturn(memberBillReportAppResponses); - - mockMvc.perform(get("/api/events/{eventId}/reports", "망쵸토큰") - .accept(MediaType.APPLICATION_JSON)) - .andDo(print()) - .andExpect(status().isOk()) - .andExpect(MockMvcResultMatchers.jsonPath("$.reports[0].memberId").value(equalTo(1))) - .andExpect(MockMvcResultMatchers.jsonPath("$.reports[0].memberName").value(equalTo("소하"))) - .andExpect(MockMvcResultMatchers.jsonPath("$.reports[0].isDeposited").value(equalTo(false))) - .andExpect(MockMvcResultMatchers.jsonPath("$.reports[0].price").value(equalTo(20_000))) - .andExpect(MockMvcResultMatchers.jsonPath("$.reports[1].memberId").value(equalTo(2))) - .andExpect(MockMvcResultMatchers.jsonPath("$.reports[1].memberName").value(equalTo("토다리"))) - .andExpect(MockMvcResultMatchers.jsonPath("$.reports[1].isDeposited").value(equalTo(false))) - .andExpect(MockMvcResultMatchers.jsonPath("$.reports[1].price").value(equalTo(200_000))); - } - - @DisplayName("이벤트를 생성한다.") - @Test - void saveEvent() throws Exception { - EventSaveRequest eventSaveRequest = new EventSaveRequest("토다리", "0987"); - String requestBody = objectMapper.writeValueAsString(eventSaveRequest); - String eventId = "망쵸토큰"; - EventAppResponse eventAppResponse = new EventAppResponse(eventId); - given(eventService.saveEvent(any(EventAppRequest.class))).willReturn(eventAppResponse); - given(authService.createToken(eventId)).willReturn("jwtToken"); - given(authService.getTokenName()).willReturn("eventToken"); - - mockMvc.perform(post("/api/events") - .contentType(MediaType.APPLICATION_JSON) - .content(requestBody)) - .andDo(print()) - .andExpect(status().isOk()) - .andExpect(cookie().value("eventToken", "jwtToken")) - .andExpect(jsonPath("$.eventId").value("망쵸토큰")); - } - - @DisplayName("행사 어드민이 로그인한다.") - @Test - void loginEvent() throws Exception { - String token = "TOKEN"; - EventLoginRequest eventLoginRequest = new EventLoginRequest("1234"); - String requestBody = objectMapper.writeValueAsString(eventLoginRequest); - given(authService.createToken(token)).willReturn("jwtToken"); - given(authService.getTokenName()).willReturn("eventToken"); - - mockMvc.perform(post("/api/events/{eventId}/login", token) - .contentType(MediaType.APPLICATION_JSON) - .content(requestBody)) - .andDo(print()) - .andExpect(cookie().value("eventToken", "jwtToken")) - .andExpect(status().isOk()); - } - - @DisplayName("행사 이미지를 조회한다.") - @Test - void findAllImages() throws Exception { - String token = "TOKEN"; - List imageNameAppResponses = List.of( - new EventImageAppResponse(1L, "https://host.com/image1.jpg"), - new EventImageAppResponse(2L, "https://host.com/image2.jpg"), - new EventImageAppResponse(3L, "https://host.com/zeze.jpg") - ); - given(eventService.findImages(token)).willReturn(imageNameAppResponses); - - mockMvc.perform(RestDocumentationRequestBuilders.get("/api/events/{eventId}/images", token)) - .andDo(print()) - .andExpect(status().isOk()); - } -} diff --git a/server/src/test/java/server/haengdong/presentation/MemberControllerTest.java b/server/src/test/java/server/haengdong/presentation/MemberControllerTest.java deleted file mode 100644 index ff824831b..000000000 --- a/server/src/test/java/server/haengdong/presentation/MemberControllerTest.java +++ /dev/null @@ -1,77 +0,0 @@ -package server.haengdong.presentation; - -import static org.mockito.ArgumentMatchers.any; -import static org.mockito.ArgumentMatchers.anyString; -import static org.mockito.BDDMockito.given; -import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; -import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; -import static server.haengdong.support.fixture.Fixture.MEMBER1; -import static server.haengdong.support.fixture.Fixture.MEMBER2; -import static server.haengdong.support.fixture.Fixture.MEMBER3; - -import java.util.List; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import org.springframework.http.MediaType; -import server.haengdong.application.response.MemberAppResponse; -import server.haengdong.application.response.MemberDepositAppResponse; -import server.haengdong.application.response.MembersDepositAppResponse; -import server.haengdong.domain.member.Member; - -class MemberControllerTest extends ControllerTestSupport { - - @DisplayName("행사에 참여한 전체 인원을 조회한다.") - @Test - void findAllMembersTest() throws Exception { - Member member1 = MEMBER1; - Member member2 = MEMBER2; - Member member3 = MEMBER3; - List members = List.of( - MemberDepositAppResponse.of(member1), - MemberDepositAppResponse.of(member2), - MemberDepositAppResponse.of(member3) - ); - - MembersDepositAppResponse memberAppResponse = new MembersDepositAppResponse(members); - given(memberService.findAllMembers(anyString())).willReturn(memberAppResponse); - - mockMvc.perform(get("/api/events/{eventId}/members", "TOKEN")) - .andDo(print()) - .andExpect(status().isOk()) - .andExpect(jsonPath("$.members").isArray()) - .andExpect(jsonPath("$.members[0].id").value(member1.getId())) - .andExpect(jsonPath("$.members[0].name").value(member1.getName())) - .andExpect(jsonPath("$.members[0].isDeposited").value(member1.isDeposited())) - .andExpect(jsonPath("$.members[1].id").value(member2.getId())) - .andExpect(jsonPath("$.members[1].name").value(member2.getName())) - .andExpect(jsonPath("$.members[1].isDeposited").value(member2.isDeposited())) - .andExpect(jsonPath("$.members[2].id").value(member3.getId())) - .andExpect(jsonPath("$.members[2].name").value(member3.getName())) - .andExpect(jsonPath("$.members[2].isDeposited").value(member3.isDeposited())); - } - - @DisplayName("현재 참여 인원을 조회합니다.") - @Test - void getCurrentMembers() throws Exception { - Member member1 = MEMBER1; - Member member2 = MEMBER2; - List members = List.of( - MemberAppResponse.of(member1), - MemberAppResponse.of(member2) - ); - - given(memberService.getCurrentMembers(any())).willReturn(members); - - mockMvc.perform(get("/api/events/{eventId}/members/current", "TOKEN") - .accept(MediaType.APPLICATION_JSON)) - .andDo(print()) - .andExpect(status().isOk()) - .andExpect(jsonPath("$.members").isArray()) - .andExpect(jsonPath("$.members[0].id").value(member1.getId())) - .andExpect(jsonPath("$.members[0].name").value(member1.getName())) - .andExpect(jsonPath("$.members[1].id").value(member2.getId())) - .andExpect(jsonPath("$.members[1].name").value(member2.getName())); - } -} diff --git a/server/src/test/java/server/haengdong/presentation/admin/AdminBillControllerTest.java b/server/src/test/java/server/haengdong/presentation/admin/AdminBillControllerTest.java deleted file mode 100644 index e3599a9ee..000000000 --- a/server/src/test/java/server/haengdong/presentation/admin/AdminBillControllerTest.java +++ /dev/null @@ -1,116 +0,0 @@ -package server.haengdong.presentation.admin; - - -import static org.mockito.ArgumentMatchers.any; -import static org.mockito.Mockito.doThrow; -import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.delete; -import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.put; -import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; -import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; -import static server.haengdong.support.fixture.Fixture.EVENT_COOKIE; - -import java.util.List; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import org.springframework.http.MediaType; -import server.haengdong.exception.HaengdongErrorCode; -import server.haengdong.exception.HaengdongException; -import server.haengdong.presentation.ControllerTestSupport; -import server.haengdong.presentation.request.BillDetailUpdateRequest; -import server.haengdong.presentation.request.BillDetailsUpdateRequest; -import server.haengdong.presentation.request.BillSaveRequest; -import server.haengdong.presentation.request.BillUpdateRequest; - -class AdminBillControllerTest extends ControllerTestSupport { - - @DisplayName("지출 내역을 생성한다.") - @Test - void saveAllBill() throws Exception { - List members = List.of(1L, 2L); - BillSaveRequest request = new BillSaveRequest("뽕족", 10_000L, members); - - String requestBody = objectMapper.writeValueAsString(request); - String eventId = "쿠키토큰"; - - mockMvc.perform(post("/api/admin/events/{eventId}/bills", eventId) - .contentType(MediaType.APPLICATION_JSON) - .content(requestBody) - .cookie(EVENT_COOKIE)) - .andDo(print()) - .andExpect(status().isOk()); - } - - @DisplayName("title이 비어 있는 경우 지출 내역을 생성할 수 없다.") - @Test - void saveAllBill1() throws Exception { - List members = List.of(1L, 2L); - BillSaveRequest request = new BillSaveRequest("", 10_000L, members); - - String requestBody = objectMapper.writeValueAsString(request); - String eventId = "소하토큰"; - - mockMvc.perform(post("/api/admin/events/{eventId}/bills", eventId) - .contentType(MediaType.APPLICATION_JSON) - .content(requestBody)) - .andDo(print()) - .andExpect(status().isBadRequest()); - } - - @DisplayName("지출 액션을 수정한다.") - @Test - void updateBill() throws Exception { - BillUpdateRequest request = new BillUpdateRequest("뽕족", 10_000L); - - String requestBody = objectMapper.writeValueAsString(request); - String eventId = "웨디토큰"; - - mockMvc.perform(put("/api/admin/events/{eventId}/bills/{billId}", eventId, 1L) - .contentType(MediaType.APPLICATION_JSON) - .content(requestBody) - .cookie(EVENT_COOKIE)) - .andDo(print()) - .andExpect(status().isOk()); - } - - @DisplayName("지출 내역을 삭제한다.") - @Test - void deleteBill() throws Exception { - String eventId = "토다리토큰"; - - mockMvc.perform(delete("/api/admin/events/{eventId}/bills/{billId}", eventId, 1)) - .andDo(print()) - .andExpect(status().isOk()); - } - - @DisplayName("존재하지 않는 행사에 대한 지출 내역을 삭제할 수 없다.") - @Test - void deleteBill1() throws Exception { - String eventId = "이상해토큰"; - doThrow(new HaengdongException(HaengdongErrorCode.EVENT_NOT_FOUND)) - .when(billService).deleteBill(any(String.class), any(Long.class)); - - mockMvc.perform(delete("/api/admin/events/{eventId}/bills/{billId}", eventId, 1)) - .andDo(print()) - .andExpect(status().isBadRequest()); - } - - @DisplayName("참여자별 지출 금액을 수정한다.") - @Test - void updateBillDetailsTest() throws Exception { - List billDetailUpdateRequests = List.of( - new BillDetailUpdateRequest(1L, 10000L, true), - new BillDetailUpdateRequest(2L, 20000L, true) - ); - BillDetailsUpdateRequest request = new BillDetailsUpdateRequest( - billDetailUpdateRequests); - - String json = objectMapper.writeValueAsString(request); - - mockMvc.perform(put("/api/admin/events/{eventId}/bills/{billId}/details", "TOKEN", 1L) - .contentType(MediaType.APPLICATION_JSON) - .content(json)) - .andDo(print()) - .andExpect(status().isOk()); - } -} diff --git a/server/src/test/java/server/haengdong/presentation/admin/AdminEventControllerTest.java b/server/src/test/java/server/haengdong/presentation/admin/AdminEventControllerTest.java deleted file mode 100644 index e071d70d3..000000000 --- a/server/src/test/java/server/haengdong/presentation/admin/AdminEventControllerTest.java +++ /dev/null @@ -1,49 +0,0 @@ -package server.haengdong.presentation.admin; - -import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.multipart; -import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.patch; -import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; -import static server.haengdong.support.fixture.Fixture.EVENT_COOKIE; - -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import org.springframework.http.MediaType; -import org.springframework.mock.web.MockMultipartFile; -import server.haengdong.presentation.ControllerTestSupport; -import server.haengdong.presentation.request.EventUpdateRequest; - - -class AdminEventControllerTest extends ControllerTestSupport { - - @DisplayName("행사 정보를 수정한다.") - @Test - void updateEventTest() throws Exception { - String token = "TOKEN"; - EventUpdateRequest eventUpdateRequest = new EventUpdateRequest("행동대장 비대위", "행대뱅크", "12345678"); - - String requestBody = objectMapper.writeValueAsString(eventUpdateRequest); - - mockMvc.perform(patch("/api/admin/events/{eventId}", token) - .contentType(MediaType.APPLICATION_JSON) - .content(requestBody)) - .andDo(print()) - .andExpect(status().isOk()); - } - - @DisplayName("행사에 이미지를 업로드한다.") - @Test - void uploadImages() throws Exception { - String token = "TOKEN"; - MockMultipartFile image1 = new MockMultipartFile("images", "image1.jpg", "image/jpeg", "이미지1".getBytes()); - MockMultipartFile image2 = new MockMultipartFile("images", "image2.jpg", "image/jpeg", "이미지2".getBytes()); - - mockMvc.perform(multipart("/api/admin/events/{eventId}/images", token) - .file(image1) - .file(image2) - .cookie(EVENT_COOKIE) - .contentType(MediaType.MULTIPART_FORM_DATA)) - .andDo(print()) - .andExpect(status().isOk()); - } -} diff --git a/server/src/test/java/server/haengdong/presentation/admin/AdminMemberControllerTest.java b/server/src/test/java/server/haengdong/presentation/admin/AdminMemberControllerTest.java deleted file mode 100644 index 6afb013f9..000000000 --- a/server/src/test/java/server/haengdong/presentation/admin/AdminMemberControllerTest.java +++ /dev/null @@ -1,90 +0,0 @@ -package server.haengdong.presentation.admin; - -import static org.hamcrest.Matchers.equalTo; -import static org.mockito.BDDMockito.given; -import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.delete; -import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; -import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.put; -import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; -import static server.haengdong.support.fixture.Fixture.EVENT_COOKIE; - -import java.util.List; -import org.junit.jupiter.api.DisplayName; -import org.junit.jupiter.api.Test; -import org.springframework.http.MediaType; -import org.springframework.test.web.servlet.result.MockMvcResultMatchers; -import server.haengdong.application.response.MemberSaveAppResponse; -import server.haengdong.application.response.MembersSaveAppResponse; -import server.haengdong.presentation.ControllerTestSupport; -import server.haengdong.presentation.request.MemberSaveRequest; -import server.haengdong.presentation.request.MemberUpdateRequest; -import server.haengdong.presentation.request.MembersSaveRequest; -import server.haengdong.presentation.request.MembersUpdateRequest; - -class AdminMemberControllerTest extends ControllerTestSupport { - - @DisplayName("행사 참여자를 추가한다.") - @Test - void saveMemberTest() throws Exception { - String eventToken = "망쵸토큰"; - MembersSaveRequest membersSaveRequest = new MembersSaveRequest( - List.of( - new MemberSaveRequest("웨디"), - new MemberSaveRequest("소하") - ) - ); - String requestBody = objectMapper.writeValueAsString(membersSaveRequest); - MembersSaveAppResponse appResponse = new MembersSaveAppResponse( - List.of( - new MemberSaveAppResponse(1L, "웨디"), - new MemberSaveAppResponse(2L, "소하") - ) - ); - given(memberService.saveMembers(eventToken, membersSaveRequest.toAppRequest())) - .willReturn(appResponse); - - mockMvc.perform(post("/api/admin/events/{eventId}/members", "망쵸토큰") - .contentType(MediaType.APPLICATION_JSON) - .content(requestBody) - .cookie(EVENT_COOKIE)) - .andDo(print()) - .andExpect(status().isOk()) - .andExpect(MockMvcResultMatchers.jsonPath("$.members[0].id").value(equalTo(1))) - .andExpect(MockMvcResultMatchers.jsonPath("$.members[0].name").value(equalTo("웨디"))) - .andExpect(MockMvcResultMatchers.jsonPath("$.members[1].id").value(equalTo(2))) - .andExpect(MockMvcResultMatchers.jsonPath("$.members[1].name").value(equalTo("소하"))); - } - - @DisplayName("행사 참여 인원을 삭제한다.") - @Test - void deleteMember() throws Exception { - String eventId = "망쵸토큰"; - Long memberId = 1L; - - mockMvc.perform(delete("/api/admin/events/{eventId}/members/{memberId}", eventId, memberId)) - .andDo(print()) - .andExpect(status().isOk()); - } - - @DisplayName("행사 참여 인원 정보를 수정한다.") - @Test - void updateMembers() throws Exception { - String eventId = "망쵸토큰"; - MembersUpdateRequest membersUpdateRequest = new MembersUpdateRequest( - List.of( - new MemberUpdateRequest(1L, "토다리", true), - new MemberUpdateRequest(2L, "쿠키", false) - ) - ); - String requestBody = objectMapper.writeValueAsString(membersUpdateRequest); - - mockMvc.perform(put("/api/admin/events/{eventId}/members", eventId) - .contentType(MediaType.APPLICATION_JSON) - .content(requestBody) - .cookie(EVENT_COOKIE) - ) - .andDo(print()) - .andExpect(status().isOk()); - } -} diff --git a/server/src/test/java/server/haengdong/support/extension/DatabaseCleaner.java b/server/src/test/java/server/haengdong/support/extension/DatabaseCleaner.java deleted file mode 100644 index 346e81d2d..000000000 --- a/server/src/test/java/server/haengdong/support/extension/DatabaseCleaner.java +++ /dev/null @@ -1,52 +0,0 @@ -package server.haengdong.support.extension; - -import jakarta.annotation.PostConstruct; -import jakarta.persistence.EntityManager; -import jakarta.persistence.PersistenceContext; -import java.util.List; -import org.springframework.stereotype.Component; -import org.springframework.transaction.annotation.Transactional; - -@Component -class DatabaseCleaner { - - private static final String REFERENTIAL_FORMAT = "set referential_integrity %b;"; - private static final String TRUNCATE_FORMAT = "truncate table %s restart identity;"; - - @PersistenceContext - private EntityManager em; - private String truncateTablesQuery; - - @PostConstruct - public void createTruncateQuery() { - List tableNames = getTableNames(); - StringBuilder stringBuilder = new StringBuilder(); - - for (String tableName : tableNames) { - String truncateQuery = String.format(TRUNCATE_FORMAT, tableName); - stringBuilder.append(truncateQuery); - } - truncateTablesQuery = stringBuilder.toString(); - } - - private List getTableNames() { - String sql = """ - select table_name - from information_schema.tables - where table_schema = 'PUBLIC' - """; - return em.createNativeQuery(sql).getResultList(); - } - - @Transactional - public void clear() { - em.clear(); - truncate(); - } - - private void truncate() { - em.createNativeQuery(String.format(REFERENTIAL_FORMAT, false)).executeUpdate(); - em.createNativeQuery(truncateTablesQuery).executeUpdate(); - em.createNativeQuery(String.format(REFERENTIAL_FORMAT, true)).executeUpdate(); - } -} diff --git a/server/src/test/java/server/haengdong/support/extension/DatabaseCleanerExtension.java b/server/src/test/java/server/haengdong/support/extension/DatabaseCleanerExtension.java deleted file mode 100644 index 653ecadb3..000000000 --- a/server/src/test/java/server/haengdong/support/extension/DatabaseCleanerExtension.java +++ /dev/null @@ -1,19 +0,0 @@ -package server.haengdong.support.extension; - -import org.junit.jupiter.api.extension.AfterEachCallback; -import org.junit.jupiter.api.extension.ExtensionContext; -import org.springframework.test.context.junit.jupiter.SpringExtension; - -public class DatabaseCleanerExtension implements AfterEachCallback { - - @Override - public void afterEach(ExtensionContext context) { - DatabaseCleaner databaseCleaner = getDataCleaner(context); - databaseCleaner.clear(); - } - - private DatabaseCleaner getDataCleaner(ExtensionContext extensionContext) { - return SpringExtension.getApplicationContext(extensionContext) - .getBean(DatabaseCleaner.class); - } -} diff --git a/server/src/test/java/server/haengdong/support/fixture/Fixture.java b/server/src/test/java/server/haengdong/support/fixture/Fixture.java deleted file mode 100644 index e05b43c23..000000000 --- a/server/src/test/java/server/haengdong/support/fixture/Fixture.java +++ /dev/null @@ -1,18 +0,0 @@ -package server.haengdong.support.fixture; - -import jakarta.servlet.http.Cookie; -import server.haengdong.domain.bill.Bill; -import server.haengdong.domain.member.Member; -import server.haengdong.domain.event.Event; - -public class Fixture { - - public static final Event EVENT1 = new Event("쿠키", "1234", "TOKEN1"); - public static final Event EVENT2 = new Event("웨디", "1234", "TOKEN2"); - public static final Cookie EVENT_COOKIE = new Cookie("eventToken", "토큰토큰"); - public static final Member MEMBER1 = new Member(EVENT1, "토다리"); - public static final Member MEMBER2 = new Member(EVENT1, "쿠키"); - public static final Member MEMBER3 = new Member(EVENT1, "소하"); - public static final Bill BILL1 = new Bill(EVENT1, "행동대장 회식", 10000L); - public static final Bill BILL2 = new Bill(EVENT2, "행동대장 회식2", 20000L); -}